From e75e5d17368221891fffef621bb2a56c74be34f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Quentin?= <jquentin@jquentin-laptop-kub2.(none)> Date: Thu, 12 Mar 2009 16:23:01 -0400 Subject: [PATCH] Functionnal main window without recording, history, voicemail, kio widgets. --- sflphone_kde/Account.h | 4 +- sflphone_kde/AccountList.h | 4 +- sflphone_kde/Automate.cpp | 149 ++ sflphone_kde/Automate.h | 97 ++ sflphone_kde/CMakeLists.txt | 40 +- sflphone_kde/Call.cpp | 38 + sflphone_kde/Call.h | 25 +- sflphone_kde/CallList.cpp | 39 + sflphone_kde/CallList.h | 12 +- sflphone_kde/ConfigDialog.ui | 22 +- sflphone_kde/Doxyfile | 2 +- sflphone_kde/SFLPhone.cpp | 229 ++- sflphone_kde/SFLPhone.h | 19 +- sflphone_kde/icons/accept.svg | 182 ++ sflphone_kde/icons/busy.svg | 781 +++++++++ sflphone_kde/icons/call.svg | 488 ++++++ sflphone_kde/icons/current.svg | 737 ++++++++ sflphone_kde/icons/dial.svg | 546 ++++++ sflphone_kde/icons/fail.svg | 111 ++ sflphone_kde/icons/hang_up.svg | 772 +++++++++ sflphone_kde/icons/history.svg | 117 ++ sflphone_kde/icons/history2.svg | 1699 +++++++++++++++++++ sflphone_kde/icons/hold.svg | 818 +++++++++ sflphone_kde/icons/icon_accept.svg | 412 +++++ sflphone_kde/icons/icon_call.svg | 446 +++++ sflphone_kde/icons/icon_dialpad.svg | 542 ++++++ sflphone_kde/icons/icon_dialpad_off.svg | 1178 +++++++++++++ sflphone_kde/icons/icon_hangup.svg | 496 ++++++ sflphone_kde/icons/icon_hold.svg | 414 +++++ sflphone_kde/icons/icon_rec.svg | 1677 ++++++++++++++++++ sflphone_kde/icons/icon_unhold.svg | 441 +++++ sflphone_kde/icons/icon_volume.svg | 1213 +++++++++++++ sflphone_kde/icons/icon_volume_off.svg | 450 +++++ sflphone_kde/icons/incoming.svg | 184 ++ sflphone_kde/icons/mailbox.svg | 1006 +++++++++++ sflphone_kde/icons/mic.svg | 406 +++++ sflphone_kde/icons/mic_25.svg | 378 +++++ sflphone_kde/icons/mic_50.svg | 383 +++++ sflphone_kde/icons/mic_75.svg | 388 +++++ sflphone_kde/icons/missed.svg | 862 ++++++++++ sflphone_kde/icons/outgoing.svg | 184 ++ sflphone_kde/icons/rec_call.svg | 1406 +++++++++++++++ sflphone_kde/icons/refuse.svg | 200 +++ sflphone_kde/icons/ring.svg | 999 +++++++++++ sflphone_kde/icons/sflphone.png | Bin 0 -> 1523 bytes sflphone_kde/icons/speaker.svg | 426 +++++ sflphone_kde/icons/speaker_25.svg | 398 +++++ sflphone_kde/icons/speaker_50.svg | 403 +++++ sflphone_kde/icons/speaker_75.svg | 408 +++++ sflphone_kde/icons/stock_person.svg | 312 ++++ sflphone_kde/icons/transfert.svg | 892 ++++++++++ sflphone_kde/icons/unhold.svg | 980 +++++++++++ sflphone_kde/sflphone-qt.ui | 86 +- sflphone_kde/sflphone_const.h | 18 + sflphone_kde/sflphone_kde.kdevelop | 4 +- sflphone_kde/sflphone_kde.kdevelop.filelist | 4 + sflphone_kde/sflphone_kde.kdevelop.pcs | Bin 213726 -> 165570 bytes sflphone_kde/sflphone_kde.kdevses | 84 +- 58 files changed, 24399 insertions(+), 212 deletions(-) create mode 100644 sflphone_kde/Automate.cpp create mode 100644 sflphone_kde/Automate.h create mode 100644 sflphone_kde/icons/accept.svg create mode 100644 sflphone_kde/icons/busy.svg create mode 100644 sflphone_kde/icons/call.svg create mode 100644 sflphone_kde/icons/current.svg create mode 100644 sflphone_kde/icons/dial.svg create mode 100644 sflphone_kde/icons/fail.svg create mode 100644 sflphone_kde/icons/hang_up.svg create mode 100644 sflphone_kde/icons/history.svg create mode 100644 sflphone_kde/icons/history2.svg create mode 100644 sflphone_kde/icons/hold.svg create mode 100644 sflphone_kde/icons/icon_accept.svg create mode 100644 sflphone_kde/icons/icon_call.svg create mode 100644 sflphone_kde/icons/icon_dialpad.svg create mode 100644 sflphone_kde/icons/icon_dialpad_off.svg create mode 100644 sflphone_kde/icons/icon_hangup.svg create mode 100644 sflphone_kde/icons/icon_hold.svg create mode 100644 sflphone_kde/icons/icon_rec.svg create mode 100644 sflphone_kde/icons/icon_unhold.svg create mode 100644 sflphone_kde/icons/icon_volume.svg create mode 100644 sflphone_kde/icons/icon_volume_off.svg create mode 100644 sflphone_kde/icons/incoming.svg create mode 100644 sflphone_kde/icons/mailbox.svg create mode 100644 sflphone_kde/icons/mic.svg create mode 100644 sflphone_kde/icons/mic_25.svg create mode 100644 sflphone_kde/icons/mic_50.svg create mode 100644 sflphone_kde/icons/mic_75.svg create mode 100644 sflphone_kde/icons/missed.svg create mode 100644 sflphone_kde/icons/outgoing.svg create mode 100644 sflphone_kde/icons/rec_call.svg create mode 100644 sflphone_kde/icons/refuse.svg create mode 100644 sflphone_kde/icons/ring.svg create mode 100644 sflphone_kde/icons/sflphone.png create mode 100644 sflphone_kde/icons/speaker.svg create mode 100644 sflphone_kde/icons/speaker_25.svg create mode 100644 sflphone_kde/icons/speaker_50.svg create mode 100644 sflphone_kde/icons/speaker_75.svg create mode 100644 sflphone_kde/icons/stock_person.svg create mode 100644 sflphone_kde/icons/transfert.svg create mode 100644 sflphone_kde/icons/unhold.svg diff --git a/sflphone_kde/Account.h b/sflphone_kde/Account.h index 133cff985a..103f0d552a 100644 --- a/sflphone_kde/Account.h +++ b/sflphone_kde/Account.h @@ -1,5 +1,5 @@ -#ifndef HEADER_ACCOUNT -#define HEADER_ACCOUNT +#ifndef ACCOUNT_H +#define ACCOUNT_H #include <QtGui> #include "metatypes.h" diff --git a/sflphone_kde/AccountList.h b/sflphone_kde/AccountList.h index 6420c73732..50bff69bba 100644 --- a/sflphone_kde/AccountList.h +++ b/sflphone_kde/AccountList.h @@ -1,5 +1,5 @@ -#ifndef HEADER_ACCOUNTLIST -#define HEADER_ACCOUNTLIST +#ifndef ACCOUNT_LIST_H +#define ACCOUNT_LIST_H #include <QtGui> #include "Account.h" diff --git a/sflphone_kde/Automate.cpp b/sflphone_kde/Automate.cpp new file mode 100644 index 0000000000..c80fea24f0 --- /dev/null +++ b/sflphone_kde/Automate.cpp @@ -0,0 +1,149 @@ + +#include "Automate.h" + +#include "callmanager_interface_p.h" +#include "callmanager_interface_singleton.h" +#include "SFLPhone.h" + + + +const call_state Automate::stateMap [11][5] = +{ +// ACCEPT REFUSE TRANSFER HOLD RECORD +/*INCOMING */ {CALL_STATE_CURRENT , CALL_STATE_OVER , CALL_STATE_OVER , CALL_STATE_HOLD , CALL_STATE_INCOMING }, +/*RINGING */ {CALL_STATE_ERROR , CALL_STATE_OVER , CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_RINGING }, +/*CURRENT */ {CALL_STATE_ERROR , CALL_STATE_OVER , CALL_STATE_TRANSFER , CALL_STATE_HOLD , CALL_STATE_CURRENT }, +/*DIALING */ {CALL_STATE_RINGING , CALL_STATE_OVER , CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_DIALING }, +/*HOLD */ {CALL_STATE_ERROR , CALL_STATE_OVER , CALL_STATE_TRANSFER_HOLD , CALL_STATE_CURRENT , CALL_STATE_HOLD }, +/*FAILURE */ {CALL_STATE_ERROR , CALL_STATE_OVER , CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_ERROR }, +/*BUSY */ {CALL_STATE_ERROR , CALL_STATE_OVER , CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_ERROR }, +/*TRANSFER */ {CALL_STATE_OVER , CALL_STATE_OVER , CALL_STATE_CURRENT , CALL_STATE_TRANSFER_HOLD , CALL_STATE_TRANSFER }, +/*TRANSFER_HOLD */ {CALL_STATE_OVER , CALL_STATE_OVER , CALL_STATE_HOLD , CALL_STATE_TRANSFER , CALL_STATE_TRANSFER_HOLD }, +/*OVER */ {CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_ERROR }, +/*ERROR */ {CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_ERROR , CALL_STATE_ERROR } +}; + +const function Automate::functionMap[11][5] = +{ +// ACCEPT REFUSE TRANSFER HOLD +/*INCOMING */ {&Automate::accept , &Automate::refuse , &Automate::acceptTransf , &Automate::acceptHold , &Automate::switchRecord }, +/*RINGING */ {&Automate::nothing , &Automate::hangUp , &Automate::nothing , &Automate::nothing , &Automate::switchRecord }, +/*CURRENT */ {&Automate::nothing , &Automate::hangUp , &Automate::nothing , &Automate::hold , &Automate::setRecord }, +/*DIALING */ {&Automate::call , &Automate::nothing , &Automate::nothing , &Automate::nothing , &Automate::switchRecord }, +/*HOLD */ {&Automate::nothing , &Automate::hangUp , &Automate::nothing , &Automate::unhold , &Automate::setRecord }, +/*FAILURE */ {&Automate::nothing , &Automate::hangUp , &Automate::nothing , &Automate::nothing , &Automate::nothing }, +/*BUSY */ {&Automate::nothing , &Automate::hangUp , &Automate::nothing , &Automate::nothing , &Automate::nothing }, +/*TRANSFERT */ {&Automate::transfer , &Automate::hangUp , &Automate::nothing , &Automate::hold , &Automate::setRecord }, +/*TRANSFERT_HOLD */ {&Automate::transfer , &Automate::hangUp , &Automate::nothing , &Automate::unhold , &Automate::setRecord }, +/*OVER */ {&Automate::nothing , &Automate::nothing , &Automate::nothing , &Automate::nothing , &Automate::nothing }, +/*ERROR */ {&Automate::nothing , &Automate::nothing , &Automate::nothing , &Automate::nothing , &Automate::nothing } +}; + +call_state Automate::action(call_action action, QString callId, QString number) +{ + call_state previousState = currentState; + //execute the action associated with this transition + (this->*(functionMap[currentState][action]))(callId, number); + //update the state + currentState = stateMap[currentState][action]; + qDebug() << "Calling action " << action << " on call with state " << previousState << ". Become " << currentState; + //return the new state + return currentState; +} + +Automate::Automate(call_state startState) +{ + //this->parent = parent; + recording = false; + currentState = startState; +} + +call_state Automate::getCurrentState() const +{ + return currentState; +} + +void Automate::nothing(QString callId, QString number) +{ +} + +void Automate::accept(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + qDebug() << "Accepting call. callId : " << callId; + callManager.accept(callId); +} + +void Automate::refuse(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + qDebug() << "Refusing call. callId : " << callId; + callManager.refuse(callId); +} + +void Automate::acceptTransf(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + qDebug() << "Accepting call and transfering it to number : " << number << ". callId : " << callId; + callManager.accept(callId); + callManager.transfert(callId, number); +} + +void Automate::acceptHold(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + qDebug() << "Accepting call and holding it. callId : " << callId; + callManager.accept(callId); + callManager.hold(callId); +} + +void Automate::hangUp(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + qDebug() << "Hanging up call. callId : " << callId; + callManager.hangUp(callId); +} + +void Automate::hold(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + qDebug() << "Holding call. callId : " << callId; + callManager.hold(callId); +} + +void Automate::call(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + QString account = SFLPhone::firstAccount(); + qDebug() << "Calling " << number << " with account " << account << ". callId : " << callId; + callManager.placeCall(account, callId, number); +} + +void Automate::transfer(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + QString account = SFLPhone::firstAccount(); + qDebug() << "Transfering call to number : " << number << ". callId : " << callId; + callManager.transfert(callId, number); +} + +void Automate::unhold(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + qDebug() << "Unholding call. callId : " << callId; + callManager.unhold(callId); +} + +void Automate::switchRecord(QString callId, QString number) +{ + qDebug() << "Switching record state for call automate. callId : " << callId; + recording = !recording; +} + +void Automate::setRecord(QString callId, QString number) +{ + CallManagerInterface & callManager = CallManagerInterfaceSingleton::getInstance(); + qDebug() << "Setting record for call. callId : " << callId; + callManager.unhold(callId); +} + diff --git a/sflphone_kde/Automate.h b/sflphone_kde/Automate.h new file mode 100644 index 0000000000..8199d92559 --- /dev/null +++ b/sflphone_kde/Automate.h @@ -0,0 +1,97 @@ +#ifndef AUTOMATE_H +#define AUTOMATE_H + +#include <QtGui> +//#include "Call.h" + +/** @enum call_state_t + * This enum have all the states a call can take. + */ +typedef enum +{ + /** Ringing incoming call */ + CALL_STATE_INCOMING, + /** Ringing outgoing call */ + CALL_STATE_RINGING, + /** Call to which the user can speak and hear */ + CALL_STATE_CURRENT, + /** Call which numbers are being added by the user */ + CALL_STATE_DIALING, + /** Call is on hold */ + CALL_STATE_HOLD, + /** Call has failed */ + CALL_STATE_FAILURE, + /** Call is busy */ + CALL_STATE_BUSY, + /** Call is being transfered. During this state, the user can enter the new number. */ + CALL_STATE_TRANSFER, + /** Call is on hold for transfer */ + CALL_STATE_TRANSFER_HOLD, + /** Call is over and should not be used */ + CALL_STATE_OVER, + /** This state should never be reached */ + CALL_STATE_ERROR +} call_state; + + +/** @enum call_action + * This enum have all the actions you can make on a call. + */ +typedef enum +{ + /** Green button, accept or new call or place call or place transfer */ + CALL_ACTION_ACCEPT, + /** Red button, refuse or hang up */ + CALL_ACTION_REFUSE, + /** Blue button, put into or out of transfer mode where you can type transfer number */ + CALL_ACTION_TRANSFER, + /** Blue-green button, hold or unhold the call */ + CALL_ACTION_HOLD, + /** Record button, enable or disable recording */ + CALL_ACTION_RECORD +} call_action; + + +class Automate; + +typedef void (Automate::*function)(QString callId, QString number); + +//class Call; + +class Automate +{ +private: + + static const call_state stateMap [11][5]; + + static const function functionMap[11][5]; + + //Call * parent; + call_state currentState; + bool recording; + +public: + + Automate(call_state startState); + call_state action(call_action action, QString callId, QString number = NULL); + call_state getCurrentState() const; + + void nothing(QString callId, QString number); + void accept(QString callId, QString number); + void refuse(QString callId, QString number); + void acceptTransf(QString callId, QString number); + void acceptHold(QString callId, QString number); + void hangUp(QString callId, QString number); + void hold(QString callId, QString number); + void call(QString callId, QString number); + void transfer(QString callId, QString number); + void unhold(QString callId, QString number); + void switchRecord(QString callId, QString number); + void setRecord(QString callId, QString number); + +}; + + + + +#endif \ No newline at end of file diff --git a/sflphone_kde/CMakeLists.txt b/sflphone_kde/CMakeLists.txt index b558c608ee..1b9cfbc2c5 100644 --- a/sflphone_kde/CMakeLists.txt +++ b/sflphone_kde/CMakeLists.txt @@ -2,19 +2,33 @@ project(sflphone_kde) find_package(KDE4 REQUIRED) include (KDE4Defaults) include_directories( ${KDE4_INCLUDES} ${QT_INCLUDES} ) +INCLUDE ( ${CMAKE_ROOT}/Modules/FindQt4.cmake ) +INCLUDE( ${QT_USE_FILE} ) -set(sflphone_kde_SRCS + +SET( + sflphone_kde_SRCS SFLPhone.cpp - ConfigDialog.cpp - main.cpp - sflphone_const.cpp - Account.cpp - AccountList.cpp - configurationmanager_interface.cpp - configurationmanager_interface_singleton.cpp - callmanager_interface.cpp - callmanager_interface_singleton.cpp - ) + ConfigDialog.cpp + main.cpp + sflphone_const.cpp + Account.cpp + AccountList.cpp + Automate.cpp + Call.cpp + CallList.cpp + configurationmanager_interface.cpp + configurationmanager_interface_singleton.cpp + callmanager_interface.cpp + callmanager_interface_singleton.cpp +) + +SET(QtApp_RCCS resources.qrc) + + +# generate rules for building source files from the resources +QT4_ADD_RESOURCES(QtApp_RCC_SRCS ${QtApp_RCCS}) + #kde4_automoc(${sflphone_kde_SRCS}) @@ -22,9 +36,9 @@ kde4_add_ui_files(sflphone_kde_SRCS sflphone-qt.ui ConfigDialog.ui) kde4_add_kcfg_files(sflphone_kde_SRCS settings.kcfgc ) -kde4_add_executable(sflphone_kde ${sflphone_kde_SRCS}) +kde4_add_executable(sflphone_kde ${sflphone_kde_SRCS} ${QtApp_RCC_SRCS}) -target_link_libraries(sflphone_kde ${KDE4_KDEUI_LIBS} ) +target_link_libraries(sflphone_kde ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS}) install(TARGETS sflphone_kde DESTINATION ${BIN_INSTALL_DIR} ) diff --git a/sflphone_kde/Call.cpp b/sflphone_kde/Call.cpp index c3f895393c..4f2ad96ab9 100644 --- a/sflphone_kde/Call.cpp +++ b/sflphone_kde/Call.cpp @@ -1,3 +1,41 @@ #include "Call.h" +Call::Call(call_state startState, QString callId) +{ + this->automate = new Automate(startState); + this->id = callId; + this->item = new QListWidgetItem(""); +} + +Call::~Call() +{ + delete item; + delete automate; +} + +Call * Call::buildDialingCall(QString callId) +{ + Call * call = new Call(CALL_STATE_DIALING, callId); + return call; +} + +QListWidgetItem * Call::getItem() +{ + return item; +} + +call_state Call::getState() const +{ + return automate->getCurrentState(); +} + +call_state Call::action(call_action action, QString number) +{ + return automate->action(action, id, number); +} + +QString Call::getCallId() +{ + return id; +} diff --git a/sflphone_kde/Call.h b/sflphone_kde/Call.h index f08b690a9f..cd03f6f6ea 100644 --- a/sflphone_kde/Call.h +++ b/sflphone_kde/Call.h @@ -1,33 +1,36 @@ #ifndef CALL_H #define CALL_H +#include "Automate.h" +//#include "Account.h" +//typedef call_state; + +//class Automate; class Call { private: - Account * account; + //Account * account; QString id; - CallStatus * status; QString from; QString to; - HistoryState * historyState; +// HistoryState * historyState; QTime start; QTime stop; QListWidgetItem * item; + Automate * automate; + Call(call_state startState, QString callId); public: ~Call(); - - - - - - - + static Call * buildDialingCall(QString calllId); + QListWidgetItem * getItem(); + call_state getState() const; + QString getCallId(); + call_state action(call_action action, QString number = NULL); }; - #endif \ No newline at end of file diff --git a/sflphone_kde/CallList.cpp b/sflphone_kde/CallList.cpp index e69de29bb2..7d39d88af3 100644 --- a/sflphone_kde/CallList.cpp +++ b/sflphone_kde/CallList.cpp @@ -0,0 +1,39 @@ +#include "CallList.h" + +CallList::CallList() +{ + callIdCpt = 0; + calls = new QVector<Call *>(); +} + + +Call * CallList::operator[](QListWidgetItem * item) +{ + for(int i = 0 ; i < size() ; i++) + { + if ((*calls)[i]->getItem() == item) + { + return (*calls)[i]; + } + } + return NULL; +} + +QString CallList::getAndIncCallId() +{ + QString res = QString::number(callIdCpt); + + return res; +} + +int CallList::size() +{ + return calls->size(); +} + +QListWidgetItem * CallList::addDialingCall() +{ + Call * call = Call::buildDialingCall(getAndIncCallId()); + calls->append(call); + return call->getItem(); +} \ No newline at end of file diff --git a/sflphone_kde/CallList.h b/sflphone_kde/CallList.h index 3122e23ce2..2817f5c74f 100644 --- a/sflphone_kde/CallList.h +++ b/sflphone_kde/CallList.h @@ -1,21 +1,25 @@ #ifndef CALL_LIST_H #define CALL_LIST_H +#include "Call.h" class CallList { private: - QVector<Call *> * calls + QVector<Call *> * calls; + int callIdCpt; public: - + + CallList(); ~CallList(); Call * operator[](QListWidgetItem * item); + QListWidgetItem * addDialingCall(); - - + QString getAndIncCallId(); + int size(); }; diff --git a/sflphone_kde/ConfigDialog.ui b/sflphone_kde/ConfigDialog.ui index da527cc528..1cb26c092d 100644 --- a/sflphone_kde/ConfigDialog.ui +++ b/sflphone_kde/ConfigDialog.ui @@ -168,7 +168,7 @@ <item> <widget class="QStackedWidget" name="stackedWidgetOptions" > <property name="currentIndex" > - <number>1</number> + <number>3</number> </property> <widget class="QWidget" name="page_General" > <layout class="QVBoxLayout" name="verticalLayout_18" > @@ -950,7 +950,7 @@ </sizepolicy> </property> <property name="currentIndex" > - <number>1</number> + <number>0</number> </property> <widget class="QWidget" name="page1_Alsa" > <layout class="QVBoxLayout" name="verticalLayout_20" > @@ -1052,9 +1052,6 @@ </property> </widget> </item> - <item row="1" column="0" > - <widget class="KButtonGroup" name="kbuttongroup" /> - </item> </layout> </widget> </item> @@ -1092,18 +1089,15 @@ </widget> </item> </layout> + <action name="actionAbout" > + <property name="text" > + <string>about</string> + </property> + </action> </widget> <layoutdefault spacing="4" margin="4" /> - <customwidgets> - <customwidget> - <class>KButtonGroup</class> - <extends>QGroupBox</extends> - <header>kbuttongroup.h</header> - <container>1</container> - </customwidget> - </customwidgets> <resources> - <include location="../../sflphone-qt/resources.qrc" /> + <include location="resources.qrc" /> </resources> <connections> <connection> diff --git a/sflphone_kde/Doxyfile b/sflphone_kde/Doxyfile index 63d681f6f7..acc49e116b 100644 --- a/sflphone_kde/Doxyfile +++ b/sflphone_kde/Doxyfile @@ -94,7 +94,7 @@ WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = /home/jquentin/sflphone_kde +INPUT = /home/jquentin/sflphone/sflphone_kde INPUT_ENCODING = UTF-8 FILE_PATTERNS = *.c \ *.cc \ diff --git a/sflphone_kde/SFLPhone.cpp b/sflphone_kde/SFLPhone.cpp index 9ada3a78cf..53b0b86b7c 100644 --- a/sflphone_kde/SFLPhone.cpp +++ b/sflphone_kde/SFLPhone.cpp @@ -4,14 +4,16 @@ #include "callmanager_interface_singleton.h" #include <stdlib.h> -SFLPhone::SFLPhone(QMainWindow *parent) : QMainWindow(parent),callIdCpt(0) +SFLPhone::SFLPhone(QMainWindow *parent) : QMainWindow(parent) { - setupUi(this); + setupUi(this); - configDialog = new ConfigurationDialog(this); - configDialog->setModal(true); + callList = new CallList(); - loadWindow(); + configDialog = new ConfigurationDialog(this); + configDialog->setModal(true); + + loadWindow(); } @@ -25,6 +27,7 @@ void SFLPhone::loadWindow() ConfigurationManagerInterface & daemon = ConfigurationManagerInterfaceSingleton::getInstance(); actionAfficher_les_barres_de_volume->setChecked(daemon.getVolumeControls()); actionAfficher_le_clavier->setChecked(daemon.getDialpad()); + updateWindowCallState(); } void SFLPhone::on_actionAfficher_les_barres_de_volume_toggled() @@ -39,36 +42,155 @@ void SFLPhone::on_actionAfficher_le_clavier_toggled() daemon.setDialpad(); } - -void SFLPhone::typeChar(QChar c) +void SFLPhone::updateWindowCallState() { QListWidgetItem * item = listWidget_callList->currentItem(); - if(!item) + + bool enabledActions[5]= {true,true,true,true,true}; + char * iconFile; + char * buttonIconFiles[3] = {ICON_CALL, ICON_HANGUP, ICON_HOLD}; + bool transfer = false; + + if (!item) { - listWidget_callList->addItem(QString(c)); - listWidget_callList->setCurrentRow(listWidget_callList->count() - 1); + qDebug() << "No item selected. Updating window."; + enabledActions[1] = false; + enabledActions[2] = false; + enabledActions[3] = false; + enabledActions[4] = false; } else { - listWidget_callList->currentItem()->setText(listWidget_callList->currentItem()->text() + c); + call_state state = (*callList)[item]->getState(); + switch (state) + { + case CALL_STATE_INCOMING: + qDebug() << "Reached CALL_STATE_INCOMING with call " << (*callList)[item]->getCallId() << ". Updating window."; + iconFile = ICON_INCOMING; + buttonIconFiles[0] = ICON_ACCEPT; + buttonIconFiles[1] = ICON_REFUSE; + break; + case CALL_STATE_RINGING: + qDebug() << "Reached CALL_STATE_RINGING with call " << (*callList)[item]->getCallId() << ". Updating window."; + enabledActions[2] = false; + enabledActions[3] = false; + iconFile = ICON_RINGING; + break; + case CALL_STATE_CURRENT: + qDebug() << "Reached CALL_STATE_CURRENT with call " << (*callList)[item]->getCallId() << ". Updating window."; + iconFile = ICON_CURRENT; + break; + case CALL_STATE_DIALING: + qDebug() << "Reached CALL_STATE_DIALING with call " << (*callList)[item]->getCallId() << ". Updating window."; + enabledActions[2] = false; + enabledActions[3] = false; + iconFile = ICON_DIALING; + buttonIconFiles[0] = ICON_ACCEPT; + break; + case CALL_STATE_HOLD: + qDebug() << "Reached CALL_STATE_HOLD with call " << (*callList)[item]->getCallId() << ". Updating window."; + iconFile = ICON_HOLD; + buttonIconFiles[2] = ICON_UNHOLD; + break; + case CALL_STATE_FAILURE: + qDebug() << "Reached CALL_STATE_FAILURE with call " << (*callList)[item]->getCallId() << ". Updating window."; + enabledActions[0] = false; + enabledActions[2] = false; + enabledActions[3] = false; + enabledActions[4] = false; + iconFile = ICON_FAILURE; + break; + case CALL_STATE_BUSY: + qDebug() << "Reached CALL_STATE_BUSY with call " << (*callList)[item]->getCallId() << ". Updating window."; + enabledActions[0] = false; + enabledActions[2] = false; + enabledActions[3] = false; + enabledActions[4] = false; + iconFile = ICON_BUSY; + break; + case CALL_STATE_TRANSFER: + qDebug() << "Reached CALL_STATE_TRANSFER with call " << (*callList)[item]->getCallId() << ". Updating window."; + iconFile = ICON_TRANSFER; + buttonIconFiles[0] = ICON_EXEC_TRANSF; + transfer = true; + break; + case CALL_STATE_TRANSFER_HOLD: + qDebug() << "Reached CALL_STATE_TRANSFER_HOLD with call " << (*callList)[item]->getCallId() << ". Updating window."; + iconFile = ICON_TRANSFER_HOLD; + buttonIconFiles[0] = ICON_EXEC_TRANSF; + buttonIconFiles[2] = ICON_UNHOLD; + transfer = true; + break; + case CALL_STATE_OVER: + qDebug() << "Reached CALL_STATE_OVER. Deleting call " << (*callList)[item]->getCallId(); + delete (*callList)[item]; + return; + break; + case CALL_STATE_ERROR: + qDebug() << "Reached CALL_STATE_ERROR with call " << (*callList)[item]->getCallId() << "!"; + break; + default: + qDebug() << "Reached unexisting state for call " << (*callList)[item]->getCallId() << "!"; + break; + } + } + qDebug() << "mi"; + if (item) + { + qDebug() << "rentre " << item; + QIcon icon = QIcon(iconFile); + item->setIcon(icon); } + actionDecrocher->setEnabled(enabledActions[0]); + actionRaccrocher->setEnabled(enabledActions[1]); + actionMettre_en_attente->setEnabled(enabledActions[2]); + actionTransferer->setEnabled(enabledActions[3]); + actionRecord->setEnabled(enabledActions[4]); + + actionDecrocher->setIcon(QIcon(buttonIconFiles[0])); + actionRaccrocher->setIcon(QIcon(buttonIconFiles[1])); + actionMettre_en_attente->setIcon(QIcon(buttonIconFiles[2])); + + //actionTransferer->setChecked(transfer); + //actionRecord->setChecked(record); } +void SFLPhone::typeChar(QChar c) +{ + QListWidgetItem * item = listWidget_callList->currentItem(); + if(!item) + { + qDebug() << "Typing when no item is selected. Opening an item."; + item = callList->addDialingCall(); + listWidget_callList->addItem(item); + listWidget_callList->setCurrentRow(listWidget_callList->count() - 1); + } + listWidget_callList->currentItem()->setText(listWidget_callList->currentItem()->text() + c); +} +void SFLPhone::action(QListWidgetItem * item, call_action action) +{ + (*callList)[item]->action(action, item->text()); + updateWindowCallState(); +} -void SFLPhone::on_pushButton_1_clicked(){ typeChar('1'); } -void SFLPhone::on_pushButton_2_clicked(){ typeChar('2'); } -void SFLPhone::on_pushButton_3_clicked(){ typeChar('3'); } -void SFLPhone::on_pushButton_4_clicked(){ typeChar('4'); } -void SFLPhone::on_pushButton_5_clicked(){ typeChar('5'); } -void SFLPhone::on_pushButton_6_clicked(){ typeChar('6'); } -void SFLPhone::on_pushButton_7_clicked(){ typeChar('7'); } -void SFLPhone::on_pushButton_8_clicked(){ typeChar('8'); } -void SFLPhone::on_pushButton_9_clicked(){ typeChar('9'); } -void SFLPhone::on_pushButton_0_clicked(){ typeChar('0'); } -void SFLPhone::on_pushButton_diese_clicked(){ typeChar('#'); } -void SFLPhone::on_pushButton_etoile_clicked(){ typeChar('*'); } +void SFLPhone::on_pushButton_1_clicked() { typeChar('1'); } +void SFLPhone::on_pushButton_2_clicked() { typeChar('2'); } +void SFLPhone::on_pushButton_3_clicked() { typeChar('3'); } +void SFLPhone::on_pushButton_4_clicked() { typeChar('4'); } +void SFLPhone::on_pushButton_5_clicked() { typeChar('5'); } +void SFLPhone::on_pushButton_6_clicked() { typeChar('6'); } +void SFLPhone::on_pushButton_7_clicked() { typeChar('7'); } +void SFLPhone::on_pushButton_8_clicked() { typeChar('8'); } +void SFLPhone::on_pushButton_9_clicked() { typeChar('9'); } +void SFLPhone::on_pushButton_0_clicked() { typeChar('0'); } +void SFLPhone::on_pushButton_diese_clicked() { typeChar('#'); } +void SFLPhone::on_pushButton_etoile_clicked() { typeChar('*'); } +void SFLPhone::on_listWidget_callList_currentItemChanged() +{ + updateWindowCallState(); +} void SFLPhone::on_actionConfigurer_les_comptes_triggered() { @@ -93,24 +215,22 @@ void SFLPhone::on_actionConfigurer_SFLPhone_triggered() void SFLPhone::on_actionDecrocher_triggered() { - CallManagerInterface & daemon = CallManagerInterfaceSingleton::getInstance(); QListWidgetItem * item = listWidget_callList->currentItem(); - if(!item) + if(!item || (*callList)[item]->getState() == CALL_STATE_RINGING || (*callList)[item]->getState() == CALL_STATE_CURRENT || (*callList)[item]->getState() == CALL_STATE_HOLD || (*callList)[item]->getState() == CALL_STATE_BUSY) { - qDebug() << "Calling when no item is selected. Opening an item."; - listWidget_callList->addItem(QString("")); + qDebug() << "Calling when no item is selected or item currently ringing, current, hold or busy. Opening an item."; + item = callList->addDialingCall(); + listWidget_callList->addItem(item); listWidget_callList->setCurrentRow(listWidget_callList->count() - 1); } else { - qDebug() << "Calling " << item->text() << " with account " << firstAccount() << ". callId : " << QString::number(callIdCpt); - daemon.placeCall(firstAccount(), getCallId(), item->text()); + action(item, CALL_ACTION_ACCEPT); } } void SFLPhone::on_actionRaccrocher_triggered() { - CallManagerInterface & daemon = CallManagerInterfaceSingleton::getInstance(); QListWidgetItem * item = listWidget_callList->currentItem(); if(!item) { @@ -118,29 +238,47 @@ void SFLPhone::on_actionRaccrocher_triggered() } else { - Call * call = callList[item]; - if(!call) return; - if(call->getState() == INCOMING) - { - qDebug() << "Refusing call from " << item->text() << " with account " << firstAccount() << ". callId : " << QString::number(callIdCpt); - daemon.refuse(getCallId()); - } - else - { - qDebug() << "Hanging up with " << item->text() << " with account " << firstAccount() << ". callId : " << QString::number(callIdCpt); - daemon.hangUp(getCallId()); - } + action(item, CALL_ACTION_REFUSE); } } void SFLPhone::on_actionMettre_en_attente_triggered() { - + QListWidgetItem * item = listWidget_callList->currentItem(); + if(!item) + { + qDebug() << "Holding when no item selected. Should not happen."; + } + else + { + action(item, CALL_ACTION_HOLD); + } } void SFLPhone::on_actionTransferer_triggered() { + QListWidgetItem * item = listWidget_callList->currentItem(); + if(!item) + { + qDebug() << "Transfering when no item selected. Should not happen."; + } + else + { + action(item, CALL_ACTION_TRANSFER); + } +} +void SFLPhone::on_actionRecord_triggered() +{ + QListWidgetItem * item = listWidget_callList->currentItem(); + if(!item) + { + qDebug() << "Recording when no item selected. Should not happen."; + } + else + { + action(item, CALL_ACTION_RECORD); + } } void SFLPhone::on_actionHistorique_triggered() @@ -173,7 +311,4 @@ QString SFLPhone::firstAccount() return ""; } -QString getCallId() -{ - return QString::number(callIdCpt++); -} + diff --git a/sflphone_kde/SFLPhone.h b/sflphone_kde/SFLPhone.h index a1a3796774..3ae81d393f 100644 --- a/sflphone_kde/SFLPhone.h +++ b/sflphone_kde/SFLPhone.h @@ -1,10 +1,10 @@ -#ifndef HEADER_SFLPHONE -#define HEADER_SFLPHONE +#ifndef SFLPHONE_H +#define SFLPHONE_H #include <QtGui> #include "ui_sflphone-qt.h" #include "ConfigDialog.h" - +#include "CallList.h" class ConfigurationDialog; @@ -15,19 +15,19 @@ Q_OBJECT private: ConfigurationDialog * configDialog; - int callIdCpt; - bool receivingCall; + CallList * callList; public: SFLPhone(QMainWindow *parent = 0); ~SFLPhone(); void loadWindow(); QAbstractButton * getDialpadButton(int ind); - QString firstAccount(); - + static QString firstAccount(); private slots: void typeChar(QChar c); + void action(QListWidgetItem * item, call_action action); + void updateWindowCallState(); void on_actionAfficher_les_barres_de_volume_toggled(); void on_actionAfficher_le_clavier_toggled(); @@ -38,11 +38,11 @@ private slots: void on_actionRaccrocher_triggered(); void on_actionMettre_en_attente_triggered(); void on_actionTransferer_triggered(); + void on_actionRecord_triggered(); void on_actionHistorique_triggered(); void on_actionBoite_vocale_triggered(); void on_actionAbout(); - void on_pushButton_1_clicked(); void on_pushButton_2_clicked(); void on_pushButton_3_clicked(); @@ -55,9 +55,10 @@ private slots: void on_pushButton_0_clicked(); void on_pushButton_diese_clicked(); void on_pushButton_etoile_clicked(); + + void on_listWidget_callList_currentItemChanged(); }; - #endif diff --git a/sflphone_kde/icons/accept.svg b/sflphone_kde/icons/accept.svg new file mode 100644 index 0000000000..8d84af6b01 --- /dev/null +++ b/sflphone_kde/icons/accept.svg @@ -0,0 +1,182 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="accept.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2433"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2435" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2437" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="24 : 12 : 1" + inkscape:persp3d-origin="12 : 8 : 1" + id="perspective32" /> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4275" + x1="15.630395" + y1="22.874208" + x2="15.630395" + y2="8.5305319" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient2439" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="18.87396" + inkscape:cy="2.756874" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1331" + inkscape:window-height="922" + inkscape:window-x="169" + inkscape:window-y="24" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:1;fill:url(#linearGradient4275);fill-opacity:1;stroke:none;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 7.3417195,21.902705 L 7.3417195,9.4553023 L 3.2972955,9.4553023 L 12.250001,0.03140142 L 21.202707,9.4553023 L 17.158282,9.4553023 L 17.158282,21.902705 L 7.3417195,21.902705 z " + id="rect4262" /> + <g + id="g2181" + transform="matrix(0.8753565,0,0,0.8754652,-11.955751,23.215691)" + style="fill:none;stroke:#000000;stroke-opacity:0.44968554"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968554" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z " + id="path2183" + sodipodi:nodetypes="csccczccsccccc" /> + </g> + <g + id="g4160" + transform="matrix(0.880119,0,0,0.880119,-2.1102174,12.142342)" + style="fill:url(#linearGradient2439);fill-opacity:1"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path3153" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z " + style="opacity:1;fill:url(#linearGradient2439);fill-opacity:1;stroke:#0f5600;stroke-width:0.62500000000000000;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path3161" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z " + style="opacity:1;fill:url(#linearGradient2439);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4140" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z " + style="opacity:1;fill:url(#linearGradient2439);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4246" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.8978659,7.4805434 C 9.1610575,8.1588394 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z " + style="opacity:1;fill:url(#linearGradient2439);fill-opacity:1;stroke:none;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4258" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z " + style="opacity:1;fill:url(#linearGradient2439);fill-opacity:1;stroke:none;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/busy.svg b/sflphone_kde/icons/busy.svg new file mode 100644 index 0000000000..3f9adf3e27 --- /dev/null +++ b/sflphone_kde/icons/busy.svg @@ -0,0 +1,781 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="current (copie).svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#ff9e54;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#903e00;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#903e00;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#ff750c;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4181" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4195" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4203" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4256" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2491" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="12.113755" + x2="7.293807" + y1="16.110582" + x1="11.408385" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2489" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2487" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.949513" + x2="2.7672646" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2485" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="3.0470817" + x2="23.496424" + y1="10.387442" + x1="1.267894" + gradientUnits="userSpaceOnUse" + id="linearGradient2483" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2416"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2418" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2420" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + id="stop2424" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2426" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2428"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2430" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2432" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2434" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.9220986,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2436" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.9107675,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2438" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2440" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.1362892,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2442" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2444" + x1="15.630395" + y1="22.874208" + x2="15.630395" + y2="8.5305319" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" /> + <radialGradient + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient2342" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2340" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2338" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2336" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2334" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2332" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2326"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2328" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2330" /> + </linearGradient> + <linearGradient + id="linearGradient2320"> + <stop + id="stop2322" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2324" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2314"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2316" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2318" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2312" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2310" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2308" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2306" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2304" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2302" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2296"> + <stop + id="stop2298" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2300" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2292" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2294" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + id="stop2286" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2288" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2278"> + <stop + id="stop2280" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop2282" + offset="1" + style="stop-color:#fefee7;stop-opacity:0.89308178" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="13.429637" + inkscape:cy="14.062082" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="5" + inkscape:window-y="425" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g2364" + inkscape:label="Calque 1" + transform="translate(12.25524,-3.4355522)"> + <g + transform="translate(7.9455775,4.2707653)" + inkscape:label="Calque 1" + id="g2446"> + <g + id="g2181" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + style="fill:none;stroke:#000000;stroke-opacity:0.44968555"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z " + id="path2183" + sodipodi:nodetypes="csccczccsccccc" /> + </g> + <g + id="g2451" + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path2453" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z " + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#903e00;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2455" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z " + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#903e00;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2457" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z " + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#903e00;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2459" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z " + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2461" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z " + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> + </g> + <g + id="g2266" + style="opacity:1;fill:#ff7105;fill-opacity:1;stroke:#903e00;stroke-opacity:1" + transform="matrix(1.2687892,0,0,1.2687892,-6.6211534,-0.9357295)"> + <g + id="g3252"> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2d2d2d;fill-opacity:0.52037615;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path3240" + sodipodi:cx="-19.445436" + sodipodi:cy="8.8477116" + sodipodi:rx="2.2728431" + sodipodi:ry="2.2728431" + d="M -17.172593 8.8477116 A 2.2728431 2.2728431 0 1 1 -21.71828,8.8477116 A 2.2728431 2.2728431 0 1 1 -17.172593 8.8477116 z" + transform="matrix(0.7168524,0,0,0.7168524,28.665086,-2.8957295)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#ff7105;fill-opacity:1;stroke:#903e00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path2260" + sodipodi:cx="-19.445436" + sodipodi:cy="8.8477116" + sodipodi:rx="2.2728431" + sodipodi:ry="2.2728431" + d="M -17.172593 8.8477116 A 2.2728431 2.2728431 0 1 1 -21.71828,8.8477116 A 2.2728431 2.2728431 0 1 1 -17.172593 8.8477116 z" + transform="matrix(0.4763157,0,0,0.4763157,23.987745,-0.7675302)" /> + </g> + <g + id="g3248" + transform="translate(-0.3694459,0)"> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2d2d2d;fill-opacity:0.52037617;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path3244" + sodipodi:cx="-19.445436" + sodipodi:cy="8.8477116" + sodipodi:rx="2.2728431" + sodipodi:ry="2.2728431" + d="M -17.172593 8.8477116 A 2.2728431 2.2728431 0 1 1 -21.71828,8.8477116 A 2.2728431 2.2728431 0 1 1 -17.172593 8.8477116 z" + transform="matrix(0.7168524,0,0,0.7168524,32.753628,-2.8464698)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#ff7105;fill-opacity:1;stroke:#903e00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path3246" + sodipodi:cx="-19.445436" + sodipodi:cy="8.8477116" + sodipodi:rx="2.2728431" + sodipodi:ry="2.2728431" + d="M -17.172593 8.8477116 A 2.2728431 2.2728431 0 1 1 -21.71828,8.8477116 A 2.2728431 2.2728431 0 1 1 -17.172593 8.8477116 z" + transform="matrix(0.4763157,0,0,0.4763157,28.076287,-0.7182706)" /> + </g> + <g + style="opacity:1;fill:#ff7105;fill-opacity:1;stroke:#903e00;stroke-opacity:1" + id="g3256" + transform="translate(7.438193,4.925971e-2)"> + <path + sodipodi:type="arc" + style="opacity:1;fill:#2d2d2d;fill-opacity:0.52037617;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path3258" + sodipodi:cx="-19.445436" + sodipodi:cy="8.8477116" + sodipodi:rx="2.2728431" + sodipodi:ry="2.2728431" + d="M -17.172593 8.8477116 A 2.2728431 2.2728431 0 1 1 -21.71828,8.8477116 A 2.2728431 2.2728431 0 1 1 -17.172593 8.8477116 z" + transform="matrix(0.7168524,0,0,0.7168524,28.665086,-2.8957295)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#ff7105;fill-opacity:1;stroke:#903e00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path3260" + sodipodi:cx="-19.445436" + sodipodi:cy="8.8477116" + sodipodi:rx="2.2728431" + sodipodi:ry="2.2728431" + d="M -17.172593 8.8477116 A 2.2728431 2.2728431 0 1 1 -21.71828,8.8477116 A 2.2728431 2.2728431 0 1 1 -17.172593 8.8477116 z" + transform="matrix(0.4763157,0,0,0.4763157,23.987745,-0.7675302)" /> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/call.svg b/sflphone_kde/icons/call.svg new file mode 100644 index 0000000000..9b46bcf1bf --- /dev/null +++ b/sflphone_kde/icons/call.svg @@ -0,0 +1,488 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="call.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fefee7;stop-opacity:0.89308178" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" /> + <linearGradient + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" + gradientUnits="userSpaceOnUse" + y2="8.5305319" + x2="15.630395" + y1="22.874208" + x1="15.630395" + id="linearGradient2444" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2442" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.1362892,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2440" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2438" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-1.9107675,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2436" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.9220986,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2434" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2428"> + <stop + id="stop2430" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2432" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2424" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2426" /> + </linearGradient> + <linearGradient + id="linearGradient2416"> + <stop + id="stop2418" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2420" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2483" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2485" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2487" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2489" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2491" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="22.991745" + inkscape:cy="-5.4508769" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="5" + inkscape:window-y="504"> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient4051);fill-opacity:1;stroke:none;stroke-width:5.69999981;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3162" + sodipodi:cx="19.285715" + sodipodi:cy="9.8571424" + sodipodi:rx="8.0357141" + sodipodi:ry="8.0357141" + d="M 27.321429 9.8571424 A 8.0357141 8.0357141 0 1 1 11.250001,9.8571424 A 8.0357141 8.0357141 0 1 1 27.321429 9.8571424 z" + transform="matrix(0.723409,0,0,0.723409,1.772732,0.64261)" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 15.724195,5.2432362 L 15.724195,1.880704" + id="path2257" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 17.657019,6.380202 L 20.569056,4.6989359" + id="path2259" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 17.657019,8.8683213 L 20.569056,10.549588" + id="path2261" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 15.724195,10.005288 L 15.724195,13.36782" + id="path2263" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 13.807083,8.868322 L 10.895045,10.549587" + id="path2265" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 13.807083,6.3802018 L 10.895046,4.698936" + id="path2267" + sodipodi:nodetypes="cc" /> + <g + id="g2446" + inkscape:label="Calque 1" + transform="translate(20.193677,1.1140386)"> + <g + style="fill:none;stroke:#000000;stroke-opacity:0.44968555" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z " + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451"> + <path + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#0f5600;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z " + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z " + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z " + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z " + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z " + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/current.svg b/sflphone_kde/icons/current.svg new file mode 100644 index 0000000000..5ca655c2e7 --- /dev/null +++ b/sflphone_kde/icons/current.svg @@ -0,0 +1,737 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="current.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="24 : 12 : 1" + inkscape:persp3d-origin="12 : 8 : 1" + id="perspective4757" /> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4181" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4195" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4203" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4256" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2491" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="12.113755" + x2="7.293807" + y1="16.110582" + x1="11.408385" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2489" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2487" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.949513" + x2="2.7672646" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2485" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2483" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2416"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2418" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2420" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + id="stop2424" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2426" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2428"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2430" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2432" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2434" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.9220986,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2436" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.9107675,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2438" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2440" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.1362892,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2442" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2444" + x1="15.630395" + y1="22.874208" + x2="15.630395" + y2="8.5305319" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" /> + <radialGradient + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient2342" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2340" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2338" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2336" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2334" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2332" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2326"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2328" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2330" /> + </linearGradient> + <linearGradient + id="linearGradient2320"> + <stop + id="stop2322" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2324" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2314"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2316" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2318" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2312" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2310" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2308" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2306" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2304" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2302" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2296"> + <stop + id="stop2298" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2300" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2292" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2294" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + id="stop2286" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2288" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2278"> + <stop + id="stop2280" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop2282" + offset="1" + style="stop-color:#fefee7;stop-opacity:0.89308178" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="7.919596" + inkscape:cx="15.568279" + inkscape:cy="13.617397" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1600" + inkscape:window-height="926" + inkscape:window-x="0" + inkscape:window-y="24" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="11.237947" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g2364" + inkscape:label="Calque 1" + transform="translate(14.730114,-3.4355522)"> + <g + transform="translate(7.9455775,4.2707653)" + inkscape:label="Calque 1" + id="g2446"> + <g + id="g2181" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + style="fill:none;stroke:#000000;stroke-opacity:0.44968555"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z " + id="path2183" + sodipodi:nodetypes="csccczccsccccc" /> + </g> + <g + id="g2451" + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path2453" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z " + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#0f5600;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2455" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z " + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2457" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z " + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2459" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z " + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2461" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z " + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> + </g> + <path + sodipodi:nodetypes="csc" + id="path3488" + d="M 18.019888,12.625004 C 18.48189,11.534667 18.765826,10.027007 18.765826,8.3750001 C 18.765826,6.7229936 18.48189,5.2153338 18.019888,4.1249963" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:0.50400000000000000;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;visibility:visible;display:inline;overflow:visible" /> + <path + sodipodi:nodetypes="csc" + id="path5545" + d="M 14.647708,13.095398 C 15.139397,12.256607 15.441578,11.096773 15.441578,9.8258928 C 15.441578,8.555013 15.139397,7.3951783 14.647708,6.5563874" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c8d54;stroke-width:0.45574296;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + sodipodi:nodetypes="csc" + id="path6056" + d="M 17.127031,13.875004 C 17.589033,12.784667 17.872969,11.277007 17.872969,9.6250001 C 17.872969,7.9729936 17.589033,6.4653338 17.127031,5.3749963" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c8d54;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + sodipodi:nodetypes="csc" + id="path6058" + d="M 19.694973,14.744562 C 20.280188,13.356696 20.639849,11.437627 20.639849,9.3348217 C 20.639849,7.2320171 20.280188,5.3129485 19.694973,3.9250808" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c8d54;stroke-width:0.63955802;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> +</svg> diff --git a/sflphone_kde/icons/dial.svg b/sflphone_kde/icons/dial.svg new file mode 100644 index 0000000000..f7e490dfb6 --- /dev/null +++ b/sflphone_kde/icons/dial.svg @@ -0,0 +1,546 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="dial.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:0.69469029;" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4181" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4195" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4203" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4256" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient3208" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3280" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-3.0304576)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3282" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(6.2851708,-3.030458)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3284" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(12.57034,-3.030458)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3292" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(5.8366603,5.1770313)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3294" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(12.121831,5.1770309)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3296" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(18.407,5.1770309)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3298" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-3.0304576)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3300" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(6.2851708,-3.030458)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3302" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(12.57034,-3.030458)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="7.919596" + inkscape:cx="33.634789" + inkscape:cy="18.879033" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="901" + inkscape:window-y="49" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g3259" + transform="matrix(0.9652036,0,0,0.9652036,-1.6371275,-0.5352586)"> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="3.661803" + height="3.914341" + width="3.914341" + id="rect2210" + style="opacity:1;fill:url(#linearGradient3298);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="9.9469738" + height="3.914341" + width="3.914341" + id="rect3191" + style="opacity:1;fill:url(#linearGradient3300);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="16.232143" + height="3.914341" + width="3.914341" + id="rect3195" + style="opacity:1;fill:url(#linearGradient3302);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="g3222" + transform="matrix(0.9652036,0,0,0.9652036,-7.2433958,-2.1004447)" + style="opacity:1"> + <rect + ry="0.73531199" + rx="0.73531199" + y="13.519668" + x="9.4984636" + height="3.914341" + width="3.914341" + id="rect3210" + style="opacity:1;fill:url(#linearGradient3292);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="13.519668" + x="15.783634" + height="3.914341" + width="3.914341" + id="rect3212" + style="opacity:1;fill:url(#linearGradient3294);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="13.519668" + x="22.068804" + height="3.914341" + width="3.914341" + id="rect3214" + style="opacity:1;fill:url(#linearGradient3296);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="g3264" + transform="matrix(0.9652036,0,0,0.9652036,-1.6234791,12.178165)" + style="opacity:1"> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="3.661803" + height="3.914341" + width="3.914341" + id="rect3266" + style="opacity:1;fill:url(#linearGradient3280);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="9.9469738" + height="3.914341" + width="3.914341" + id="rect3268" + style="opacity:1;fill:url(#linearGradient3282);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="16.232143" + height="3.914341" + width="3.914341" + id="rect3270" + style="opacity:1;fill:url(#linearGradient3284);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="g3199" + transform="translate(-0.3156731,-1.2626907)"> + <path + transform="matrix(0.723409,0,0,0.723409,4.2981133,0.64261)" + d="M 27.321429 9.8571424 A 8.0357141 8.0357141 0 1 1 11.250001,9.8571424 A 8.0357141 8.0357141 0 1 1 27.321429 9.8571424 z" + sodipodi:ry="8.0357141" + sodipodi:rx="8.0357141" + sodipodi:cy="9.8571424" + sodipodi:cx="19.285715" + id="path3162" + style="fill:url(#radialGradient3208);fill-opacity:1;stroke:none;stroke-width:5.69999981;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path2257" + d="M 18.249576,5.2432362 L 18.249576,1.880704" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2259" + d="M 20.1824,6.380202 L 23.094437,4.6989359" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2261" + d="M 20.1824,8.8683213 L 23.094437,10.549588" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2263" + d="M 18.249576,10.005288 L 18.249576,13.36782" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2265" + d="M 16.332464,8.868322 L 13.420426,10.549587" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2267" + d="M 16.332464,6.3802018 L 13.420427,4.698936" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/fail.svg b/sflphone_kde/icons/fail.svg new file mode 100644 index 0000000000..f3751ca765 --- /dev/null +++ b/sflphone_kde/icons/fail.svg @@ -0,0 +1,111 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="fail.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#b00014;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#70000c;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4167" + id="linearGradient4173" + x1="7.1249466" + y1="23.946518" + x2="20.06057" + y2="16.478132" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(6.313453e-2,-0.384275)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="13.59101" + inkscape:cy="12.669149" + inkscape:document-units="px" + inkscape:current-layer="g3157" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="5" + inkscape:window-y="49"> + <sodipodi:guide + orientation="horizontal" + position="8.0357143" + id="guide3144" /> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g3157" + transform="matrix(0.8678614,0.8678614,-0.8678614,0.8678614,11.185569,-9.9643113)"> + <path + style="opacity:1;fill:#7e001a;fill-opacity:1;stroke:#3b000b;stroke-width:1.22734141;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.60188085" + d="M 5.25 2.1875 C 4.8395257 2.1875 4.4395267 2.3417233 4.125 2.65625 L 2.59375 4.1875 C 1.9646967 4.8165533 1.9646968 5.8084466 2.59375 6.4375 L 8.3125 12.1875 L 2.59375 17.90625 C 1.9646967 18.535303 1.9646968 19.527197 2.59375 20.15625 L 4.125 21.6875 C 4.7540533 22.316553 5.7771965 22.316553 6.40625 21.6875 L 12.125 15.96875 L 17.84375 21.6875 C 18.472803 22.316553 19.495947 22.316553 20.125 21.6875 L 21.65625 20.15625 C 22.285303 19.527197 22.285303 18.535304 21.65625 17.90625 L 15.9375 12.1875 L 21.65625 6.4375 C 22.285303 5.8084467 22.285303 4.8165534 21.65625 4.1875 L 20.125 2.65625 C 19.495947 2.0271967 18.472803 2.0271966 17.84375 2.65625 L 12.125 8.375 L 6.40625 2.65625 C 6.0917233 2.3417233 5.6604743 2.1875 5.25 2.1875 z " + transform="matrix(0.5761289,-0.5761289,0.5761289,0.5761289,-0.7036018,12.185056)" + id="rect2182" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/hang_up.svg b/sflphone_kde/icons/hang_up.svg new file mode 100644 index 0000000000..8fa89cfe6e --- /dev/null +++ b/sflphone_kde/icons/hang_up.svg @@ -0,0 +1,772 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="hang_up.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2500"> + <stop + style="stop-color:#800000;stop-opacity:1;" + offset="0" + id="stop2502" /> + <stop + style="stop-color:#800000;stop-opacity:0;" + offset="1" + id="stop2504" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="24 : 12 : 1" + inkscape:persp3d-origin="12 : 8 : 1" + id="perspective127" /> + <linearGradient + id="linearGradient4357" + inkscape:collect="always"> + <stop + id="stop4359" + offset="0" + style="stop-color:#b00000;stop-opacity:1" /> + <stop + id="stop4361" + offset="1" + style="stop-color:#b02100;stop-opacity:0" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4269"> + <stop + style="stop-color:#b00014;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#b00014;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#70000c;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4167" + id="linearGradient4173" + x1="7.1249466" + y1="23.946518" + x2="20.06057" + y2="16.478132" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(6.313453e-2,-0.384275)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4357" + id="linearGradient4275" + x1="15.630395" + y1="22.874208" + x2="15.806232" + y2="6.6770978" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.158192,0,0,1.158192,-6.593576,-2.538854)" /> + <linearGradient + id="linearGradient2278"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop2280" /> + <stop + style="stop-color:#fefee7;stop-opacity:0.89308178" + offset="1" + id="stop2282" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2286" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop2288" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + id="stop2292" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2294" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2392"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2394" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2396" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2390" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2304" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2306" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2386" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2310" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2312" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2380"> + <stop + id="stop2316" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2318" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2376"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2322" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2324" /> + </linearGradient> + <linearGradient + id="linearGradient2326"> + <stop + id="stop2328" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2330" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2332" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2334" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2336" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2338" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2340" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient2342" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" /> + <linearGradient + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" + gradientUnits="userSpaceOnUse" + y2="8.5305319" + x2="15.630395" + y1="22.874208" + x1="15.630395" + id="linearGradient2444" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2442" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.1362892,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2440" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2438" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-1.9107675,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2436" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.9220986,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2434" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2428"> + <stop + id="stop2430" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2432" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2424" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2426" /> + </linearGradient> + <linearGradient + id="linearGradient2416"> + <stop + id="stop2418" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2420" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <radialGradient + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient4051" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1414" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient1412" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient1410" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient1408" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient1406" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1362"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1364" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop1366" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + id="stop1370" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1372" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient1374"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop1376" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop1378" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1380" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1382" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1384" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1386" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1388" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2325" + x1="15.630395" + y1="22.874208" + x2="15.806232" + y2="6.6770978" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2224" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2322" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + id="linearGradient2320" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2318" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + id="linearGradient2316" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + id="linearGradient2314" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2308"> + <stop + id="stop2310" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2312" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2302"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2304" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2306" /> + </linearGradient> + <linearGradient + id="linearGradient2296"> + <stop + id="stop2298" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2300" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + id="stop4047" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop4049" + offset="1" + style="stop-color:#fcfbcb;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient2506" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.4" + inkscape:cx="16.277456" + inkscape:cy="16.683708" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="5" + inkscape:window-y="49" + showgrid="false"> + <sodipodi:guide + orientation="horizontal" + position="8.0357143" + id="guide3144" /> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:1;fill:url(#linearGradient4275);fill-opacity:1;stroke:none;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 7.4133112,3.7940921 L 7.4133112,15.267435 L 3.6853797,15.267435 L 11.9375,23.953878 L 20.18962,15.267435 L 16.461688,15.267435 L 16.461688,3.7940921 L 7.4133112,3.7940921 z " + id="rect4262" /> + <g + id="g2407" + inkscape:label="Calque 1" + transform="matrix(-0.5,0.8660254,-0.8660254,-0.5,28.570435,0.9317453)" + style="fill:url(#linearGradient2506);fill-opacity:1"> + <g + transform="translate(14.730114,-3.4355522)" + inkscape:label="Calque 1" + id="g2364" + style="fill:url(#linearGradient2506);fill-opacity:1.0"> + <g + id="g2446" + inkscape:label="Calque 1" + transform="translate(7.9455775,4.2707653)" + style="fill:url(#linearGradient2506);fill-opacity:1.0"> + <g + style="fill:url(#linearGradient2506);stroke:#000000;stroke-opacity:0.44968554999999999;fill-opacity:1.0" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z " + style="opacity:1;fill:url(#linearGradient2506);fill-opacity:1.0;stroke:#000000;stroke-width:0.65573961000000003;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968554999999999" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451" + style="fill:url(#linearGradient2506);fill-opacity:1.0"> + <path + style="opacity:1;fill:url(#linearGradient2506);fill-opacity:1.0;stroke:#561500;stroke-width:0.62500000000000000;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z " + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2506);fill-opacity:1.0;stroke:#561500;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z " + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2506);fill-opacity:1.0;stroke:#561500;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z " + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2506);fill-opacity:1.0;stroke:none;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z " + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2506);fill-opacity:1.0;stroke:none;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z " + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/history.svg b/sflphone_kde/icons/history.svg new file mode 100644 index 0000000000..78b36d728e --- /dev/null +++ b/sflphone_kde/icons/history.svg @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docname="history.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="21.480197" + inkscape:cx="1.474761" + inkscape:cy="11.975709" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1600" + inkscape:window-height="926" + inkscape:window-x="0" + inkscape:window-y="24" /> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3527"> + <stop + style="stop-color:#150b0b;stop-opacity:1;" + offset="0" + id="stop3529" /> + <stop + style="stop-color:#150b0b;stop-opacity:0;" + offset="1" + id="stop3531" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective10" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3527" + id="radialGradient3535" + cx="11.964509" + cy="22.347315" + fx="11.964509" + fy="22.347315" + r="0.29855451" + gradientTransform="matrix(1,0,0,2.9491628,0,-43.558553)" + gradientUnits="userSpaceOnUse" /> + </defs> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="fill:#efebe7;fill-opacity:1;stroke:#000000;stroke-width:0.75590805999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;stroke-linejoin:miter;stroke-linecap:square" + id="path2383" + sodipodi:cx="13.384615" + sodipodi:cy="12.461538" + sodipodi:rx="9.7408905" + sodipodi:ry="8.963563" + d="M 23.125505,12.461538 A 9.7408905,8.963563 0 1 1 3.6437244,12.461538 A 9.7408905,8.963563 0 1 1 23.125505,12.461538 z" + transform="matrix(1.137179,0,0,1.2493462,-3.1235374,-3.5444849)" /> + <rect + style="fill:#090800;fill-opacity:0.94509803999999997;stroke:#00000c;stroke-width:0.70011531999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2395" + width="0.54875678" + height="10.837302" + x="11.783239" + y="1.8915578" + rx="0.46546814" + ry="0.23272024" /> + <rect + style="fill:#2f7600;fill-opacity:0.94509803999999997;stroke:#091e00;stroke-width:0.70353359000000004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2397" + width="0.69879586" + height="8.5937195" + x="17.122484" + y="-6.6727667" + rx="0.59273487" + ry="0.18454158" + transform="matrix(0.7666254,0.6420946,-0.6830233,0.7303966,0,0)" + inkscape:transform-center-x="0.34290126" + inkscape:transform-center-y="4.8387013" /> + </g> +</svg> diff --git a/sflphone_kde/icons/history2.svg b/sflphone_kde/icons/history2.svg new file mode 100644 index 0000000000..bbfdc89f91 --- /dev/null +++ b/sflphone_kde/icons/history2.svg @@ -0,0 +1,1699 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14948) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.0" + x="0px" + y="0px" + width="22" + height="22" + viewBox="0 0 128 128" + enable-background="new 0 0 128 128" + xml:space="preserve" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docname="history2.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata + id="metadata632"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><sodipodi:namedview + inkscape:window-height="722" + inkscape:window-width="642" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + guidetolerance="10.0" + gridtolerance="10.0" + objecttolerance="10.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + showgrid="false" + inkscape:zoom="3.859375" + inkscape:cx="64" + inkscape:cy="64" + inkscape:window-x="0" + inkscape:window-y="24" + inkscape:current-layer="svg2" /> +<defs + id="defs4"><inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 64 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="128 : 64 : 1" + inkscape:persp3d-origin="64 : 42.666667 : 1" + id="perspective634" /> +<filter + id="Gaussian_Blur"> +<feGaussianBlur + in="SourceGraphic" + stdDeviation="1" + id="feGaussianBlur7" /> +</filter> +</defs> +<g + id="Layer_14"> + <circle + cx="64.125" + cy="63.208" + r="61.625" + style="opacity:0.5;filter:url(#Gaussian_Blur)" + id="circle10" + sodipodi:cx="64.125" + sodipodi:cy="63.208" + sodipodi:rx="61.625" + sodipodi:ry="61.625" /> +</g> +<g + id="Layer_2"> + <circle + cx="62.125" + cy="61.875" + r="61.625" + id="circle13" + sodipodi:cx="62.125" + sodipodi:cy="61.875" + sodipodi:rx="61.625" + sodipodi:ry="61.625" + style="fill:#0d317d" /> +</g> +<g + id="Layer_3"> + <linearGradient + id="SVGID_1_" + gradientUnits="userSpaceOnUse" + x1="61.4995" + y1="3.25" + x2="61.4995" + y2="120.5"> + <stop + offset="0" + style="stop-color:#1C73D9" + id="stop17" /> + <stop + offset="1" + style="stop-color:#E5F8FF" + id="stop19" /> + </linearGradient> + <circle + cx="61.5" + cy="61.75" + r="59.25" + id="circle21" + sodipodi:cx="61.5" + sodipodi:cy="61.75" + sodipodi:rx="59.25" + sodipodi:ry="59.25" + style="fill:url(#SVGID_1_)" /> +</g> +<g + id="Layer_4"> + <linearGradient + id="SVGID_2_" + gradientUnits="userSpaceOnUse" + x1="59.310101" + y1="4.4668002" + x2="59.310101" + y2="116.5222"> + <stop + offset="0" + style="stop-color:#FFFFFF" + id="stop25" /> + <stop + offset="0.511" + style="stop-color:#1F7AD4" + id="stop27" /> + <stop + offset="0.5663" + style="stop-color:#257ED5" + id="stop29" /> + <stop + offset="0.6371" + style="stop-color:#3488D9" + id="stop31" /> + <stop + offset="0.7163" + style="stop-color:#4F98DE" + id="stop33" /> + <stop + offset="0.8017" + style="stop-color:#73B0E6" + id="stop35" /> + <stop + offset="0.8919" + style="stop-color:#A2CEF1" + id="stop37" /> + <stop + offset="0.9849" + style="stop-color:#DBF2FD" + id="stop39" /> + <stop + offset="1" + style="stop-color:#E5F8FF" + id="stop41" /> + </linearGradient> + <path + d="M 113.87,39.106 L 103,40 C 103,40 66.742,117 61.375,117 C 30.102,117 4.75,91.648 4.75,60.375 C 4.75,29.102 30.102,3.75 61.375,3.75 C 85.126,3.75 105.462,18.373 113.87,39.106 z" + id="path43" + style="fill:url(#SVGID_2_)" /> +</g> +<g + id="Layer_6"> + <g + id="g46"> + <radialGradient + id="SVGID_3_" + cx="61.833" + cy="62.1665" + r="53.000702" + gradientUnits="userSpaceOnUse"> + <stop + offset="0.9505" + style="stop-color:#6098E3" + id="stop49" /> + <stop + offset="1" + style="stop-color:#2450A1" + id="stop51" /> + </radialGradient> + <circle + cx="61.833" + cy="62.166" + r="53.000999" + id="circle53" + sodipodi:cx="61.833" + sodipodi:cy="62.166" + sodipodi:rx="53.000999" + sodipodi:ry="53.000999" + style="fill:url(#SVGID_3_)" /> + </g> +</g> +<g + id="Layer_5"> + <g + id="g56"> + <defs + id="defs58"> + <circle + id="SVGID_4_" + cx="61.625" + cy="61.875" + r="51.375" + sodipodi:cx="61.625" + sodipodi:cy="61.875" + sodipodi:rx="51.375" + sodipodi:ry="51.375" /> + </defs> + <use + xlink:href="#SVGID_4_" + overflow="visible" + id="use61" + style="fill:#a2d2ff;overflow:visible" + x="0" + y="0" + width="128" + height="128" /> + <clipPath + id="SVGID_5_"> + <use + xlink:href="#SVGID_4_" + overflow="visible" + id="use64" + style="overflow:visible" + x="0" + y="0" + width="128" + height="128" /> + </clipPath> + <linearGradient + id="SVGID_6_" + gradientUnits="userSpaceOnUse" + x1="61.6245" + y1="13.25" + x2="61.6245" + y2="114.25"> + <stop + offset="0" + style="stop-color:#FFFFFF" + id="stop67" /> + <stop + offset="0.1478" + style="stop-color:#E1F1FF" + id="stop69" /> + <stop + offset="0.2363" + style="stop-color:#D4EBFF" + id="stop71" /> + <stop + offset="0.3505" + style="stop-color:#E3F2FF" + id="stop73" /> + <stop + offset="0.5264" + style="stop-color:#F3F9FF" + id="stop75" /> + <stop + offset="0.7262" + style="stop-color:#FCFEFF" + id="stop77" /> + <stop + offset="1" + style="stop-color:#FFFFFF" + id="stop79" /> + </linearGradient> + <circle + clip-path="url(#SVGID_5_)" + cx="61.625" + cy="63.875" + r="51.375" + id="circle81" + sodipodi:cx="61.625" + sodipodi:cy="63.875" + sodipodi:rx="51.375" + sodipodi:ry="51.375" + style="fill:url(#SVGID_6_)" /> + <linearGradient + id="SVGID_7_" + gradientUnits="userSpaceOnUse" + x1="59.0415" + y1="13.25" + x2="59.0415" + y2="114.25"> + <stop + offset="0" + style="stop-color:#FFFFFF" + id="stop84" /> + <stop + offset="0.1435" + style="stop-color:#EDF7FF" + id="stop86" /> + <stop + offset="0.2802" + style="stop-color:#E0F2FF" + id="stop88" /> + <stop + offset="0.3063" + style="stop-color:#E3F3FF" + id="stop90" /> + <stop + offset="0.4942" + style="stop-color:#F3FAFF" + id="stop92" /> + <stop + offset="0.7076" + style="stop-color:#FCFEFF" + id="stop94" /> + <stop + offset="1" + style="stop-color:#FFFFFF" + id="stop96" /> + </linearGradient> + <path + clip-path="url(#SVGID_5_)" + d="M 107.833,41.917 L 63.5,62.5 L 61.625,115.25 C 33.252,115.25 10.25,92.249 10.25,63.875 C 10.25,35.501 33.252,12.5 61.625,12.5 C 82.552,12.5 99.823,23.965 107.833,41.917 z" + id="path98" + style="fill:url(#SVGID_7_)" /> + </g> +</g> +<g + id="Layer_8"> + <g + id="g101"> + <g + id="g103"> + <linearGradient + id="SVGID_8_" + gradientUnits="userSpaceOnUse" + x1="70.876999" + y1="17.393999" + x2="70.876999" + y2="93.755699"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop106" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop108" /> + </linearGradient> + <path + d="M 70.877,19.168 C 70.257,19.168 69.751,18.662 69.751,18.042 C 69.751,17.422 70.257,16.916 70.877,16.916 C 71.496,16.916 72.003,17.422 72.003,18.042 C 72.003,18.662 71.496,19.168 70.877,19.168 L 70.877,19.168 z" + id="path110" + style="fill:url(#SVGID_8_)" /> + </g> + <g + id="g112"> + <linearGradient + id="SVGID_9_" + gradientUnits="userSpaceOnUse" + x1="66.042999" + y1="17.2876" + x2="66.042999" + y2="93.5168"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop115" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop117" /> + </linearGradient> + <path + d="M 66.044,18.582 C 65.423,18.582 64.919,18.078 64.919,17.459 C 64.919,16.838 65.423,16.334 66.044,16.334 C 66.663,16.334 67.167,16.838 67.167,17.459 C 67.167,18.078 66.663,18.582 66.044,18.582 L 66.044,18.582 z" + id="path119" + style="fill:url(#SVGID_9_)" /> + </g> + <g + id="g121"> + <linearGradient + id="SVGID_10_" + gradientUnits="userSpaceOnUse" + x1="75.459" + y1="17.626499" + x2="75.459" + y2="94.021301"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop124" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop126" /> + </linearGradient> + <path + d="M 75.46,20.46 C 74.84,20.46 74.333,19.954 74.333,19.334 C 74.333,18.714 74.84,18.208 75.46,18.208 C 76.079,18.208 76.586,18.715 76.586,19.334 C 76.586,19.954 76.079,20.46 75.46,20.46 L 75.46,20.46 z" + id="path128" + style="fill:url(#SVGID_10_)" /> + </g> + <g + id="g130"> + <linearGradient + id="SVGID_11_" + gradientUnits="userSpaceOnUse" + x1="79.626999" + y1="17.9219" + x2="79.626999" + y2="94.2836"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop133" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop135" /> + </linearGradient> + <path + d="M 79.628,22.084 C 79.008,22.084 78.501,21.579 78.501,20.959 C 78.501,20.339 79.008,19.832 79.628,19.832 C 80.248,19.832 80.753,20.339 80.753,20.959 C 80.753,21.579 80.248,22.084 79.628,22.084 L 79.628,22.084 z" + id="path137" + style="fill:url(#SVGID_11_)" /> + </g> + <g + id="g139"> + <linearGradient + id="SVGID_12_" + gradientUnits="userSpaceOnUse" + x1="87.9189" + y1="18.758301" + x2="87.9189" + y2="95.053802"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop142" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop144" /> + </linearGradient> + <path + d="M 87.919,26.667 C 87.299,26.667 86.793,26.162 86.793,25.541 C 86.793,24.922 87.299,24.417 87.919,24.417 C 88.54,24.417 89.045,24.922 89.045,25.541 C 89.045,26.162 88.54,26.667 87.919,26.667 L 87.919,26.667 z" + id="path146" + style="fill:url(#SVGID_12_)" /> + </g> + <g + id="g148"> + <linearGradient + id="SVGID_13_" + gradientUnits="userSpaceOnUse" + x1="95.001999" + y1="19.9326" + x2="95.001999" + y2="96.228104"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop151" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop153" /> + </linearGradient> + <path + d="M 95.002,33.126 C 94.383,33.126 93.877,32.62 93.877,32.001 C 93.877,31.381 94.383,30.876 95.002,30.876 C 95.621,30.876 96.127,31.381 96.127,32.001 C 96.127,32.62 95.621,33.126 95.002,33.126 L 95.002,33.126 z" + id="path155" + style="fill:url(#SVGID_13_)" /> + </g> + <g + id="g157"> + <linearGradient + id="SVGID_14_" + gradientUnits="userSpaceOnUse" + x1="97.960899" + y1="20.595699" + x2="97.960899" + y2="96.9077"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop160" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop162" /> + </linearGradient> + <path + d="M 97.96,36.792 C 97.341,36.792 96.835,36.286 96.835,35.667 C 96.835,35.047 97.341,34.542 97.96,34.542 C 98.58,34.542 99.086,35.048 99.086,35.667 C 99.086,36.287 98.58,36.792 97.96,36.792 L 97.96,36.792 z" + id="path164" + style="fill:url(#SVGID_14_)" /> + </g> + <g + id="g166"> + <linearGradient + id="SVGID_15_" + gradientUnits="userSpaceOnUse" + x1="102.8369" + y1="22.121099" + x2="102.8369" + y2="98.416496"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop169" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop171" /> + </linearGradient> + <path + d="M 102.836,45.167 C 102.216,45.167 101.712,44.663 101.712,44.043 C 101.712,43.421 102.216,42.917 102.836,42.917 C 103.457,42.917 103.962,43.421 103.962,44.043 C 103.962,44.663 103.457,45.167 102.836,45.167 L 102.836,45.167 z" + id="path173" + style="fill:url(#SVGID_15_)" /> + </g> + <g + id="g175"> + <linearGradient + id="SVGID_16_" + gradientUnits="userSpaceOnUse" + x1="104.5439" + y1="22.910601" + x2="104.5439" + y2="99.156403"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop178" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop180" /> + </linearGradient> + <path + d="M 104.545,49.417 C 103.923,49.417 103.419,48.913 103.419,48.292 C 103.419,47.672 103.923,47.168 104.545,47.168 C 105.165,47.168 105.669,47.672 105.669,48.292 C 105.669,48.912 105.165,49.417 104.545,49.417 L 104.545,49.417 z" + id="path182" + style="fill:url(#SVGID_16_)" /> + </g> + <g + id="g184"> + <linearGradient + id="SVGID_17_" + gradientUnits="userSpaceOnUse" + x1="105.5439" + y1="23.6611" + x2="105.5439" + y2="99.9897"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop187" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop189" /> + </linearGradient> + <path + d="M 105.545,53.708 C 104.923,53.708 104.419,53.204 104.419,52.583 C 104.419,51.961 104.923,51.457 105.545,51.457 C 106.165,51.457 106.669,51.961 106.669,52.583 C 106.669,53.204 106.165,53.708 105.545,53.708 L 105.545,53.708 z" + id="path191" + style="fill:url(#SVGID_17_)" /> + </g> + <g + id="g193"> + <linearGradient + id="SVGID_18_" + gradientUnits="userSpaceOnUse" + x1="106.502" + y1="24.575199" + x2="106.502" + y2="100.8375"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop196" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop198" /> + </linearGradient> + <path + d="M 106.503,58.583 C 105.881,58.583 105.376,58.079 105.376,57.458 C 105.376,56.837 105.881,56.333 106.503,56.333 C 107.123,56.333 107.627,56.837 107.627,57.458 C 107.627,58.079 107.123,58.583 106.503,58.583 L 106.503,58.583 z" + id="path200" + style="fill:url(#SVGID_18_)" /> + </g> + <g + id="g202"> + <linearGradient + id="SVGID_19_" + gradientUnits="userSpaceOnUse" + x1="106.4199" + y1="26.3062" + x2="106.4199" + y2="102.5685"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop205" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop207" /> + </linearGradient> + <path + d="M 106.42,68.084 C 105.8,68.084 105.295,67.579 105.295,66.959 C 105.295,66.339 105.8,65.835 106.42,65.835 C 107.04,65.835 107.544,66.339 107.544,66.959 C 107.544,67.579 107.04,68.084 106.42,68.084 L 106.42,68.084 z" + id="path209" + style="fill:url(#SVGID_19_)" /> + </g> + <g + id="g211"> + <linearGradient + id="SVGID_20_" + gradientUnits="userSpaceOnUse" + x1="105.5859" + y1="27.110399" + x2="105.5859" + y2="103.4389"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop214" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop216" /> + </linearGradient> + <path + d="M 105.585,72.71 C 104.965,72.71 104.461,72.205 104.461,71.583 C 104.461,70.963 104.965,70.459 105.585,70.459 C 106.207,70.459 106.711,70.963 106.711,71.583 C 106.711,72.205 106.207,72.71 105.585,72.71 L 105.585,72.71 z" + id="path218" + style="fill:url(#SVGID_20_)" /> + </g> + <g + id="g220"> + <linearGradient + id="SVGID_21_" + gradientUnits="userSpaceOnUse" + x1="104.4199" + y1="27.9722" + x2="104.4199" + y2="104.3007"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop223" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop225" /> + </linearGradient> + <path + d="M 104.418,77.46 C 103.798,77.46 103.294,76.956 103.294,76.334 C 103.294,75.714 103.798,75.209 104.418,75.209 C 105.04,75.209 105.545,75.714 105.545,76.334 C 105.545,76.956 105.04,77.46 104.418,77.46 L 104.418,77.46 z" + id="path227" + style="fill:url(#SVGID_21_)" /> + </g> + <g + id="g229"> + <linearGradient + id="SVGID_22_" + gradientUnits="userSpaceOnUse" + x1="102.4199" + y1="28.7651" + x2="102.4199" + y2="105.0606"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop232" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop234" /> + </linearGradient> + <path + d="M 102.419,81.709 C 101.799,81.709 101.295,81.205 101.295,80.585 C 101.295,79.963 101.799,79.459 102.419,79.459 C 103.041,79.459 103.545,79.963 103.545,80.585 C 103.545,81.205 103.041,81.709 102.419,81.709 L 102.419,81.709 z" + id="path236" + style="fill:url(#SVGID_22_)" /> + </g> + <g + id="g238"> + <linearGradient + id="SVGID_23_" + gradientUnits="userSpaceOnUse" + x1="97.959" + y1="30.2544" + x2="97.959" + y2="106.583"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop241" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop243" /> + </linearGradient> + <path + d="M 97.959,90.042 C 97.34,90.042 96.834,89.536 96.834,88.917 C 96.834,88.298 97.34,87.791 97.959,87.791 C 98.579,87.791 99.085,88.298 99.085,88.917 C 99.085,89.536 98.579,90.042 97.959,90.042 L 97.959,90.042 z" + id="path245" + style="fill:url(#SVGID_23_)" /> + </g> + <g + id="g247"> + <linearGradient + id="SVGID_24_" + gradientUnits="userSpaceOnUse" + x1="94.9189" + y1="30.9468" + x2="94.9189" + y2="107.2422"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop250" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop252" /> + </linearGradient> + <path + d="M 94.919,93.708 C 94.3,93.708 93.794,93.202 93.794,92.583 C 93.794,91.963 94.3,91.458 94.919,91.458 C 95.538,91.458 96.044,91.963 96.044,92.583 C 96.044,93.202 95.538,93.708 94.919,93.708 L 94.919,93.708 z" + id="path254" + style="fill:url(#SVGID_24_)" /> + </g> + <g + id="g256"> + <linearGradient + id="SVGID_25_" + gradientUnits="userSpaceOnUse" + x1="91.628899" + y1="31.545401" + x2="91.628899" + y2="107.8409"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop259" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop261" /> + </linearGradient> + <path + d="M 91.629,97 C 91.009,97 90.503,96.494 90.503,95.875 C 90.503,95.256 91.009,94.75 91.629,94.75 C 92.248,94.75 92.754,95.256 92.754,95.875 C 92.754,96.494 92.248,97 91.629,97 L 91.629,97 z" + id="path263" + style="fill:url(#SVGID_25_)" /> + </g> + <g + id="g265"> + <linearGradient + id="SVGID_26_" + gradientUnits="userSpaceOnUse" + x1="88.003899" + y1="32.126999" + x2="88.003899" + y2="108.3893"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop268" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop270" /> + </linearGradient> + <path + d="M 88.002,100.04 C 87.383,100.04 86.879,99.536 86.879,98.917 C 86.879,98.297 87.383,97.791 88.002,97.791 C 88.622,97.791 89.128,98.297 89.128,98.917 C 89.128,99.536 88.622,100.04 88.002,100.04 L 88.002,100.04 z" + id="path272" + style="fill:url(#SVGID_26_)" /> + </g> + <g + id="g274"> + <linearGradient + id="SVGID_27_" + gradientUnits="userSpaceOnUse" + x1="79.542999" + y1="32.917" + x2="79.542999" + y2="109.2456"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop277" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop279" /> + </linearGradient> + <path + d="M 79.545,104.709 C 78.923,104.709 78.418,104.204 78.418,103.582 C 78.418,102.963 78.923,102.458 79.545,102.458 C 80.164,102.458 80.669,102.963 80.669,103.582 C 80.669,104.204 80.164,104.709 79.545,104.709 L 79.545,104.709 z" + id="path281" + style="fill:url(#SVGID_27_)" /> + </g> + <g + id="g283"> + <linearGradient + id="SVGID_28_" + gradientUnits="userSpaceOnUse" + x1="75.376999" + y1="33.256802" + x2="75.376999" + y2="109.5854"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop286" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop288" /> + </linearGradient> + <path + d="M 75.377,106.584 C 74.757,106.584 74.252,106.079 74.252,105.457 C 74.252,104.837 74.757,104.333 75.377,104.333 C 75.997,104.333 76.501,104.837 76.501,105.457 C 76.501,106.079 75.997,106.584 75.377,106.584 L 75.377,106.584 z" + id="path290" + style="fill:url(#SVGID_28_)" /> + </g> + <g + id="g292"> + <linearGradient + id="SVGID_29_" + gradientUnits="userSpaceOnUse" + x1="70.584999" + y1="33.5098" + x2="70.584999" + y2="109.7721"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop295" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop297" /> + </linearGradient> + <path + d="M 70.585,107.625 C 69.965,107.625 69.461,107.121 69.461,106.501 C 69.461,105.881 69.965,105.376 70.585,105.376 C 71.205,105.376 71.709,105.881 71.709,106.501 C 71.709,107.121 71.205,107.625 70.585,107.625 L 70.585,107.625 z" + id="path299" + style="fill:url(#SVGID_29_)" /> + </g> + <g + id="g301"> + <linearGradient + id="SVGID_30_" + gradientUnits="userSpaceOnUse" + x1="66.085899" + y1="33.6768" + x2="66.085899" + y2="109.9391"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop304" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop306" /> + </linearGradient> + <path + d="M 66.086,108.542 C 65.466,108.542 64.961,108.038 64.961,107.417 C 64.961,106.797 65.466,106.293 66.086,106.293 C 66.706,106.293 67.21,106.797 67.21,107.417 C 67.21,108.038 66.706,108.542 66.086,108.542 L 66.086,108.542 z" + id="path308" + style="fill:url(#SVGID_30_)" /> + </g> + <g + id="g310"> + <linearGradient + id="SVGID_31_" + gradientUnits="userSpaceOnUse" + x1="51.5425" + y1="17.3936" + x2="51.5425" + y2="93.705597"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop313" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop315" /> + </linearGradient> + <path + d="M 51.542,19.167 C 50.922,19.167 50.417,18.662 50.417,18.042 C 50.417,17.422 50.922,16.917 51.542,16.917 C 52.162,16.917 52.667,17.422 52.667,18.042 C 52.667,18.662 52.163,19.167 51.542,19.167 L 51.542,19.167 z" + id="path317" + style="fill:url(#SVGID_31_)" /> + </g> + <g + id="g319"> + <linearGradient + id="SVGID_32_" + gradientUnits="userSpaceOnUse" + x1="56.3755" + y1="17.2876" + x2="56.3755" + y2="93.5168"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop322" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop324" /> + </linearGradient> + <path + d="M 56.376,18.582 C 55.755,18.582 55.25,18.079 55.25,17.458 C 55.25,16.837 55.755,16.334 56.376,16.334 C 56.997,16.334 57.5,16.837 57.5,17.458 C 57.5,18.079 56.997,18.582 56.376,18.582 L 56.376,18.582 z" + id="path326" + style="fill:url(#SVGID_32_)" /> + </g> + <g + id="g328"> + <linearGradient + id="SVGID_33_" + gradientUnits="userSpaceOnUse" + x1="46.959499" + y1="17.6294" + x2="46.959499" + y2="93.891701"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop331" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop333" /> + </linearGradient> + <path + d="M 46.959,20.458 C 46.339,20.458 45.834,19.953 45.834,19.333 C 45.834,18.713 46.338,18.208 46.959,18.208 C 47.579,18.208 48.084,18.713 48.084,19.333 C 48.084,19.953 47.579,20.458 46.959,20.458 L 46.959,20.458 z" + id="path335" + style="fill:url(#SVGID_33_)" /> + </g> + <g + id="g337"> + <linearGradient + id="SVGID_34_" + gradientUnits="userSpaceOnUse" + x1="42.792999" + y1="17.924801" + x2="42.792999" + y2="94.220299"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop340" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop342" /> + </linearGradient> + <path + d="M 42.792,22.084 C 42.173,22.084 41.668,21.579 41.668,20.958 C 41.668,20.338 42.172,19.834 42.792,19.834 C 43.414,19.834 43.918,20.338 43.918,20.958 C 43.918,21.579 43.413,22.084 42.792,22.084 L 42.792,22.084 z" + id="path344" + style="fill:url(#SVGID_34_)" /> + </g> + <g + id="g346"> + <linearGradient + id="SVGID_35_" + gradientUnits="userSpaceOnUse" + x1="34.5" + y1="18.757299" + x2="34.5" + y2="95.052803"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop349" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop351" /> + </linearGradient> + <path + d="M 34.5,26.667 C 33.879,26.667 33.375,26.163 33.375,25.542 C 33.375,24.921 33.879,24.417 34.5,24.417 C 35.121,24.417 35.625,24.921 35.625,25.542 C 35.625,26.163 35.121,26.667 34.5,26.667 L 34.5,26.667 z" + id="path353" + style="fill:url(#SVGID_35_)" /> + </g> + <g + id="g355"> + <linearGradient + id="SVGID_36_" + gradientUnits="userSpaceOnUse" + x1="27.4165" + y1="19.924299" + x2="27.4165" + y2="96.269402"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop358" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop360" /> + </linearGradient> + <path + d="M 27.417,33.126 C 26.796,33.126 26.291,32.62 26.291,32 C 26.291,31.379 26.797,30.875 27.417,30.875 C 28.037,30.875 28.542,31.379 28.542,32 C 28.542,32.621 28.038,33.126 27.417,33.126 L 27.417,33.126 z" + id="path362" + style="fill:url(#SVGID_36_)" /> + </g> + <g + id="g364"> + <linearGradient + id="SVGID_37_" + gradientUnits="userSpaceOnUse" + x1="30.979" + y1="19.3032" + x2="30.979" + y2="95.631798"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop367" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop369" /> + </linearGradient> + <path + d="M 30.979,29.689 C 30.358,29.689 29.854,29.183 29.854,28.563 C 29.854,27.943 30.358,27.438 30.979,27.438 C 31.6,27.438 32.103,27.942 32.103,28.563 C 32.103,29.184 31.6,29.689 30.979,29.689 L 30.979,29.689 z" + id="path371" + style="fill:url(#SVGID_37_)" /> + </g> + <g + id="g373"> + <linearGradient + id="SVGID_38_" + gradientUnits="userSpaceOnUse" + x1="24.458" + y1="20.5952" + x2="24.458" + y2="96.907204"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop376" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop378" /> + </linearGradient> + <path + d="M 24.457,36.792 C 23.838,36.792 23.334,36.288 23.334,35.667 C 23.334,35.046 23.838,34.542 24.457,34.542 C 25.078,34.542 25.582,35.046 25.582,35.667 C 25.582,36.288 25.078,36.792 24.457,36.792 L 24.457,36.792 z" + id="path380" + style="fill:url(#SVGID_38_)" /> + </g> + <g + id="g382"> + <linearGradient + id="SVGID_39_" + gradientUnits="userSpaceOnUse" + x1="19.5835" + y1="22.116699" + x2="19.5835" + y2="98.428703"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop385" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop387" /> + </linearGradient> + <path + d="M 19.583,45.167 C 18.963,45.167 18.458,44.663 18.458,44.041 C 18.458,43.421 18.963,42.916 19.583,42.916 C 20.205,42.916 20.709,43.421 20.709,44.041 C 20.708,44.663 20.204,45.167 19.583,45.167 L 19.583,45.167 z" + id="path389" + style="fill:url(#SVGID_39_)" /> + </g> + <g + id="g391"> + <linearGradient + id="SVGID_40_" + gradientUnits="userSpaceOnUse" + x1="17.8745" + y1="22.8999" + x2="17.8745" + y2="99.178802"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop394" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop396" /> + </linearGradient> + <path + d="M 17.875,49.417 C 17.255,49.417 16.75,48.912 16.75,48.292 C 16.75,47.672 17.255,47.167 17.875,47.167 C 18.495,47.167 19,47.672 19,48.292 C 18.999,48.912 18.494,49.417 17.875,49.417 L 17.875,49.417 z" + id="path398" + style="fill:url(#SVGID_40_)" /> + </g> + <g + id="g400"> + <linearGradient + id="SVGID_41_" + gradientUnits="userSpaceOnUse" + x1="16.8745" + y1="23.693399" + x2="16.8745" + y2="99.939102"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop403" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop405" /> + </linearGradient> + <path + d="M 16.875,53.708 C 16.255,53.708 15.75,53.203 15.75,52.583 C 15.75,51.963 16.255,51.46 16.875,51.46 C 17.495,51.46 17.999,51.963 17.999,52.583 C 17.999,53.203 17.496,53.708 16.875,53.708 L 16.875,53.708 z" + id="path407" + style="fill:url(#SVGID_41_)" /> + </g> + <g + id="g409"> + <linearGradient + id="SVGID_42_" + gradientUnits="userSpaceOnUse" + x1="15.9165" + y1="24.561001" + x2="15.9165" + y2="100.8565"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop412" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop414" /> + </linearGradient> + <path + d="M 15.917,58.584 C 15.296,58.584 14.793,58.078 14.793,57.458 C 14.793,56.837 15.296,56.334 15.917,56.334 C 16.538,56.334 17.041,56.837 17.041,57.458 C 17.041,58.078 16.537,58.584 15.917,58.584 L 15.917,58.584 z" + id="path416" + style="fill:url(#SVGID_42_)" /> + </g> + <g + id="g418"> + <linearGradient + id="SVGID_43_" + gradientUnits="userSpaceOnUse" + x1="16.0005" + y1="26.305201" + x2="16.0005" + y2="102.5675"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop421" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop423" /> + </linearGradient> + <path + d="M 16,68.083 C 15.381,68.083 14.876,67.578 14.876,66.959 C 14.876,66.338 15.38,65.834 16,65.834 C 16.621,65.834 17.125,66.338 17.125,66.959 C 17.125,67.578 16.621,68.083 16,68.083 L 16,68.083 z" + id="path425" + style="fill:url(#SVGID_43_)" /> + </g> + <g + id="g427"> + <linearGradient + id="SVGID_44_" + gradientUnits="userSpaceOnUse" + x1="16.8335" + y1="27.091299" + x2="16.8335" + y2="103.453"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop430" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop432" /> + </linearGradient> + <path + d="M 16.833,72.711 C 16.213,72.711 15.707,72.204 15.707,71.585 C 15.707,70.965 16.213,70.459 16.833,70.459 C 17.453,70.459 17.959,70.965 17.959,71.585 C 17.959,72.204 17.453,72.711 16.833,72.711 L 16.833,72.711 z" + id="path434" + style="fill:url(#SVGID_44_)" /> + </g> + <g + id="g436"> + <linearGradient + id="SVGID_45_" + gradientUnits="userSpaceOnUse" + x1="17.9995" + y1="27.9722" + x2="17.9995" + y2="104.3007"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop439" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop441" /> + </linearGradient> + <path + d="M 18,77.46 C 17.38,77.46 16.873,76.953 16.873,76.333 C 16.873,75.714 17.38,75.209 18,75.209 C 18.62,75.209 19.126,75.714 19.126,76.333 C 19.126,76.953 18.62,77.46 18,77.46 L 18,77.46 z" + id="path443" + style="fill:url(#SVGID_45_)" /> + </g> + <g + id="g445"> + <linearGradient + id="SVGID_46_" + gradientUnits="userSpaceOnUse" + x1="20.0005" + y1="28.7651" + x2="20.0005" + y2="105.0606"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop448" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop450" /> + </linearGradient> + <path + d="M 19.999,81.709 C 19.379,81.709 18.874,81.205 18.874,80.584 C 18.874,79.964 19.379,79.459 19.999,79.459 C 20.62,79.459 21.126,79.964 21.126,80.584 C 21.126,81.205 20.62,81.709 19.999,81.709 L 19.999,81.709 z" + id="path452" + style="fill:url(#SVGID_46_)" /> + </g> + <g + id="g454"> + <linearGradient + id="SVGID_47_" + gradientUnits="userSpaceOnUse" + x1="24.459499" + y1="30.2295" + x2="24.459499" + y2="106.5912"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop457" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop459" /> + </linearGradient> + <path + d="M 24.458,90.043 C 23.839,90.043 23.334,89.538 23.334,88.917 C 23.334,88.296 23.839,87.791 24.458,87.791 C 25.079,87.791 25.584,88.296 25.584,88.917 C 25.584,89.538 25.079,90.043 24.458,90.043 L 24.458,90.043 z" + id="path461" + style="fill:url(#SVGID_47_)" /> + </g> + <g + id="g463"> + <linearGradient + id="SVGID_48_" + gradientUnits="userSpaceOnUse" + x1="27.4995" + y1="30.919901" + x2="27.4995" + y2="107.2485"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop466" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop468" /> + </linearGradient> + <path + d="M 27.5,93.708 C 26.881,93.708 26.375,93.202 26.375,92.583 C 26.375,91.962 26.881,91.457 27.5,91.457 C 28.119,91.457 28.625,91.962 28.625,92.583 C 28.625,93.202 28.119,93.708 27.5,93.708 L 27.5,93.708 z" + id="path470" + style="fill:url(#SVGID_48_)" /> + </g> + <g + id="g472"> + <linearGradient + id="SVGID_49_" + gradientUnits="userSpaceOnUse" + x1="30.790001" + y1="31.545401" + x2="30.790001" + y2="107.8409"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop475" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop477" /> + </linearGradient> + <path + d="M 30.79,97 C 30.171,97 29.665,96.494 29.665,95.875 C 29.665,95.256 30.171,94.75 30.79,94.75 C 31.41,94.75 31.915,95.256 31.915,95.875 C 31.915,96.494 31.41,97 30.79,97 L 30.79,97 z" + id="path479" + style="fill:url(#SVGID_49_)" /> + </g> + <g + id="g481"> + <linearGradient + id="SVGID_50_" + gradientUnits="userSpaceOnUse" + x1="34.416" + y1="32.126999" + x2="34.416" + y2="108.3893"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop484" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop486" /> + </linearGradient> + <path + d="M 34.417,100.04 C 33.797,100.04 33.292,99.536 33.292,98.917 C 33.292,98.297 33.798,97.791 34.417,97.791 C 35.036,97.791 35.541,98.297 35.541,98.917 C 35.541,99.536 35.037,100.04 34.417,100.04 L 34.417,100.04 z" + id="path488" + style="fill:url(#SVGID_50_)" /> + </g> + <g + id="g490"> + <linearGradient + id="SVGID_51_" + gradientUnits="userSpaceOnUse" + x1="42.875" + y1="32.917" + x2="42.875" + y2="109.2456"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop493" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop495" /> + </linearGradient> + <path + d="M 42.875,104.709 C 42.255,104.709 41.751,104.204 41.751,103.582 C 41.751,102.963 42.255,102.458 42.875,102.458 C 43.495,102.458 43.999,102.963 43.999,103.582 C 43.999,104.204 43.495,104.709 42.875,104.709 L 42.875,104.709 z" + id="path497" + style="fill:url(#SVGID_51_)" /> + </g> + <g + id="g499"> + <linearGradient + id="SVGID_52_" + gradientUnits="userSpaceOnUse" + x1="47.0415" + y1="33.256802" + x2="47.0415" + y2="109.5854"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop502" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop504" /> + </linearGradient> + <path + d="M 47.042,106.584 C 46.42,106.584 45.916,106.079 45.916,105.457 C 45.916,104.837 46.42,104.333 47.042,104.333 C 47.662,104.333 48.167,104.837 48.167,105.457 C 48.167,106.079 47.663,106.584 47.042,106.584 L 47.042,106.584 z" + id="path506" + style="fill:url(#SVGID_52_)" /> + </g> + <g + id="g508"> + <linearGradient + id="SVGID_53_" + gradientUnits="userSpaceOnUse" + x1="51.834499" + y1="33.5098" + x2="51.834499" + y2="109.7721"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop511" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop513" /> + </linearGradient> + <path + d="M 51.834,107.625 C 51.214,107.625 50.709,107.121 50.709,106.501 C 50.709,105.881 51.213,105.376 51.834,105.376 C 52.455,105.376 52.959,105.881 52.959,106.501 C 52.959,107.121 52.455,107.625 51.834,107.625 L 51.834,107.625 z" + id="path515" + style="fill:url(#SVGID_53_)" /> + </g> + <g + id="g517"> + <linearGradient + id="SVGID_54_" + gradientUnits="userSpaceOnUse" + x1="56.334" + y1="33.6768" + x2="56.334" + y2="109.9391"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop520" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop522" /> + </linearGradient> + <path + d="M 56.334,108.542 C 55.714,108.542 55.209,108.038 55.209,107.417 C 55.209,106.797 55.713,106.293 56.334,106.293 C 56.955,106.293 57.459,106.797 57.459,107.417 C 57.458,108.038 56.954,108.542 56.334,108.542 L 56.334,108.542 z" + id="path524" + style="fill:url(#SVGID_54_)" /> + </g> + </g> +</g> +<g + id="Layer_7"> + <linearGradient + id="SVGID_55_" + gradientUnits="userSpaceOnUse" + x1="61.8745" + y1="13.25" + x2="61.8745" + y2="110.25"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop528" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop530" /> + </linearGradient> + <polygon + points="60.874,111.25 60.874,102.624 62.875,102.624 62.875,111.25 60.874,111.25 " + id="polygon532" + style="fill:url(#SVGID_55_)" /> + <linearGradient + id="SVGID_56_" + gradientUnits="userSpaceOnUse" + x1="61.874001" + y1="12.8037" + x2="61.874001" + y2="113.5434"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop535" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop537" /> + </linearGradient> + <polygon + points="60.874,21.458 60.874,12.5 62.874,12.5 62.874,21.458 60.874,21.458 " + id="polygon539" + style="fill:url(#SVGID_56_)" /> + <linearGradient + id="SVGID_57_" + gradientUnits="userSpaceOnUse" + x1="106.707" + y1="13.25" + x2="106.707" + y2="110.25"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop542" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop544" /> + </linearGradient> + <polygon + points="102.395,63.104 102.395,61.103 111.021,61.103 111.021,63.104 102.395,63.104 " + id="polygon546" + style="fill:url(#SVGID_57_)" /> + <linearGradient + id="SVGID_58_" + gradientUnits="userSpaceOnUse" + x1="17.040501" + y1="13.25" + x2="17.040501" + y2="110.25"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop549" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop551" /> + </linearGradient> + <polygon + points="12.728,63.104 12.728,61.104 21.354,61.104 21.354,63.104 12.728,63.104 " + id="polygon553" + style="fill:url(#SVGID_58_)" /> +</g> +<g + id="Layer_9"> + <linearGradient + id="SVGID_59_" + gradientUnits="userSpaceOnUse" + x1="61.7896" + y1="12.5" + x2="61.789501" + y2="110.75"> + <stop + offset="0" + style="stop-color:#6098E3" + id="stop557" /> + <stop + offset="1" + style="stop-color:#B1CEF4" + id="stop559" /> + </linearGradient> + <path + d="M 26.359,42.393 L 27.226,40.874 L 19.472,36.439 L 18.604,37.956 L 18.93,38.144 L 26.359,42.393 z M 36.423,19.53 L 36.612,19.854 L 40.893,27.262 L 42.409,26.387 L 37.937,18.655 L 36.423,19.53 z M 36.423,104.372 L 36.747,104.558 L 37.941,105.241 L 42.375,97.484 L 40.856,96.616 L 36.423,104.372 z M 18.636,85.906 L 18.824,86.232 L 19.511,87.423 L 27.246,82.949 L 26.368,81.435 L 18.636,85.906 z M 97.217,42.392 L 104.975,37.958 L 104.104,36.439 L 96.35,40.875 L 96.536,41.2 L 97.217,42.392 z M 82.685,27.265 L 87.155,19.528 L 85.637,18.654 L 81.169,26.387 L 81.493,26.577 L 82.685,27.265 z M 81.202,97.485 L 81.389,97.811 L 85.634,105.24 L 87.155,104.372 L 82.72,96.615 L 81.202,97.485 z M 96.332,82.95 L 96.655,83.138 L 104.063,87.423 L 104.944,85.906 L 97.206,81.435 L 96.332,82.95 z" + id="path561" + style="fill:url(#SVGID_59_)" /> +</g> +<g + id="Layer_10"> + <path + d="M 62.93,54.622 C 63.423,55.61 63.022,56.811 62.034,57.305 L 59.946,58.347 C 58.958,58.84 57.757,58.439 57.263,57.451 L 51.904,46.714 C 51.411,45.726 51.812,44.525 52.8,44.031 L 54.888,42.989 C 55.876,42.496 57.077,42.897 57.571,43.885 L 62.93,54.622 z" + id="path564" + style="fill:#ff8065" /> + + <line + x1="60.375" + y1="56.396" + x2="84.25" + y2="104.75" + id="line566" + style="fill:none;stroke:#ff8065;stroke-width:2;stroke-linecap:round;stroke-linejoin:round" /> +</g> +<g + id="Layer_11"> + <g + id="g569"> + + <linearGradient + id="SVGID_60_" + gradientUnits="userSpaceOnUse" + x1="55.068802" + y1="62.811501" + x2="55.068802" + y2="65.330704" + gradientTransform="matrix(0.9796,-0.2008,0.2008,0.9796,-13.6779,11.4305)"> + <stop + offset="0" + style="stop-color:#524AC9" + id="stop572" /> + <stop + offset="0.0957" + style="stop-color:#5855BC" + id="stop574" /> + <stop + offset="0.2352" + style="stop-color:#5D60AF" + id="stop576" /> + <stop + offset="0.3681" + style="stop-color:#5F64AB" + id="stop578" /> + <stop + offset="0.7253" + style="stop-color:#190C7F" + id="stop580" /> + </linearGradient> + <path + d="M 69.033,59.994 C 69.213,60.873 68.646,61.731 67.767,61.912 L 39.208,67.792 C 38.329,67.972 37.47,67.405 37.29,66.526 L 37.29,66.526 C 37.11,65.646 37.676,64.787 38.555,64.607 L 67.115,58.728 C 67.994,58.548 68.854,59.114 69.033,59.994 L 69.033,59.994 z" + id="path582" + style="fill:url(#SVGID_60_)" /> + + <linearGradient + id="SVGID_61_" + gradientUnits="userSpaceOnUse" + x1="88.666" + y1="42.330601" + x2="88.666" + y2="45.5467" + gradientTransform="matrix(0.6552,-0.7555,0.7555,0.6552,-15.6218,84.8513)"> + <stop + offset="0" + style="stop-color:#524AC9" + id="stop585" /> + <stop + offset="0.0957" + style="stop-color:#5855BC" + id="stop587" /> + <stop + offset="0.2352" + style="stop-color:#5D60AF" + id="stop589" /> + <stop + offset="0.3681" + style="stop-color:#5F64AB" + id="stop591" /> + <stop + offset="0.7253" + style="stop-color:#190C7F" + id="stop593" /> + </linearGradient> + <path + d="M 93.373,26.619 C 93.79,26.981 93.836,27.612 93.474,28.029 L 60.017,67.152 C 59.655,67.57 59.023,67.615 58.606,67.254 L 57.851,66.598 C 57.434,66.236 57.388,65.605 57.75,65.188 L 91.208,26.064 C 91.569,25.646 92.201,25.602 92.617,25.963 L 93.373,26.619 z" + id="path595" + style="fill:url(#SVGID_61_)" /> + </g> +</g> +<g + id="Layer_12"> + <g + id="g598"> + <linearGradient + id="SVGID_62_" + gradientUnits="userSpaceOnUse" + x1="62.4058" + y1="57" + x2="62.4058" + y2="65.1875"> + <stop + offset="0" + style="stop-color:#8BA4D6" + id="stop601" /> + <stop + offset="1" + style="stop-color:#1B3EA6" + id="stop603" /> + </linearGradient> + <circle + cx="62.405998" + cy="61.280998" + r="4.4689999" + id="circle605" + sodipodi:cx="62.405998" + sodipodi:cy="61.280998" + sodipodi:rx="4.4689999" + sodipodi:ry="4.4689999" + style="fill:url(#SVGID_62_)" /> + </g> +</g> +<g + id="Layer_13"> + <g + id="g608"> + <radialGradient + id="SVGID_63_" + cx="61.3652" + cy="57.292" + r="7.5655999" + gradientUnits="userSpaceOnUse"> + <stop + offset="0" + style="stop-color:#FFFFFF" + id="stop611" /> + <stop + offset="0.0515" + style="stop-color:#F6FAFF" + id="stop613" /> + <stop + offset="0.1361" + style="stop-color:#DDEEFF" + id="stop615" /> + <stop + offset="0.2432" + style="stop-color:#B5D9FF" + id="stop617" /> + <stop + offset="0.3688" + style="stop-color:#7DBDFF" + id="stop619" /> + <stop + offset="0.5081" + style="stop-color:#3699FF" + id="stop621" /> + <stop + offset="0.5714" + style="stop-color:#1487FF" + id="stop623" /> + <stop + offset="0.8132" + style="stop-color:#0F85FF" + id="stop625" /> + <stop + offset="0.967" + style="stop-color:#3397FF" + id="stop627" /> + </radialGradient> + <circle + cx="62.365002" + cy="61.292" + r="3.75" + id="circle629" + sodipodi:cx="62.365002" + sodipodi:cy="61.292" + sodipodi:rx="3.75" + sodipodi:ry="3.75" + style="fill:url(#SVGID_63_)" /> + </g> +</g> +</svg> \ No newline at end of file diff --git a/sflphone_kde/icons/hold.svg b/sflphone_kde/icons/hold.svg new file mode 100644 index 0000000000..d074c3356c --- /dev/null +++ b/sflphone_kde/icons/hold.svg @@ -0,0 +1,818 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="hold.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#00a6b0;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#00a6b0;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#00a5b0;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#00595f;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4181" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4195" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4203" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4256" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,-1.726592e-17,-1.726592e-17,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.632388,0,0,0.632388,3.258093,0.894991)" /> + <linearGradient + id="linearGradient2278"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop2280" /> + <stop + style="stop-color:#fefee7;stop-opacity:0.89308178" + offset="1" + id="stop2282" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2286" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop2288" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + id="stop2292" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2395" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2296"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2298" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2391" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2302" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2306" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2308" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2376"> + <stop + id="stop2316" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2318" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2372"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2322" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2324" /> + </linearGradient> + <linearGradient + id="linearGradient2326"> + <stop + id="stop2328" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2330" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2332" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2334" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2336" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2338" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2340" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient2342" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" /> + <linearGradient + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" + gradientUnits="userSpaceOnUse" + y2="8.5305319" + x2="15.630395" + y1="22.874208" + x1="15.630395" + id="linearGradient2444" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2442" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.1362892,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2440" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2438" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-1.9107675,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2436" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.9220986,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2434" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2428"> + <stop + id="stop2430" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2432" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2424" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2426" /> + </linearGradient> + <linearGradient + id="linearGradient2416"> + <stop + id="stop2418" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2420" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2483" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2485" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="2.7672646" + y2="12.949513" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2487" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2489" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="11.408385" + y1="16.110582" + x2="7.293807" + y2="12.113755" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2491" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient4051" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1414" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient1412" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient1410" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient1408" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient1406" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1362"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1364" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop1366" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + id="stop1370" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1372" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient1374"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop1376" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop1378" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1380" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1382" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1384" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1386" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1388" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4275" + x1="15.630395" + y1="22.874208" + x2="15.806232" + y2="6.6770978" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2320" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2318" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + id="linearGradient2316" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2314" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + id="linearGradient2312" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + id="linearGradient2310" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2304"> + <stop + id="stop2306" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2308" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2298"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2300" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2302" /> + </linearGradient> + <linearGradient + id="linearGradient2292"> + <stop + id="stop2294" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2296" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + id="stop4047" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop4049" + offset="1" + style="stop-color:#fcfbcb;stop-opacity:1" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.8284271" + inkscape:cx="-65.93937" + inkscape:cy="-1.0287473" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="5" + inkscape:window-y="49"> + <sodipodi:guide + orientation="horizontal" + position="8.0357143" + id="guide3144" /> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:0.63862927;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.45169228;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 21.038321,3.4034084 L 15.10969,4.9843766 L 15.10969,11.031579 C 14.669707,10.938077 14.114787,11.043637 13.588009,11.347773 C 12.710044,11.854667 12.265301,12.744435 12.599904,13.323983 C 12.934506,13.903532 13.915531,13.949451 14.793496,13.442556 C 15.520561,13.022784 15.945002,12.351704 15.880412,11.802301 L 15.900174,11.802301 L 15.900174,6.0120062 L 20.228074,4.8460419 L 20.228074,9.5494222 C 19.790115,9.4608922 19.227685,9.5646472 18.706392,9.8656162 C 17.828428,10.372509 17.383684,11.262277 17.718288,11.841826 C 18.05289,12.421374 19.033915,12.467291 19.911881,11.960398 C 20.638946,11.540626 21.083149,10.869547 21.018559,10.320144 L 21.038321,10.320144 L 21.038321,4.6286588 L 21.038321,3.4034084 z " + id="path3384" /> + <path + style="fill:url(#linearGradient2224);fill-opacity:1;stroke:#1d6a6f;stroke-width:0.45169228;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 20.490646,2.9897742 L 14.562015,4.5707424 L 14.562015,10.617945 C 14.122032,10.524443 13.567112,10.630003 13.040334,10.934139 C 12.162369,11.441033 11.717626,12.330801 12.052229,12.910349 C 12.386831,13.489898 13.367856,13.535817 14.245821,13.028922 C 14.972886,12.60915 15.397327,11.93807 15.332737,11.388667 L 15.352499,11.388667 L 15.352499,5.5983718 L 19.680399,4.4324077 L 19.680399,9.1357875 C 19.24244,9.047258 18.68001,9.1510128 18.158717,9.4519815 C 17.280753,9.9588749 16.836009,10.848643 17.170613,11.428192 C 17.505215,12.00774 18.48624,12.053657 19.364206,11.546764 C 20.091271,11.126992 20.535474,10.455913 20.470884,9.9065097 L 20.490646,9.9065097 L 20.490646,4.2150246 L 20.490646,2.9897742 z " + id="path1328" /> + <g + id="g2403" + inkscape:label="Calque 1" + transform="translate(-3.1142216,0.1467125)"> + <g + transform="translate(14.730114,-3.4355522)" + inkscape:label="Calque 1" + id="g2364"> + <g + id="g2446" + inkscape:label="Calque 1" + transform="translate(7.9455775,4.2707653)"> + <g + style="fill:none;stroke:#000000;stroke-opacity:0.44968555" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z " + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451"> + <path + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#005653;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z " + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#005653;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z " + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#005653;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z " + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z " + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z " + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_accept.svg b/sflphone_kde/icons/icon_accept.svg new file mode 100644 index 0000000000..14453ca697 --- /dev/null +++ b/sflphone_kde/icons/icon_accept.svg @@ -0,0 +1,412 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_accept.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2433"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2435" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2437" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient2439" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective4283" /> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.0511112,0,0,-0.7528043,-6.3612105,18.68452)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient4318" + gradientUnits="userSpaceOnUse" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient4320" + gradientUnits="userSpaceOnUse" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient4322" + gradientUnits="userSpaceOnUse" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient4324" + gradientUnits="userSpaceOnUse" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient4326" + gradientUnits="userSpaceOnUse" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:1;fill:url(#linearGradient4275);fill-opacity:1;stroke:none;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 4.8702645,10.451388 L 4.8702645,4.699571 L 2.2608109,4.699571 L 8.0370775,0.3448829 L 13.813346,4.699571 L 11.203891,4.699571 L 11.203891,10.451388 L 4.8702645,10.451388 z" + id="rect4262" /> + <g + id="g2181" + transform="matrix(0.5647782,0,0,0.5334707,-7.4066678,15.009203)" + style="fill:none;stroke:#000000;stroke-opacity:0.44968555"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z" + id="path2183" + sodipodi:nodetypes="csccczccsccccc" /> + </g> + <g + id="g4160" + transform="matrix(0.5678511,0,0,0.5363064,-1.0543503,8.261584)" + style="fill:url(#linearGradient2439);fill-opacity:1"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path3153" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + style="opacity:1;fill:url(#linearGradient4318);fill-opacity:1;stroke:#0f5600;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path3161" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + style="opacity:1;fill:url(#linearGradient4320);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4140" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + style="opacity:1;fill:url(#linearGradient4322);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4246" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.8978659,7.4805434 C 9.1610575,8.1588394 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + style="opacity:1;fill:url(#linearGradient4324);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4258" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + style="opacity:1;fill:url(#linearGradient4326);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_call.svg b/sflphone_kde/icons/icon_call.svg new file mode 100644 index 0000000000..0400cb1d82 --- /dev/null +++ b/sflphone_kde/icons/icon_call.svg @@ -0,0 +1,446 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_call.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2491" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2489" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2487" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2485" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2483" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2433"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2435" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2437" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient2439" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective4283" /> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient4051);fill-opacity:1;stroke:none;stroke-width:5.69999981;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3162" + sodipodi:cx="19.285715" + sodipodi:cy="9.8571424" + sodipodi:rx="8.0357141" + sodipodi:ry="8.0357141" + d="M 27.321429,9.8571424 A 8.0357141,8.0357141 0 1 1 11.250001,9.8571424 A 8.0357141,8.0357141 0 1 1 27.321429,9.8571424 z" + transform="matrix(0.5359733,0,0,0.4764269,1.3932866,0.2487105)" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.360369px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 11.729917,3.2786177 L 11.729917,1.0641017" + id="path2257" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.360369px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 13.161945,4.0274073 L 15.319471,2.9201494" + id="path2259" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.360369px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 13.161945,5.6660475 L 15.319471,6.7733059" + id="path2261" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.360369px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 11.729917,6.4148376 L 11.729917,8.6293537" + id="path2263" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.360369px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 10.30953,5.6660479 L 8.1520026,6.7733052" + id="path2265" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.360369px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 10.30953,4.0274072 L 8.1520033,2.9201494" + id="path2267" + sodipodi:nodetypes="cc" /> + <g + id="g2446" + inkscape:label="Calque 1" + transform="matrix(0.7408994,0,0,0.6585858,15.041353,0.5591868)"> + <g + style="fill:none;stroke:#000000;stroke-opacity:0.44968555" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451"> + <path + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#0f5600;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_dialpad.svg b/sflphone_kde/icons/icon_dialpad.svg new file mode 100644 index 0000000000..19886ac1b4 --- /dev/null +++ b/sflphone_kde/icons/icon_dialpad.svg @@ -0,0 +1,542 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_dialpad.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient3208" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3284" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(12.57034,-3.030458)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3282" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(6.2851708,-3.030458)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3280" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-3.0304576)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3296" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(18.407,5.1770309)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3294" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(12.121831,5.1770309)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3292" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(5.8366603,5.1770313)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3302" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(12.57034,-3.030458)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3300" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(6.2851708,-3.030458)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1368" + id="linearGradient3298" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-3.0304576)" + x1="3.9194174" + y1="7.8426361" + x2="6.5609155" + y2="14.340417" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2433"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2435" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2437" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient2439" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective4283" /> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g3259" + transform="matrix(0.6408216,0,0,0.6843958,0.467967,-1.1274115)"> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="3.661803" + height="3.914341" + width="3.914341" + id="rect2210" + style="opacity:1;fill:url(#linearGradient3298);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="9.9469738" + height="3.914341" + width="3.914341" + id="rect3191" + style="opacity:1;fill:url(#linearGradient3300);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="16.232143" + height="3.914341" + width="3.914341" + id="rect3195" + style="opacity:1;fill:url(#linearGradient3302);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="g3222" + transform="matrix(0.6408216,0,0,0.6843958,-3.2541672,-2.237236)" + style="opacity:1"> + <rect + ry="0.73531199" + rx="0.73531199" + y="13.519668" + x="9.4984636" + height="3.914341" + width="3.914341" + id="rect3210" + style="opacity:1;fill:url(#linearGradient3292);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="13.519668" + x="15.783634" + height="3.914341" + width="3.914341" + id="rect3212" + style="opacity:1;fill:url(#linearGradient3294);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="13.519668" + x="22.068804" + height="3.914341" + width="3.914341" + id="rect3214" + style="opacity:1;fill:url(#linearGradient3296);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="g3264" + transform="matrix(0.6408216,0,0,0.6843958,0.4770285,7.8872808)" + style="opacity:1"> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="3.661803" + height="3.914341" + width="3.914341" + id="rect3266" + style="opacity:1;fill:url(#linearGradient3280);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="9.9469738" + height="3.914341" + width="3.914341" + id="rect3268" + style="opacity:1;fill:url(#linearGradient3282);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.73531199" + rx="0.73531199" + y="5.3121786" + x="16.232143" + height="3.914341" + width="3.914341" + id="rect3270" + style="opacity:1;fill:url(#linearGradient3284);fill-opacity:1;stroke:#137300;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="g3199" + transform="matrix(0.6639238,0,0,0.7090688,1.345312,-1.6432109)"> + <path + transform="matrix(0.723409,0,0,0.723409,4.2981133,0.64261)" + d="M 27.321429,9.8571424 A 8.0357141,8.0357141 0 1 1 11.250001,9.8571424 A 8.0357141,8.0357141 0 1 1 27.321429,9.8571424 z" + sodipodi:ry="8.0357141" + sodipodi:rx="8.0357141" + sodipodi:cy="9.8571424" + sodipodi:cx="19.285715" + id="path3162" + style="fill:url(#radialGradient3208);fill-opacity:1;stroke:none;stroke-width:5.69999981;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path2257" + d="M 18.249576,5.2432362 L 18.249576,1.880704" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2259" + d="M 20.1824,6.380202 L 23.094437,4.6989359" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2261" + d="M 20.1824,8.8683213 L 23.094437,10.549588" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2263" + d="M 18.249576,10.005288 L 18.249576,13.36782" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2265" + d="M 16.332464,8.868322 L 13.420426,10.549587" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + <path + sodipodi:nodetypes="cc" + id="path2267" + d="M 16.332464,6.3802018 L 13.420427,4.698936" + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#2a6f1d;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_dialpad_off.svg b/sflphone_kde/icons/icon_dialpad_off.svg new file mode 100644 index 0000000000..78304cfee7 --- /dev/null +++ b/sflphone_kde/icons/icon_dialpad_off.svg @@ -0,0 +1,1178 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_dialpad_off.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + id="guide3146" + position="24.821428" + orientation="vertical" /> + </sodipodi:namedview> + <defs + id="defs4"> + <radialGradient + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + gradientUnits="userSpaceOnUse" + id="radialGradient3208" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.57034,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3284" + xlink:href="#linearGradient1368" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(6.2851708,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3282" + xlink:href="#linearGradient1368" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(0,-3.0304576)" + gradientUnits="userSpaceOnUse" + id="linearGradient3280" + xlink:href="#linearGradient1368" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(18.407,5.1770309)" + gradientUnits="userSpaceOnUse" + id="linearGradient3296" + xlink:href="#linearGradient1368" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.121831,5.1770309)" + gradientUnits="userSpaceOnUse" + id="linearGradient3294" + xlink:href="#linearGradient1368" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(5.8366603,5.1770313)" + gradientUnits="userSpaceOnUse" + id="linearGradient3292" + xlink:href="#linearGradient1368" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.57034,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3302" + xlink:href="#linearGradient1368" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(6.2851708,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3300" + xlink:href="#linearGradient1368" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(0,-3.0304576)" + gradientUnits="userSpaceOnUse" + id="linearGradient3298" + xlink:href="#linearGradient1368" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2433" + inkscape:collect="always"> + <stop + id="stop2435" + offset="0" + style="stop-color:#4b4b4b;stop-opacity:1;" /> + <stop + id="stop2437" + offset="1" + style="stop-color:#4b4b4b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="16.739393" + x2="32.578228" + y1="-0.80084854" + x1="2.965755" + id="linearGradient2439" + xlink:href="#linearGradient2433" + inkscape:collect="always" /> + <inkscape:perspective + id="perspective4283" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + inkscape:vp_z="16 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 8 : 1" + sodipodi:type="inkscape:persp3d" /> + <linearGradient + id="linearGradient3370"> + <stop + id="stop3372" + offset="0" + style="stop-color:#d5d5d5;stop-opacity:1;" /> + <stop + id="stop3374" + offset="1" + style="stop-color:#797979;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + id="stop3364" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop3366" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + id="stop4047" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop4049" + offset="1" + style="stop-color:#f6f6f6;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + id="stop4271" + offset="0" + style="stop-color:#707070;stop-opacity:1;" /> + <stop + id="stop4273" + offset="1" + style="stop-color:#707070;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + style="stop-color:#707070;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#3c3c3c;stop-opacity:1;" + offset="1" + id="stop4187" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + id="stop4169" + offset="0" + style="stop-color:#282828;stop-opacity:1;" /> + <stop + id="stop4171" + offset="1" + style="stop-color:#373737;stop-opacity:0;" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2224" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1388" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1386" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1384" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1382" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1380" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + id="linearGradient1374"> + <stop + style="stop-color:#282828;stop-opacity:1;" + offset="0" + id="stop1376" /> + <stop + style="stop-color:#373737;stop-opacity:0;" + offset="1" + id="stop1378" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + id="stop1370" + offset="0" + style="stop-color:#727272;stop-opacity:1;" /> + <stop + id="stop1372" + offset="1" + style="stop-color:#3e3e3e;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + style="stop-color:#727272;stop-opacity:1;" + offset="0" + id="stop1364" /> + <stop + style="stop-color:#727272;stop-opacity:0;" + offset="1" + id="stop1366" /> + </linearGradient> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient1406" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient1408" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient1410" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient1412" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1414" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(5.8366603,5.1770313)" + gradientUnits="userSpaceOnUse" + id="linearGradient3292-64" + xlink:href="#linearGradient1368-934" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-934"> + <stop + id="stop5034" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5036" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.121831,5.1770309)" + gradientUnits="userSpaceOnUse" + id="linearGradient3294-6" + xlink:href="#linearGradient1368-131" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-131"> + <stop + id="stop5040" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5042" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(18.407,5.1770309)" + gradientUnits="userSpaceOnUse" + id="linearGradient3296-808" + xlink:href="#linearGradient1368-244" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-244"> + <stop + id="stop5046" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5048" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(0,-3.0304576)" + gradientUnits="userSpaceOnUse" + id="linearGradient3298-362" + xlink:href="#linearGradient1368-38" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-38"> + <stop + id="stop5052" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5054" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(6.2851708,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3300-214" + xlink:href="#linearGradient1368-740" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-740"> + <stop + id="stop5058" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5060" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.57034,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3302-268" + xlink:href="#linearGradient1368-94" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-94"> + <stop + id="stop5064" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5066" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(0,-3.0304576)" + gradientUnits="userSpaceOnUse" + id="linearGradient3280-95" + xlink:href="#linearGradient1368-296" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-296"> + <stop + id="stop5070" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5072" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(6.2851708,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3282-270" + xlink:href="#linearGradient1368-514" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-514"> + <stop + id="stop5076" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5078" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.57034,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3284-852" + xlink:href="#linearGradient1368-650" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-650"> + <stop + id="stop5082" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5084" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + gradientUnits="userSpaceOnUse" + id="radialGradient3208-14" + xlink:href="#linearGradient4045-98" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4045-98"> + <stop + id="stop5088" + offset="0" + style="stop-color:#f1f1f1;stop-opacity:0" /> + <stop + id="stop5090" + offset="1" + style="stop-color:#f2f2f2;stop-opacity:1" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(0,-3.0304576)" + gradientUnits="userSpaceOnUse" + id="linearGradient3298-362-863" + xlink:href="#linearGradient1368-38-198" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-38-198"> + <stop + id="stop5332" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5334" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(6.2851708,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3300-214-592" + xlink:href="#linearGradient1368-740-974" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-740-974"> + <stop + id="stop5338" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5340" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.57034,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3302-268-974" + xlink:href="#linearGradient1368-94-406" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-94-406"> + <stop + id="stop5344" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5346" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(5.8366603,5.1770313)" + gradientUnits="userSpaceOnUse" + id="linearGradient3292-64-43" + xlink:href="#linearGradient1368-934-519" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-934-519"> + <stop + id="stop5350" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5352" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.121831,5.1770309)" + gradientUnits="userSpaceOnUse" + id="linearGradient3294-6-423" + xlink:href="#linearGradient1368-131-540" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-131-540"> + <stop + id="stop5356" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5358" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(18.407,5.1770309)" + gradientUnits="userSpaceOnUse" + id="linearGradient3296-808-534" + xlink:href="#linearGradient1368-244-946" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-244-946"> + <stop + id="stop5362" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5364" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(0,-3.0304576)" + gradientUnits="userSpaceOnUse" + id="linearGradient3280-95-338" + xlink:href="#linearGradient1368-296-356" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-296-356"> + <stop + id="stop5368" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5370" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(6.2851708,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3282-270-635" + xlink:href="#linearGradient1368-514-941" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-514-941"> + <stop + id="stop5374" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5376" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.57034,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3284-852-980" + xlink:href="#linearGradient1368-650-492" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-650-492"> + <stop + id="stop5380" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5382" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + gradientUnits="userSpaceOnUse" + id="radialGradient3208-14-788" + xlink:href="#linearGradient4045-98-792" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4045-98-792"> + <stop + id="stop5386" + offset="0" + style="stop-color:#f1f1f1;stop-opacity:0" /> + <stop + id="stop5388" + offset="1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(0,-3.0304576)" + gradientUnits="userSpaceOnUse" + id="linearGradient3298-362-863-15" + xlink:href="#linearGradient1368-38-198-45" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-38-198-45"> + <stop + id="stop5708" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5710" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(6.2851708,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3300-214-592-789" + xlink:href="#linearGradient1368-740-974-869" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-740-974-869"> + <stop + id="stop5714" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5716" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.57034,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3302-268-974-285" + xlink:href="#linearGradient1368-94-406-837" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-94-406-837"> + <stop + id="stop5720" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5722" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(5.8366603,5.1770313)" + gradientUnits="userSpaceOnUse" + id="linearGradient3292-64-43-915" + xlink:href="#linearGradient1368-934-519-704" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-934-519-704"> + <stop + id="stop5726" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5728" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.121831,5.1770309)" + gradientUnits="userSpaceOnUse" + id="linearGradient3294-6-423-574" + xlink:href="#linearGradient1368-131-540-220" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-131-540-220"> + <stop + id="stop5732" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5734" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(18.407,5.1770309)" + gradientUnits="userSpaceOnUse" + id="linearGradient3296-808-534-847" + xlink:href="#linearGradient1368-244-946-671" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-244-946-671"> + <stop + id="stop5738" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5740" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(0,-3.0304576)" + gradientUnits="userSpaceOnUse" + id="linearGradient3280-95-338-356" + xlink:href="#linearGradient1368-296-356-899" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-296-356-899"> + <stop + id="stop5744" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5746" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(6.2851708,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3282-270-635-431" + xlink:href="#linearGradient1368-514-941-477" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-514-941-477"> + <stop + id="stop5750" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5752" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="14.340417" + x2="6.5609155" + y1="7.8426361" + x1="3.9194174" + gradientTransform="translate(12.57034,-3.030458)" + gradientUnits="userSpaceOnUse" + id="linearGradient3284-852-980-80" + xlink:href="#linearGradient1368-650-492-345" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1368-650-492-345"> + <stop + id="stop5756" + offset="0" + style="stop-color:#626262;stop-opacity:1;" /> + <stop + id="stop5758" + offset="1" + style="stop-color:#2d2d2d;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + gradientUnits="userSpaceOnUse" + id="radialGradient3208-14-788-911" + xlink:href="#linearGradient4045-98-792-285" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4045-98-792-285"> + <stop + id="stop5762" + offset="0" + style="stop-color:#f1f1f1;stop-opacity:0" /> + <stop + id="stop5764" + offset="1" + style="stop-color:#f3f3f3;stop-opacity:1" /> + </linearGradient> + </defs> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Calque 1"> + <g + transform="matrix(0.6408216,0,0,0.6843958,0.467967,-1.1274115)" + id="g3259"> + <rect + style="opacity:1;fill:url(#linearGradient3298-362-863-15);fill-opacity:1;stroke:#383838;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect2210" + width="3.914341" + height="3.914341" + x="3.661803" + y="5.3121786" + rx="0.73531199" + ry="0.73531199" /> + <rect + style="opacity:1;fill:url(#linearGradient3300-214-592-789);fill-opacity:1;stroke:#383838;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3191" + width="3.914341" + height="3.914341" + x="9.9469738" + y="5.3121786" + rx="0.73531199" + ry="0.73531199" /> + <rect + style="opacity:1;fill:url(#linearGradient3302-268-974-285);fill-opacity:1;stroke:#383838;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3195" + width="3.914341" + height="3.914341" + x="16.232143" + y="5.3121786" + rx="0.73531199" + ry="0.73531199" /> + </g> + <g + style="opacity:1" + transform="matrix(0.6408216,0,0,0.6843958,-3.2541672,-2.237236)" + id="g3222"> + <rect + style="opacity:1;fill:url(#linearGradient3292-64-43-915);fill-opacity:1;stroke:#383838;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3210" + width="3.914341" + height="3.914341" + x="9.4984636" + y="13.519668" + rx="0.73531199" + ry="0.73531199" /> + <rect + style="opacity:1;fill:url(#linearGradient3294-6-423-574);fill-opacity:1;stroke:#383838;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3212" + width="3.914341" + height="3.914341" + x="15.783634" + y="13.519668" + rx="0.73531199" + ry="0.73531199" /> + <rect + style="opacity:1;fill:url(#linearGradient3296-808-534-847);fill-opacity:1;stroke:#383838;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3214" + width="3.914341" + height="3.914341" + x="22.068804" + y="13.519668" + rx="0.73531199" + ry="0.73531199" /> + </g> + <g + style="opacity:1" + transform="matrix(0.6408216,0,0,0.6843958,0.4770285,7.8872808)" + id="g3264"> + <rect + style="opacity:1;fill:url(#linearGradient3280-95-338-356);fill-opacity:1;stroke:#383838;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3266" + width="3.914341" + height="3.914341" + x="3.661803" + y="5.3121786" + rx="0.73531199" + ry="0.73531199" /> + <rect + style="opacity:1;fill:url(#linearGradient3282-270-635-431);fill-opacity:1;stroke:#383838;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3268" + width="3.914341" + height="3.914341" + x="9.9469738" + y="5.3121786" + rx="0.73531199" + ry="0.73531199" /> + <rect + style="opacity:1;fill:url(#linearGradient3284-852-980-80);fill-opacity:1;stroke:#383838;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3270" + width="3.914341" + height="3.914341" + x="16.232143" + y="5.3121786" + rx="0.73531199" + ry="0.73531199" /> + </g> + <g + transform="matrix(0.6639238,0,0,0.7090688,1.345312,-1.6432109)" + id="g3199"> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient3208-14-788-911);fill-opacity:1;stroke:none;stroke-width:5.69999981;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3162" + sodipodi:cx="19.285715" + sodipodi:cy="9.8571424" + sodipodi:rx="8.0357141" + sodipodi:ry="8.0357141" + d="M 27.321429,9.8571424 A 8.0357141,8.0357141 0 1 1 11.250001,9.8571424 A 8.0357141,8.0357141 0 1 1 27.321429,9.8571424 z" + transform="matrix(0.723409,0,0,0.723409,4.2981133,0.64261)" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#424242;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 18.249576,5.2432362 L 18.249576,1.880704" + id="path2257" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#424242;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 20.1824,6.380202 L 23.094437,4.6989359" + id="path2259" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#424242;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 20.1824,8.8683213 L 23.094437,10.549588" + id="path2261" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#424242;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 18.249576,10.005288 L 18.249576,13.36782" + id="path2263" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#424242;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 16.332464,8.868322 L 13.420426,10.549587" + id="path2265" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#424242;stroke-width:0.51589537px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49408282" + d="M 16.332464,6.3802018 L 13.420427,4.698936" + id="path2267" + sodipodi:nodetypes="cc" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_hangup.svg b/sflphone_kde/icons/icon_hangup.svg new file mode 100644 index 0000000000..5ba9731254 --- /dev/null +++ b/sflphone_kde/icons/icon_hangup.svg @@ -0,0 +1,496 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_hangup.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2500"> + <stop + style="stop-color:#800000;stop-opacity:1;" + offset="0" + id="stop2502" /> + <stop + style="stop-color:#800000;stop-opacity:0;" + offset="1" + id="stop2504" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient2506" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient4357" + inkscape:collect="always"> + <stop + id="stop4359" + offset="0" + style="stop-color:#b00000;stop-opacity:1" /> + <stop + id="stop4361" + offset="1" + style="stop-color:#b02100;stop-opacity:0" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4357" + id="linearGradient4275" + x1="15.630395" + y1="22.874208" + x2="15.806232" + y2="6.6770978" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7424878,0,0,0.7680564,-3.8986663,-1.5618881)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2433"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2435" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2437" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient2439" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective4283" /> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3324" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3326" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3328" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3330" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3332" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3334" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3336" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3338" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3340" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3342" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:1;fill:url(#linearGradient4275);fill-opacity:1;stroke:none;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 5.0807981,2.6378122 L 5.0807981,10.246372 L 2.6909146,10.246372 L 7.981142,16.006797 L 13.271369,10.246372 L 10.881484,10.246372 L 10.881484,2.6378122 L 5.0807981,2.6378122 z" + id="rect4262" /> + <g + id="g2407" + inkscape:label="Calque 1" + transform="matrix(-0.3205374,0.5743057,-0.5551872,-0.3315756,18.644099,0.7396437)" + style="fill:url(#linearGradient2506);fill-opacity:1"> + <g + transform="translate(14.730114,-3.4355522)" + inkscape:label="Calque 1" + id="g2364" + style="fill:url(#linearGradient3342);fill-opacity:1"> + <g + id="g2446" + inkscape:label="Calque 1" + transform="translate(7.9455775,4.2707653)" + style="fill:url(#linearGradient3340);fill-opacity:1"> + <g + style="fill:url(#linearGradient3326);fill-opacity:1;stroke:#000000;stroke-opacity:0.44968555" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z" + style="opacity:1;fill:url(#linearGradient3324);fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451" + style="fill:url(#linearGradient3338);fill-opacity:1"> + <path + style="opacity:1;fill:url(#linearGradient3328);fill-opacity:1;stroke:#561500;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient3330);fill-opacity:1;stroke:#561500;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient3332);fill-opacity:1;stroke:#561500;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient3334);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient3336);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_hold.svg b/sflphone_kde/icons/icon_hold.svg new file mode 100644 index 0000000000..b9e466482e --- /dev/null +++ b/sflphone_kde/icons/icon_hold.svg @@ -0,0 +1,414 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_hold.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2500"> + <stop + style="stop-color:#800000;stop-opacity:1;" + offset="0" + id="stop2502" /> + <stop + style="stop-color:#800000;stop-opacity:0;" + offset="1" + id="stop2504" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient2506" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2433"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2435" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2437" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient2439" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective4283" /> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3326" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3338" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3340" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3342" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:0.63862927;fill:#008080;fill-opacity:1;stroke:#000000;stroke-width:0.31366119;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 15.342084,2.182836 L 11.077403,3.2426444 L 11.077403,7.29641 C 10.760907,7.2337305 10.361733,7.3044931 9.9828016,7.5083723 C 9.3512499,7.8481706 9.0313299,8.4446298 9.2720221,8.833132 C 9.5127132,9.2216353 10.218401,9.2524174 10.849953,8.912618 C 11.372957,8.6312223 11.678273,8.1813613 11.631811,7.8130673 L 11.646027,7.8130673 L 11.646027,3.9315203 L 14.759243,3.149911 L 14.759243,6.3028409 C 14.444203,6.2434948 14.039627,6.3130472 13.664642,6.5148032 C 13.033091,6.8546005 12.713169,7.4510597 12.953863,7.839563 C 13.194554,8.2280652 13.900241,8.2588452 14.531794,7.9190479 C 15.054799,7.6376522 15.37433,7.1877912 15.327868,6.8194972 L 15.342084,6.8194972 L 15.342084,3.0041875 L 15.342084,2.182836 z" + id="path3384" /> + <path + style="fill:#008080;fill-opacity:1;stroke:#1d6a6f;stroke-width:0.31366119;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 14.948121,1.9055546 L 10.68344,2.965363 L 10.68344,7.019129 C 10.366945,6.9564495 9.9677696,7.0272121 9.5888392,7.2310913 C 8.9572871,7.5708895 8.637367,8.1673488 8.8780592,8.555851 C 9.1187504,8.9443543 9.8244374,8.9751363 10.45599,8.635337 C 10.978995,8.3539413 11.284311,7.9040803 11.237848,7.5357852 L 11.252064,7.5357852 L 11.252064,3.6542383 L 14.36528,2.8726298 L 14.36528,6.0255589 C 14.050241,5.9662127 13.645664,6.0357652 13.270679,6.2375212 C 12.639128,6.5773184 12.319207,7.1737787 12.5599,7.5622809 C 12.800591,7.9507842 13.506278,7.9815642 14.137831,7.6417669 C 14.660836,7.3603712 14.980367,6.9105102 14.933905,6.5422162 L 14.948121,6.5422162 L 14.948121,2.7269062 L 14.948121,1.9055546 z" + id="path1328" /> + <g + id="g2403" + inkscape:label="Calque 1" + transform="matrix(0.7193364,0,0,0.670354,-2.0317215,-3.0310309e-4)" + style="fill:#008080"> + <g + transform="translate(14.730114,-3.4355522)" + inkscape:label="Calque 1" + id="g2364" + style="fill:#008080"> + <g + id="g2446" + inkscape:label="Calque 1" + transform="translate(7.9455775,4.2707653)" + style="fill:#008080"> + <g + style="fill:#008080;stroke:#000000;stroke-opacity:0.44968555" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z" + style="opacity:1;fill:#008080;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451" + style="fill:#008080"> + <path + style="opacity:1;fill:#008080;fill-opacity:1;stroke:#005653;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:#008080;fill-opacity:1;stroke:#005653;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:#008080;fill-opacity:1;stroke:#005653;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:#008080;fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:#008080;fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_rec.svg b/sflphone_kde/icons/icon_rec.svg new file mode 100644 index 0000000000..309aa07807 --- /dev/null +++ b/sflphone_kde/icons/icon_rec.svg @@ -0,0 +1,1677 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_rec.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2491" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2489" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2487" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2485" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2483" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2433"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2435" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2437" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient2439" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective4283" /> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2925" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="12.113755" + x2="7.293807" + y1="16.110582" + x1="11.408385" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient3160" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2921" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.949513" + x2="2.7672646" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2919" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2917" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2762" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2764" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2766" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2768" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2770" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient3144" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective3142" /> + <linearGradient + id="linearGradient3136"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3138" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3140" /> + </linearGradient> + <linearGradient + id="linearGradient3130"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3132" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3134" /> + </linearGradient> + <linearGradient + id="linearGradient2783"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop2785" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop2787" /> + </linearGradient> + <linearGradient + id="linearGradient2789"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2791" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop2793" /> + </linearGradient> + <linearGradient + id="linearGradient2795"> + <stop + id="stop2797" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2799" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2801"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2803" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2805" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2807" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2809" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2811" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2813" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2815" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2817" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2819"> + <stop + id="stop2821" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2823" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2825"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2827" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2829" /> + </linearGradient> + <linearGradient + id="linearGradient2831"> + <stop + id="stop2833" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2835" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2837" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2839" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2841" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2843" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2845" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + y2="65.800499" + x2="226.90887" + y1="259.03506" + x1="175.13184" + gradientUnits="userSpaceOnUse" + id="linearGradient3374" + xlink:href="#linearGradient3193" + inkscape:collect="always" /> + <linearGradient + y2="66.61824" + x2="172.07999" + y1="259.7438" + x1="224.26379" + gradientUnits="userSpaceOnUse" + id="linearGradient3372" + xlink:href="#linearGradient3289" + inkscape:collect="always" /> + <linearGradient + y2="168.2903" + x2="224.82684" + y1="-5.1353641" + x1="160.2529" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,747.63347,397.26819)" + gradientUnits="userSpaceOnUse" + id="linearGradient2646" + xlink:href="#linearGradient3308" + inkscape:collect="always" /> + <linearGradient + y2="65.800499" + x2="226.90887" + y1="259.03506" + x1="175.13184" + gradientUnits="userSpaceOnUse" + id="linearGradient3368" + xlink:href="#linearGradient3193" + inkscape:collect="always" /> + <linearGradient + y2="66.61824" + x2="172.07999" + y1="259.7438" + x1="224.26379" + gradientUnits="userSpaceOnUse" + id="linearGradient3366" + xlink:href="#linearGradient3289" + inkscape:collect="always" /> + <linearGradient + y2="168.2903" + x2="224.82684" + y1="-5.1353641" + x1="160.2529" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,558.73494,665.96877)" + gradientUnits="userSpaceOnUse" + id="linearGradient3364" + xlink:href="#linearGradient3308" + inkscape:collect="always" /> + <linearGradient + y2="65.800499" + x2="226.90887" + y1="259.03506" + x1="175.13184" + gradientUnits="userSpaceOnUse" + id="linearGradient2641" + xlink:href="#linearGradient3193" + inkscape:collect="always" /> + <linearGradient + y2="66.61824" + x2="172.07999" + y1="259.7438" + x1="224.26379" + gradientUnits="userSpaceOnUse" + id="linearGradient3360" + xlink:href="#linearGradient3289" + inkscape:collect="always" /> + <linearGradient + y2="168.2903" + x2="224.82684" + y1="-5.1353641" + x1="160.2529" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,558.73494,665.96877)" + gradientUnits="userSpaceOnUse" + id="linearGradient3340" + xlink:href="#linearGradient3308" + inkscape:collect="always" /> + <linearGradient + y2="65.800499" + x2="226.90887" + y1="259.03506" + x1="175.13184" + gradientUnits="userSpaceOnUse" + id="linearGradient3338" + xlink:href="#linearGradient3193" + inkscape:collect="always" /> + <linearGradient + y2="66.61824" + x2="172.07999" + y1="259.7438" + x1="224.26379" + gradientUnits="userSpaceOnUse" + id="linearGradient3336" + xlink:href="#linearGradient3289" + inkscape:collect="always" /> + <linearGradient + y2="168.2903" + x2="224.82684" + y1="-5.1353641" + x1="160.2529" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,747.63347,397.26819)" + gradientUnits="userSpaceOnUse" + id="linearGradient3326" + xlink:href="#linearGradient3308" + inkscape:collect="always" /> + <linearGradient + y2="65.800499" + x2="226.90887" + y1="259.03506" + x1="175.13184" + gradientUnits="userSpaceOnUse" + id="linearGradient3324" + xlink:href="#linearGradient3193" + inkscape:collect="always" /> + <linearGradient + y2="66.61824" + x2="172.07999" + y1="259.7438" + x1="224.26379" + gradientUnits="userSpaceOnUse" + id="linearGradient3322" + xlink:href="#linearGradient3289" + inkscape:collect="always" /> + <linearGradient + y2="168.2903" + x2="224.82684" + y1="-5.1353641" + x1="160.2529" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,306.50437,364.59668)" + gradientUnits="userSpaceOnUse" + id="linearGradient3306" + xlink:href="#linearGradient3308" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,376.2049,402.98248)" + y2="66.61824" + x2="172.07999" + y1="259.7438" + x1="224.26379" + gradientUnits="userSpaceOnUse" + id="linearGradient3301" + xlink:href="#linearGradient3289" + inkscape:collect="always" /> + <linearGradient + y2="66.61824" + x2="172.07999" + y1="259.7438" + x1="224.26379" + gradientUnits="userSpaceOnUse" + id="linearGradient3287" + xlink:href="#linearGradient3289" + inkscape:collect="always" /> + <linearGradient + y2="62.412689" + x2="204.55589" + y1="262.45413" + x1="204.55589" + gradientUnits="userSpaceOnUse" + id="linearGradient3213" + xlink:href="#linearGradient3193" + inkscape:collect="always" /> + <linearGradient + y2="62.412689" + x2="204.55589" + y1="262.45413" + x1="204.55589" + gradientUnits="userSpaceOnUse" + id="linearGradient3211" + xlink:href="#linearGradient3193" + inkscape:collect="always" /> + <linearGradient + y2="65.800499" + x2="226.90887" + y1="259.03506" + x1="175.13184" + gradientUnits="userSpaceOnUse" + id="linearGradient3203" + xlink:href="#linearGradient3193" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="62.412689" + x2="204.55589" + y1="262.45413" + x1="204.55589" + id="linearGradient3199" + xlink:href="#linearGradient3193" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="23.016739" + x2="184.85791" + y1="316.97113" + x1="175.76654" + id="linearGradient3179" + xlink:href="#linearGradient3181" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + r="140.91121" + fy="163.42795" + fx="184.85791" + cy="163.42795" + cx="184.85791" + id="radialGradient3163" + xlink:href="#linearGradient2385" + inkscape:collect="always" /> + <inkscape:perspective + id="perspective10" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 526.18109 : 1" + sodipodi:type="inkscape:persp3d" /> + <linearGradient + id="linearGradient2385"> + <stop + id="stop2387" + offset="0" + style="stop-color:#ff0000;stop-opacity:1;" /> + <stop + style="stop-color:#ff0000;stop-opacity:0.55172414;" + offset="0.87037039" + id="stop3175" /> + <stop + id="stop2389" + offset="1" + style="stop-color:#ff0000;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient3169"> + <stop + style="stop-color:#ff0000;stop-opacity:1;" + offset="0" + id="stop3171" /> + <stop + style="stop-color:#ff0000;stop-opacity:0;" + offset="1" + id="stop3173" /> + </linearGradient> + <linearGradient + id="linearGradient3181"> + <stop + style="stop-color:#ff0000;stop-opacity:1;" + offset="0" + id="stop3183" /> + <stop + id="stop3185" + offset="0.11529652" + style="stop-color:#ff0000;stop-opacity:0.65271967" /> + <stop + style="stop-color:#000000;stop-opacity:0.15481172" + offset="1" + id="stop3187" /> + </linearGradient> + <linearGradient + id="linearGradient3193" + inkscape:collect="always"> + <stop + id="stop3195" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop3197" + offset="1" + style="stop-color:#000000;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3289"> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="0" + id="stop3291" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop3293" /> + </linearGradient> + <linearGradient + id="linearGradient3308" + inkscape:collect="always"> + <stop + id="stop3310" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop3312" + offset="1" + style="stop-color:#ffffff;stop-opacity:0" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3169" + id="linearGradient2702" + x1="192.86734" + y1="118.36168" + x2="189.20502" + y2="355.44769" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2278"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop2280" /> + <stop + style="stop-color:#fefee7;stop-opacity:0.89308178" + offset="1" + id="stop2282" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2286" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop2288" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + id="stop2292" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2294" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2296"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2298" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2300" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2302" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2304" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2306" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2308" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2310" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2312" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2314"> + <stop + id="stop2316" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2318" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2320"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2322" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2324" /> + </linearGradient> + <linearGradient + id="linearGradient2326"> + <stop + id="stop2328" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2330" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2332" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2334" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2336" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2338" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2340" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient2342" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" /> + <linearGradient + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" + gradientUnits="userSpaceOnUse" + y2="8.5305319" + x2="15.630395" + y1="22.874208" + x1="15.630395" + id="linearGradient2444" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2442" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.1362892,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2440" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2438" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-1.9107675,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2436" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.9220986,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2434" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2428"> + <stop + id="stop2430" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2432" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2424" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2426" /> + </linearGradient> + <linearGradient + id="linearGradient2416"> + <stop + id="stop2418" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2420" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient3003" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient3001" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="2.7672646" + y2="12.949513" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2999" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2997" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="11.408385" + y1="16.110582" + x2="7.293807" + y2="12.113755" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2995" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient2993" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2991" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2989" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2987" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2985" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2983" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2977"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2979" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2981" /> + </linearGradient> + <linearGradient + id="linearGradient2971"> + <stop + id="stop2973" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2975" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2965"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2967" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2969" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2963" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2961" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2959" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2957" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2955" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4275" + x1="15.630395" + y1="22.874208" + x2="15.806232" + y2="6.6770978" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2952" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient4260" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + id="linearGradient4256" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient4203" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + id="linearGradient4195" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + id="linearGradient4181" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2941"> + <stop + id="stop2943" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2945" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2935"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2937" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2939" /> + </linearGradient> + <linearGradient + id="linearGradient2929"> + <stop + id="stop2931" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2933" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2923"> + <stop + id="stop2925" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop2927" + offset="1" + style="stop-color:#fcfbcb;stop-opacity:1" /> + </linearGradient> + <inkscape:perspective + id="perspective4757" + inkscape:persp3d-origin="12 : 8 : 1" + inkscape:vp_z="24 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 12 : 1" + sodipodi:type="inkscape:persp3d" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="g2892" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="726" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g2446" + inkscape:label="Calque 1" + transform="matrix(0.7408994,0,0,0.6585858,15.041353,0.5591868)"> + <g + style="fill:none;stroke:#000000;stroke-opacity:0.44968555" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451"> + <path + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#0f5600;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + <g + id="g3163" + inkscape:label="Calque 1" + transform="matrix(0.9893246,0,0,1,21.699174,-4.0949332)"> + <path + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:0.50400001;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;visibility:visible;display:inline;overflow:visible" + d="M 18.019888,12.625004 C 18.48189,11.534667 18.765826,10.027007 18.765826,8.3750001 C 18.765826,6.7229936 18.48189,5.2153338 18.019888,4.1249963" + id="path3488" + sodipodi:nodetypes="csc" /> + <g + transform="matrix(0.642707,0,0,0.6390328,-37.329383,5.2087423)" + inkscape:label="Calque 1" + id="g2892"> + <g + id="g2651" + inkscape:label="Layer 1" + transform="matrix(4.9064853e-2,-8.3536268e-2,8.8523433e-2,4.8433051e-2,19.350371,10.666504)"> + <g + transform="matrix(0.4480735,0,0,0.4170774,98.907461,118.01666)" + id="g3342"> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient3372);fill-opacity:1;stroke:none" + id="path3209" + sodipodi:cx="201.02036" + sodipodi:cy="162.41779" + sodipodi:rx="100.0051" + sodipodi:ry="100.0051" + d="M 301.02545,162.41779 A 100.0051,100.0051 0 1 1 101.01526,162.41779 A 100.0051,100.0051 0 1 1 301.02545,162.41779 z" + transform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,306.50437,364.59668)" /> + <path + sodipodi:type="arc" + style="opacity:0.24886876;fill:url(#linearGradient3374);fill-opacity:1;stroke:none" + id="path3201" + sodipodi:cx="201.02036" + sodipodi:cy="162.41779" + sodipodi:rx="100.0051" + sodipodi:ry="100.0051" + d="M 301.02545,162.41779 A 100.0051,100.0051 0 1 1 101.01526,162.41779 A 100.0051,100.0051 0 1 1 301.02545,162.41779 z" + transform="matrix(0.9122383,-0.2444335,0.2444335,0.9122383,-91.758986,25.004372)" /> + <path + sodipodi:type="arc" + style="opacity:0.59728507;fill:url(#linearGradient2702);fill-opacity:1;stroke:none" + id="path3295" + sodipodi:cx="201.02036" + sodipodi:cy="162.41779" + sodipodi:rx="78.284782" + sodipodi:ry="79.05574" + d="M 279.30514,162.41779 A 78.284782,79.05574 0 1 1 122.73557,162.41779 A 78.284782,79.05574 0 1 1 279.30514,162.41779 z" + transform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,306.50437,364.59668)" /> + </g> + </g> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_unhold.svg b/sflphone_kde/icons/icon_unhold.svg new file mode 100644 index 0000000000..a4535824bd --- /dev/null +++ b/sflphone_kde/icons/icon_unhold.svg @@ -0,0 +1,441 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_unhold.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2500"> + <stop + style="stop-color:#800000;stop-opacity:1;" + offset="0" + id="stop2502" /> + <stop + style="stop-color:#800000;stop-opacity:0;" + offset="1" + id="stop2504" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient2506" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2433"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2435" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2437" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient2439" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective4283" /> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3326" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3338" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3340" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3342" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g2453" + inkscape:label="Calque 1" + transform="matrix(0.7134153,0,0,0.6688126,-0.1384675,-7.9825942e-2)" + style="fill:#008080"> + <path + id="path3384" + d="M 21.038321,3.4034084 L 15.10969,4.9843766 L 15.10969,11.031579 C 14.669707,10.938077 14.114787,11.043637 13.588009,11.347773 C 12.710044,11.854667 12.265301,12.744435 12.599904,13.323983 C 12.934506,13.903532 13.915531,13.949451 14.793496,13.442556 C 15.520561,13.022784 15.945002,12.351704 15.880412,11.802301 L 15.900174,11.802301 L 15.900174,6.0120062 L 20.228074,4.8460419 L 20.228074,9.5494222 C 19.790115,9.4608922 19.227685,9.5646472 18.706392,9.8656162 C 17.828428,10.372509 17.383684,11.262277 17.718288,11.841826 C 18.05289,12.421374 19.033915,12.467291 19.911881,11.960398 C 20.638946,11.540626 21.083149,10.869547 21.018559,10.320144 L 21.038321,10.320144 L 21.038321,4.6286588 L 21.038321,3.4034084 z" + style="opacity:0.08099688;fill:#008080;fill-opacity:1;stroke:#000000;stroke-width:0.45169228;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path2456" + d="M 20.490646,2.9897742 L 14.562015,4.5707424 L 14.562015,10.617945 C 14.122032,10.524443 13.567112,10.630003 13.040334,10.934139 C 12.162369,11.441033 11.717626,12.330801 12.052229,12.910349 C 12.386831,13.489898 13.367856,13.535817 14.245821,13.028922 C 14.972886,12.60915 15.397327,11.93807 15.332737,11.388667 L 15.352499,11.388667 L 15.352499,5.5983718 L 19.680399,4.4324077 L 19.680399,9.1357875 C 19.24244,9.047258 18.68001,9.1510128 18.158717,9.4519815 C 17.280753,9.9588749 16.836009,10.848643 17.170613,11.428192 C 17.505215,12.00774 18.48624,12.053657 19.364206,11.546764 C 20.091271,11.126992 20.535474,10.455913 20.470884,9.9065097 L 20.490646,9.9065097 L 20.490646,4.2150246 L 20.490646,2.9897742 z" + style="opacity:0.32398753;fill:#008080;fill-opacity:1;stroke:#1d6a6f;stroke-width:0.45169228;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(-3.1142216,0.1467125)" + inkscape:label="Calque 1" + id="g2403" + style="fill:#008080"> + <g + id="g2364" + inkscape:label="Calque 1" + transform="translate(14.730114,-3.4355522)" + style="fill:#008080"> + <g + transform="translate(7.9455775,4.2707653)" + inkscape:label="Calque 1" + id="g2446" + style="fill:#008080"> + <g + id="g2181" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + style="fill:#008080;stroke:#000000;stroke-opacity:0.44968555"> + <path + style="opacity:1;fill:#008080;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z" + id="path2183" + sodipodi:nodetypes="csccczccsccccc" /> + </g> + <g + id="g2451" + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + style="fill:#008080"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path2453" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + style="opacity:1;fill:#008080;fill-opacity:1;stroke:#005653;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2455" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + style="opacity:1;fill:#008080;fill-opacity:1;stroke:#005653;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2457" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + style="opacity:1;fill:#008080;fill-opacity:1;stroke:#005653;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2459" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + style="opacity:1;fill:#008080;fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2461" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + style="opacity:1;fill:#008080;fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> + </g> + </g> + </g> + <g + id="g1418" + inkscape:label="Calque 1" + transform="matrix(0.4731337,0,0,0.4435535,21.103584,1.7278131)" + style="fill:#008080;stroke:#006c73;stroke-width:3.68368101;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <g + id="g1444" + transform="matrix(0.491592,0,0,0.491592,-26.9581,-0.76797)" + style="fill:#008080;stroke:#006c73;stroke-width:7.49337053;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <path + style="fill:#008080;fill-opacity:0.75;fill-rule:evenodd;stroke:#006c73;stroke-width:7.49337053;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 5.3208165,5.0274423 L 27.017246,26.72387" + id="path1332" + sodipodi:nodetypes="cc" /> + <path + style="fill:#008080;fill-opacity:0.75;fill-rule:evenodd;stroke:#006c73;stroke-width:7.49337053;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 5.3208161,26.72387 L 27.017246,5.0274427" + id="path1334" + sodipodi:nodetypes="cc" /> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_volume.svg b/sflphone_kde/icons/icon_volume.svg new file mode 100644 index 0000000000..0bea5a53fc --- /dev/null +++ b/sflphone_kde/icons/icon_volume.svg @@ -0,0 +1,1213 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_volume.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="g5430" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + id="guide3146" + position="24.821428" + orientation="vertical" /> + </sodipodi:namedview> + <defs + id="defs4"> + <linearGradient + id="linearGradient3404" + inkscape:collect="always"> + <stop + id="stop3406" + offset="0" + style="stop-color:#7c7171;stop-opacity:1;" /> + <stop + id="stop3408" + offset="1" + style="stop-color:#7c7171;stop-opacity:0;" /> + </linearGradient> + <radialGradient + r="6.5849319" + fy="5.7027574" + fx="-3.5797281" + cy="5.7027574" + cx="-3.5797281" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + gradientUnits="userSpaceOnUse" + id="radialGradient5440" + xlink:href="#linearGradient3404" + inkscape:collect="always" /> + <radialGradient + r="3.7829957" + fy="6.5377574" + fx="5.5446553" + cy="6.5377574" + cx="5.5446553" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + gradientUnits="userSpaceOnUse" + id="radialGradient5438" + xlink:href="#linearGradient3370" + inkscape:collect="always" /> + <linearGradient + y2="5.2185812" + x2="0.9781428" + y1="3.6340783" + x1="16.037382" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + gradientUnits="userSpaceOnUse" + id="linearGradient5436" + xlink:href="#linearGradient3362" + inkscape:collect="always" /> + <linearGradient + y2="11.78125" + x2="3.8125" + y1="4.3125" + x1="2.3125" + gradientTransform="translate(0,8.349934e-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient3431" + xlink:href="#linearGradient3370" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3417" + inkscape:collect="always"> + <stop + id="stop3419" + offset="0" + style="stop-color:#4d4242;stop-opacity:1;" /> + <stop + id="stop3421" + offset="1" + style="stop-color:#4d4242;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="2.2386067" + x2="4.2843809" + y1="15.55225" + x1="8.2358475" + gradientUnits="userSpaceOnUse" + id="linearGradient3429" + xlink:href="#linearGradient3417" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2433" + inkscape:collect="always"> + <stop + id="stop2435" + offset="0" + style="stop-color:#17ff17;stop-opacity:1;" /> + <stop + id="stop2437" + offset="1" + style="stop-color:#17ff17;stop-opacity:0;" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="16.739393" + x2="32.578228" + y1="-0.80084854" + x1="2.965755" + id="linearGradient2439" + xlink:href="#linearGradient2433" + inkscape:collect="always" /> + <inkscape:perspective + id="perspective4283" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + inkscape:vp_z="16 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 8 : 1" + sodipodi:type="inkscape:persp3d" /> + <linearGradient + id="linearGradient3370"> + <stop + id="stop3372" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop3374" + offset="1" + style="stop-color:#c9c2c2;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + id="stop3364" + offset="0" + style="stop-color:#4d4242;stop-opacity:1;" /> + <stop + id="stop3366" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + id="stop4047" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop4049" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + id="stop4271" + offset="0" + style="stop-color:#64fe47;stop-opacity:1;" /> + <stop + id="stop4273" + offset="1" + style="stop-color:#64fe47;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + style="stop-color:#64fe47;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#27f500;stop-opacity:1;" + offset="1" + id="stop4187" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + id="stop4169" + offset="0" + style="stop-color:#ff172d;stop-opacity:1;" /> + <stop + id="stop4171" + offset="1" + style="stop-color:#fe4759;stop-opacity:0;" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2224" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1388" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1386" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1384" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1382" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1380" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + id="linearGradient1374"> + <stop + style="stop-color:#ff172d;stop-opacity:1;" + offset="0" + id="stop1376" /> + <stop + style="stop-color:#fe4759;stop-opacity:0;" + offset="1" + id="stop1378" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + id="stop1370" + offset="0" + style="stop-color:#6dfe47;stop-opacity:1;" /> + <stop + id="stop1372" + offset="1" + style="stop-color:#31f500;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + style="stop-color:#6dfe47;stop-opacity:1;" + offset="0" + id="stop1364" /> + <stop + style="stop-color:#6dfe47;stop-opacity:0;" + offset="1" + id="stop1366" /> + </linearGradient> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient1406" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient1408" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient1410" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient1412" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1414" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <radialGradient + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient4051" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="2.2386067" + x2="4.2843809" + y1="15.55225" + x1="8.2358475" + gradientUnits="userSpaceOnUse" + id="linearGradient3429-258" + xlink:href="#linearGradient3417-460" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3417-460" + inkscape:collect="always"> + <stop + id="stop3521" + offset="0" + style="stop-color:#595252;stop-opacity:1;" /> + <stop + id="stop3523" + offset="1" + style="stop-color:#595252;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="11.78125" + x2="3.8125" + y1="4.3125" + x1="2.3125" + gradientTransform="translate(0,8.349934e-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient3431-294" + xlink:href="#linearGradient3370-951" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-951"> + <stop + id="stop3527" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop3529" + offset="1" + style="stop-color:#d4cfcf;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="5.2185812" + x2="0.9781428" + y1="3.6340783" + x1="16.037382" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + gradientUnits="userSpaceOnUse" + id="linearGradient5436-262" + xlink:href="#linearGradient3362-521" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3362-521"> + <stop + id="stop3533" + offset="0" + style="stop-color:#595252;stop-opacity:1;" /> + <stop + id="stop3535" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="3.7829957" + fy="6.5377574" + fx="5.5446553" + cy="6.5377574" + cx="5.5446553" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + gradientUnits="userSpaceOnUse" + id="radialGradient5438-173" + xlink:href="#linearGradient3370-346" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-346"> + <stop + id="stop3539" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop3541" + offset="1" + style="stop-color:#d4cfcf;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="6.5849319" + fy="5.7027574" + fx="-3.5797281" + cy="5.7027574" + cx="-3.5797281" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + gradientUnits="userSpaceOnUse" + id="radialGradient5440-109" + xlink:href="#linearGradient3404-773" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3404-773" + inkscape:collect="always"> + <stop + id="stop3545" + offset="0" + style="stop-color:#897c7c;stop-opacity:1;" /> + <stop + id="stop3547" + offset="1" + style="stop-color:#897c7c;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="2.2386067" + x2="4.2843809" + y1="15.55225" + x1="8.2358475" + gradientUnits="userSpaceOnUse" + id="linearGradient3429-258-267" + xlink:href="#linearGradient3417-460-670" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3417-460-670" + inkscape:collect="always"> + <stop + id="stop3733" + offset="0" + style="stop-color:#665d5d;stop-opacity:1;" /> + <stop + id="stop3735" + offset="1" + style="stop-color:#665d5d;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="11.78125" + x2="3.8125" + y1="4.3125" + x1="2.3125" + gradientTransform="translate(0,8.349934e-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient3431-294-226" + xlink:href="#linearGradient3370-951-954" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-951-954"> + <stop + id="stop3739" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop3741" + offset="1" + style="stop-color:#dfdbdb;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="5.2185812" + x2="0.9781428" + y1="3.6340783" + x1="16.037382" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + gradientUnits="userSpaceOnUse" + id="linearGradient5436-262-871" + xlink:href="#linearGradient3362-521-588" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3362-521-588"> + <stop + id="stop3745" + offset="0" + style="stop-color:#665d5d;stop-opacity:1;" /> + <stop + id="stop3747" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="3.7829957" + fy="6.5377574" + fx="5.5446553" + cy="6.5377574" + cx="5.5446553" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + gradientUnits="userSpaceOnUse" + id="radialGradient5438-173-579" + xlink:href="#linearGradient3370-346-970" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-346-970"> + <stop + id="stop3751" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop3753" + offset="1" + style="stop-color:#dfdbdb;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="6.5849319" + fy="5.7027574" + fx="-3.5797281" + cy="5.7027574" + cx="-3.5797281" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + gradientUnits="userSpaceOnUse" + id="radialGradient5440-109-592" + xlink:href="#linearGradient3404-773-417" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3404-773-417" + inkscape:collect="always"> + <stop + id="stop3757" + offset="0" + style="stop-color:#948989;stop-opacity:1;" /> + <stop + id="stop3759" + offset="1" + style="stop-color:#948989;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="2.2386067" + x2="4.2843809" + y1="15.55225" + x1="8.2358475" + gradientUnits="userSpaceOnUse" + id="linearGradient3429-258-267-62" + xlink:href="#linearGradient3417-460-670-493" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3417-460-670-493" + inkscape:collect="always"> + <stop + id="stop3983" + offset="0" + style="stop-color:#6c5656;stop-opacity:1;" /> + <stop + id="stop3985" + offset="1" + style="stop-color:#6c5656;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="11.78125" + x2="3.8125" + y1="4.3125" + x1="2.3125" + gradientTransform="translate(0,8.349934e-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient3431-294-226-402" + xlink:href="#linearGradient3370-951-954-415" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-951-954-415"> + <stop + id="stop3989" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop3991" + offset="1" + style="stop-color:#e0d9d9;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="5.2185812" + x2="0.9781428" + y1="3.6340783" + x1="16.037382" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + gradientUnits="userSpaceOnUse" + id="linearGradient5436-262-871-669" + xlink:href="#linearGradient3362-521-588-273" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3362-521-588-273"> + <stop + id="stop3995" + offset="0" + style="stop-color:#6c5656;stop-opacity:1;" /> + <stop + id="stop3997" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="3.7829957" + fy="6.5377574" + fx="5.5446553" + cy="6.5377574" + cx="5.5446553" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + gradientUnits="userSpaceOnUse" + id="radialGradient5438-173-579-651" + xlink:href="#linearGradient3370-346-970-142" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-346-970-142"> + <stop + id="stop4001" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4003" + offset="1" + style="stop-color:#e0d9d9;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="6.5849319" + fy="5.7027574" + fx="-3.5797281" + cy="5.7027574" + cx="-3.5797281" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + gradientUnits="userSpaceOnUse" + id="radialGradient5440-109-592-140" + xlink:href="#linearGradient3404-773-417-412" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3404-773-417-412" + inkscape:collect="always"> + <stop + id="stop4007" + offset="0" + style="stop-color:#978181;stop-opacity:1;" /> + <stop + id="stop4009" + offset="1" + style="stop-color:#978181;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="2.2386067" + x2="4.2843809" + y1="15.55225" + x1="8.2358475" + gradientUnits="userSpaceOnUse" + id="linearGradient3429-258-267-62-906" + xlink:href="#linearGradient3417-460-670-493-243" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3417-460-670-493-243" + inkscape:collect="always"> + <stop + id="stop4274" + offset="0" + style="stop-color:#7a6161;stop-opacity:1;" /> + <stop + id="stop4276" + offset="1" + style="stop-color:#7a6161;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="11.78125" + x2="3.8125" + y1="4.3125" + x1="2.3125" + gradientTransform="translate(0,8.349934e-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient3431-294-226-402-844" + xlink:href="#linearGradient3370-951-954-415-109" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-951-954-415-109"> + <stop + id="stop4280" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4282" + offset="1" + style="stop-color:#ebe7e7;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="5.2185812" + x2="0.9781428" + y1="3.6340783" + x1="16.037382" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + gradientUnits="userSpaceOnUse" + id="linearGradient5436-262-871-669-110" + xlink:href="#linearGradient3362-521-588-273-381" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3362-521-588-273-381"> + <stop + id="stop4286" + offset="0" + style="stop-color:#7a6161;stop-opacity:1;" /> + <stop + id="stop4288" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="3.7829957" + fy="6.5377574" + fx="5.5446553" + cy="6.5377574" + cx="5.5446553" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + gradientUnits="userSpaceOnUse" + id="radialGradient5438-173-579-651-207" + xlink:href="#linearGradient3370-346-970-142-736" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-346-970-142-736"> + <stop + id="stop4292" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4294" + offset="1" + style="stop-color:#ebe7e7;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="6.5849319" + fy="5.7027574" + fx="-3.5797281" + cy="5.7027574" + cx="-3.5797281" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + gradientUnits="userSpaceOnUse" + id="radialGradient5440-109-592-140-601" + xlink:href="#linearGradient3404-773-417-412-141" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3404-773-417-412-141" + inkscape:collect="always"> + <stop + id="stop4298" + offset="0" + style="stop-color:#a28e8e;stop-opacity:1;" /> + <stop + id="stop4300" + offset="1" + style="stop-color:#a28e8e;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="2.2386067" + x2="4.2843809" + y1="15.55225" + x1="8.2358475" + gradientUnits="userSpaceOnUse" + id="linearGradient3429-258-267-62-906-985" + xlink:href="#linearGradient3417-460-670-493-243-922" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3417-460-670-493-243-922" + inkscape:collect="always"> + <stop + id="stop4604" + offset="0" + style="stop-color:#886c6c;stop-opacity:1;" /> + <stop + id="stop4606" + offset="1" + style="stop-color:#886c6c;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="11.78125" + x2="3.8125" + y1="4.3125" + x1="2.3125" + gradientTransform="translate(0,8.349934e-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient3431-294-226-402-844-202" + xlink:href="#linearGradient3370-951-954-415-109-279" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-951-954-415-109-279"> + <stop + id="stop4610" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4612" + offset="1" + style="stop-color:#f6f4f4;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="5.2185812" + x2="0.9781428" + y1="3.6340783" + x1="16.037382" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + gradientUnits="userSpaceOnUse" + id="linearGradient5436-262-871-669-110-564" + xlink:href="#linearGradient3362-521-588-273-381-957" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3362-521-588-273-381-957"> + <stop + id="stop4616" + offset="0" + style="stop-color:#886c6c;stop-opacity:1;" /> + <stop + id="stop4618" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="3.7829957" + fy="6.5377574" + fx="5.5446553" + cy="6.5377574" + cx="5.5446553" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + gradientUnits="userSpaceOnUse" + id="radialGradient5438-173-579-651-207-645" + xlink:href="#linearGradient3370-346-970-142-736-198" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-346-970-142-736-198"> + <stop + id="stop4622" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4624" + offset="1" + style="stop-color:#f6f4f4;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="6.5849319" + fy="5.7027574" + fx="-3.5797281" + cy="5.7027574" + cx="-3.5797281" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + gradientUnits="userSpaceOnUse" + id="radialGradient5440-109-592-140-601-207" + xlink:href="#linearGradient3404-773-417-412-141-181" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3404-773-417-412-141-181" + inkscape:collect="always"> + <stop + id="stop4628" + offset="0" + style="stop-color:#ad9b9b;stop-opacity:1;" /> + <stop + id="stop4630" + offset="1" + style="stop-color:#ad9b9b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="2.2386067" + x2="4.2843809" + y1="15.55225" + x1="8.2358475" + gradientUnits="userSpaceOnUse" + id="linearGradient3429-258-267-62-906-985-280" + xlink:href="#linearGradient3417-460-670-493-243-922-132" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3417-460-670-493-243-922-132" + inkscape:collect="always"> + <stop + id="stop4974" + offset="0" + style="stop-color:#947878;stop-opacity:1;" /> + <stop + id="stop4976" + offset="1" + style="stop-color:#947878;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="11.78125" + x2="3.8125" + y1="4.3125" + x1="2.3125" + gradientTransform="translate(0,8.349934e-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient3431-294-226-402-844-202-180" + xlink:href="#linearGradient3370-951-954-415-109-279-665" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-951-954-415-109-279-665"> + <stop + id="stop4980" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4982" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="5.2185812" + x2="0.9781428" + y1="3.6340783" + x1="16.037382" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + gradientUnits="userSpaceOnUse" + id="linearGradient5436-262-871-669-110-564-868" + xlink:href="#linearGradient3362-521-588-273-381-957-758" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3362-521-588-273-381-957-758"> + <stop + id="stop4986" + offset="0" + style="stop-color:#947878;stop-opacity:1;" /> + <stop + id="stop4988" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="3.7829957" + fy="6.5377574" + fx="5.5446553" + cy="6.5377574" + cx="5.5446553" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + gradientUnits="userSpaceOnUse" + id="radialGradient5438-173-579-651-207-645-869" + xlink:href="#linearGradient3370-346-970-142-736-198-567" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-346-970-142-736-198-567"> + <stop + id="stop4992" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4994" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="6.5849319" + fy="5.7027574" + fx="-3.5797281" + cy="5.7027574" + cx="-3.5797281" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + gradientUnits="userSpaceOnUse" + id="radialGradient5440-109-592-140-601-207-267" + xlink:href="#linearGradient3404-773-417-412-141-181-602" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3404-773-417-412-141-181-602" + inkscape:collect="always"> + <stop + id="stop4998" + offset="0" + style="stop-color:#b8a9a9;stop-opacity:1;" /> + <stop + id="stop5000" + offset="1" + style="stop-color:#b8a9a9;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="2.2386067" + x2="4.2843809" + y1="15.55225" + x1="8.2358475" + gradientUnits="userSpaceOnUse" + id="linearGradient3429-258-267-62-906-985-280-113" + xlink:href="#linearGradient3417-460-670-493-243-922-132-891" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3417-460-670-493-243-922-132-891" + inkscape:collect="always"> + <stop + id="stop5384" + offset="0" + style="stop-color:#9f8686;stop-opacity:1;" /> + <stop + id="stop5386" + offset="1" + style="stop-color:#9f8686;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="11.78125" + x2="3.8125" + y1="4.3125" + x1="2.3125" + gradientTransform="translate(0,8.349934e-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient3431-294-226-402-844-202-180-638" + xlink:href="#linearGradient3370-951-954-415-109-279-665-584" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-951-954-415-109-279-665-584"> + <stop + id="stop5390" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5392" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <linearGradient + y2="5.2185812" + x2="0.9781428" + y1="3.6340783" + x1="16.037382" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + gradientUnits="userSpaceOnUse" + id="linearGradient5436-262-871-669-110-564-868-538" + xlink:href="#linearGradient3362-521-588-273-381-957-758-747" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3362-521-588-273-381-957-758-747"> + <stop + id="stop5396" + offset="0" + style="stop-color:#9f8686;stop-opacity:1;" /> + <stop + id="stop5398" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="3.7829957" + fy="6.5377574" + fx="5.5446553" + cy="6.5377574" + cx="5.5446553" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + gradientUnits="userSpaceOnUse" + id="radialGradient5438-173-579-651-207-645-869-96" + xlink:href="#linearGradient3370-346-970-142-736-198-567-925" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3370-346-970-142-736-198-567-925"> + <stop + id="stop5402" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop5404" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <radialGradient + r="6.5849319" + fy="5.7027574" + fx="-3.5797281" + cy="5.7027574" + cx="-3.5797281" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + gradientUnits="userSpaceOnUse" + id="radialGradient5440-109-592-140-601-207-267-144" + xlink:href="#linearGradient3404-773-417-412-141-181-602-811" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3404-773-417-412-141-181-602-811" + inkscape:collect="always"> + <stop + id="stop5408" + offset="0" + style="stop-color:#c3b6b6;stop-opacity:1;" /> + <stop + id="stop5410" + offset="1" + style="stop-color:#c3b6b6;stop-opacity:0;" /> + </linearGradient> + </defs> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Calque 1"> + <g + transform="matrix(1.0118896,0,0,0.7964492,9.7981938e-2,-0.1304203)" + id="g4455"> + <g + id="g3425" + transform="matrix(0.8938767,0,0,0.8938767,-0.7849478,0.2391309)" + style="stroke:#897d7d;stroke-opacity:1"> + <path + id="path3406" + d="M 8.2992212,14.492981 C 6.403097,12.241903 4.5069721,9.9908266 2.6108471,7.7397495 C 4.5069721,5.4886726 6.4030966,3.2375952 8.2992208,0.98651768 C 8.2992208,5.4886717 8.2992212,9.9908266 8.2992212,14.492981 z" + style="opacity:1;fill:url(#linearGradient3429-258-267-62-906-985-280-113);fill-opacity:1;stroke:#897d7d;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.23693162" + rx="0.23693162" + y="4.8959994" + x="1.9375" + height="5.6875" + width="3" + id="rect3404" + style="opacity:1;fill:url(#linearGradient3431-294-226-402-844-202-180-638);fill-opacity:1;stroke:#897d7d;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <path + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.62258136;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 4.0668759,5.5560217 L 6.1678675,3.589381 L 6.1678675,6.1765082 L 4.0447788,7.2813625 L 4.0668759,5.5560217 z" + id="rect2217" + sodipodi:nodetypes="ccccc" /> + </g> + <g + transform="matrix(0.6395228,0,0,0.6377417,6.3643674,5.3189298)" + id="g5430"> + <path + style="fill:url(#linearGradient5436-262-871-669-110-564-868-538);fill-opacity:1;stroke:#6b6262;stroke-width:1.11289036;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.568759,4.9630825 C 7.2693093,6.8053873 8.4265615,8.0680324 10.145908,8.5402313 C 10.269766,8.6640898 10.269766,8.8635147 10.145907,8.9873732 L 3.3591104,14.57972 C 3.2352519,14.703578 3.035827,14.703579 2.9119685,14.579721 C 1.9658464,14.102742 1.1190897,13.352509 0.66979388,12.47807 C 0.54593545,12.354211 0.54593521,12.154785 0.66979373,12.030927 L 6.1216164,4.9630825 C 6.245475,4.839224 6.4449005,4.8392241 6.568759,4.9630825 z" + id="rect2382" + sodipodi:nodetypes="ccccccccc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient5438-173-579-651-207-645-869-96);fill-opacity:1;stroke:#9b9090;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path2231" + sodipodi:cx="7.2604713" + sodipodi:cy="7.9187799" + sodipodi:rx="3.2829957" + sodipodi:ry="3.2829957" + d="M 10.543467,7.9187799 A 3.2829957,3.2829957 0 1 1 3.9774756,7.9187799 A 3.2829957,3.2829957 0 1 1 10.543467,7.9187799 z" + transform="matrix(1.1871826,0,0,1.1871826,1.6577923,-4.7200553)" /> + <path + style="fill:none;fill-opacity:1;stroke:#6b6262;stroke-width:1.05088782;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 4.3165626,13.206731 C 3.3222944,12.70548 2.4324481,11.917069 1.9602886,10.998132" + id="path3394" + sodipodi:nodetypes="cc" /> + <path + sodipodi:type="arc" + style="opacity:0.36908515;fill:url(#radialGradient5440-109-592-140-601-207-267-144);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path2433" + sodipodi:cx="-3.5797281" + sodipodi:cy="5.7027574" + sodipodi:rx="6.5849319" + sodipodi:ry="1.4584078" + d="M 3.0052037,5.7027574 A 6.5849319,1.4584078 0 1 1 -10.16466,5.7027574 A 6.5849319,1.4584078 0 1 1 3.0052037,5.7027574 z" + transform="matrix(0.9463087,0,0,1,9.0885763,9.1039998)" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/icon_volume_off.svg b/sflphone_kde/icons/icon_volume_off.svg new file mode 100644 index 0000000000..6a51561c29 --- /dev/null +++ b/sflphone_kde/icons/icon_volume_off.svg @@ -0,0 +1,450 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="icon_volume_off.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3404"> + <stop + style="stop-color:#2d2d2d;stop-opacity:1;" + offset="0" + id="stop3406" /> + <stop + style="stop-color:#2d2d2d;stop-opacity:0;" + offset="1" + id="stop3408" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3404" + id="radialGradient5440" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + cx="-3.5797281" + cy="5.7027574" + fx="-3.5797281" + fy="5.7027574" + r="6.5849319" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="radialGradient5438" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + spreadMethod="pad" + cx="5.5446553" + cy="6.5377574" + fx="5.5446553" + fy="6.5377574" + r="3.7829957" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3362" + id="linearGradient5436" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + x1="16.037382" + y1="3.6340783" + x2="0.9781428" + y2="5.2185812" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="linearGradient3431" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,8.349934e-2)" + x1="2.3125" + y1="4.3125" + x2="3.8125" + y2="11.78125" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3417"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3419" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3421" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3429" + gradientUnits="userSpaceOnUse" + x1="8.2358475" + y1="15.55225" + x2="4.2843809" + y2="2.2386067" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2433"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2435" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2437" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2433" + id="linearGradient2439" + x1="2.965755" + y1="-0.80084854" + x2="32.578228" + y2="16.739393" + gradientUnits="userSpaceOnUse" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="16 : 8 : 1" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + id="perspective4283" /> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="svg2" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="336" + inkscape:window-y="209" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g4455" + transform="matrix(1.0118896,0,0,0.7964492,9.7981938e-2,-0.1304203)"> + <g + style="stroke:#3a3a3a;stroke-opacity:1" + transform="matrix(0.8938767,0,0,0.8938767,-0.7849478,0.2391309)" + id="g3425"> + <path + style="opacity:1;fill:url(#linearGradient3429);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 8.2992212,14.492981 C 6.403097,12.241903 4.5069721,9.9908266 2.6108471,7.7397495 C 4.5069721,5.4886726 6.4030966,3.2375952 8.2992208,0.98651768 C 8.2992208,5.4886717 8.2992212,9.9908266 8.2992212,14.492981 z" + id="path3406" /> + <rect + style="opacity:1;fill:url(#linearGradient3431);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3404" + width="3" + height="5.6875" + x="1.9375" + y="4.8959994" + rx="0.23693162" + ry="0.23693162" /> + </g> + <path + sodipodi:nodetypes="ccccc" + id="rect2217" + d="M 4.0668759,5.5560217 L 6.1678675,3.589381 L 6.1678675,6.1765082 L 4.0447788,7.2813625 L 4.0668759,5.5560217 z" + style="fill:#f5f5f5;fill-opacity:1;stroke:none;stroke-width:0.62258136;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <g + id="g5430" + transform="matrix(0.6395228,0,0,0.6377417,6.3643674,5.3189298)"> + <path + sodipodi:nodetypes="ccccccccc" + id="rect2382" + d="M 6.568759,4.9630825 C 7.2693093,6.8053873 8.4265615,8.0680324 10.145908,8.5402313 C 10.269766,8.6640898 10.269766,8.8635147 10.145907,8.9873732 L 3.3591104,14.57972 C 3.2352519,14.703578 3.035827,14.703579 2.9119685,14.579721 C 1.9658464,14.102742 1.1190897,13.352509 0.66979388,12.47807 C 0.54593545,12.354211 0.54593521,12.154785 0.66979373,12.030927 L 6.1216164,4.9630825 C 6.245475,4.839224 6.4449005,4.8392241 6.568759,4.9630825 z" + style="fill:url(#linearGradient5436);fill-opacity:1;stroke:#1d1d1d;stroke-width:1.11289036;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(1.1871826,0,0,1.1871826,1.6577923,-4.7200553)" + d="M 10.543467,7.9187799 A 3.2829957,3.2829957 0 1 1 3.9774756,7.9187799 A 3.2829957,3.2829957 0 1 1 10.543467,7.9187799 z" + sodipodi:ry="3.2829957" + sodipodi:rx="3.2829957" + sodipodi:cy="7.9187799" + sodipodi:cx="7.2604713" + id="path2231" + style="opacity:1;fill:url(#radialGradient5438);fill-opacity:1;stroke:#4c4c4c;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path3394" + d="M 4.3165626,13.206731 C 3.3222944,12.70548 2.4324481,11.917069 1.9602886,10.998132" + style="fill:none;fill-opacity:1;stroke:#1d1d1d;stroke-width:1.05088782;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(0.9463087,0,0,1,9.0885763,9.1039998)" + d="M 3.0052037,5.7027574 A 6.5849319,1.4584078 0 1 1 -10.16466,5.7027574 A 6.5849319,1.4584078 0 1 1 3.0052037,5.7027574 z" + sodipodi:ry="1.4584078" + sodipodi:rx="6.5849319" + sodipodi:cy="5.7027574" + sodipodi:cx="-3.5797281" + id="path2433" + style="opacity:0.36908515;fill:url(#radialGradient5440);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/incoming.svg b/sflphone_kde/icons/incoming.svg new file mode 100644 index 0000000000..7f68789769 --- /dev/null +++ b/sflphone_kde/icons/incoming.svg @@ -0,0 +1,184 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="incoming.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2772"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2774" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2776" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2505"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2507" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2509" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="24 : 12 : 1" + inkscape:persp3d-origin="12 : 8 : 1" + id="perspective4177" /> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2505" + id="linearGradient2511" + x1="17.620802" + y1="9.4159222" + x2="-3.8121746" + y2="9.3760633" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.668614,0,0,1,3.7748346,0.1767767)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2772" + id="linearGradient2778" + x1="26.420586" + y1="3.4565225" + x2="20.291727" + y2="-5.2758617" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.87396" + inkscape:cy="2.756874" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1331" + inkscape:window-height="922" + inkscape:window-x="169" + inkscape:window-y="24" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:1;fill:url(#linearGradient2511);fill-opacity:1;stroke:none;stroke-width:0.62500000000000000;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 1.2259613,4.6445578 L 9.5484692,4.6445578 L 9.5484692,0.60013384 L 15.849421,9.5528402 L 9.5484692,18.505547 L 9.5484692,14.461122 L 1.2259613,14.461122 L 1.2259613,4.6445578 z" + id="rect4262" /> + <g + id="g4160" + transform="matrix(0.3274903,-0.8169208,-0.8169208,-0.3274903,19.715453,28.330727)" + style="fill:url(#linearGradient2778);fill-opacity:1"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path3153" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + style="opacity:1;fill:url(#linearGradient2778);fill-opacity:1.0;stroke:#0f5600;stroke-width:0.62500000000000000;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path3161" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + style="opacity:1;fill:url(#linearGradient2778);fill-opacity:1.0;stroke:#0f5600;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4140" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + style="opacity:1;fill:url(#linearGradient2778);fill-opacity:1.0;stroke:#0f5600;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4246" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.8978659,7.4805434 C 9.1610575,8.1588394 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + style="opacity:1;fill:url(#linearGradient2778);fill-opacity:1.0;stroke:none;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4258" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + style="opacity:1;fill:url(#linearGradient2778);fill-opacity:1.0;stroke:none;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/mailbox.svg b/sflphone_kde/icons/mailbox.svg new file mode 100644 index 0000000000..34f9fbd6b6 --- /dev/null +++ b/sflphone_kde/icons/mailbox.svg @@ -0,0 +1,1006 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="mailbox.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2542"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2544" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2546" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2378" + id="radialGradient6283" + gradientUnits="userSpaceOnUse" + cx="38.658855" + cy="9.3411446" + fx="38.658855" + fy="9.3411446" + r="8.341651" /> + <linearGradient + inkscape:collect="always" + id="linearGradient6984"> + <stop + style="stop-color:#babdb6;stop-opacity:1;" + offset="0" + id="stop6986" /> + <stop + style="stop-color:#babdb6;stop-opacity:0;" + offset="1" + id="stop6988" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6984" + id="linearGradient6335" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.4012864,0,0,0.2705794,6.757826,-10.140964)" + x1="14.125" + y1="79.81311" + x2="14.125" + y2="76.624176" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6945" + id="radialGradient6338" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0466849,0,0,0.5986706,-3.652096,-30.756483)" + cx="13.107393" + cy="61.48016" + fx="13.107393" + fy="61.48016" + r="18.5" /> + <linearGradient + inkscape:collect="always" + id="linearGradient6932"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop6934" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop10860" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6932" + id="linearGradient6364" + gradientUnits="userSpaceOnUse" + x1="32.625" + y1="68.4375" + x2="32.625" + y2="58.838387" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7088"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop7090" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop7092" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7088" + id="linearGradient7351" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.4012507,0,0,0.2842508,6.356883,-0.2587693)" + x1="9.9965248" + y1="21.246521" + x2="9.9965248" + y2="25.371557" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7059"> + <stop + style="stop-color:#babdb6;stop-opacity:1" + offset="0" + id="stop7061" /> + <stop + style="stop-color:#babdb6;stop-opacity:0" + offset="1" + id="stop7063" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7059" + id="linearGradient7356" + gradientUnits="userSpaceOnUse" + x1="9.0107775" + y1="19.584124" + x2="9.0107775" + y2="24.779999" + gradientTransform="matrix(0.4097916,0,0,0.2742861,6.147632,-0.2598906)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7067"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop7069" /> + <stop + style="stop-color:#eeeeec;stop-opacity:1" + offset="1" + id="stop7071" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7067" + id="radialGradient7354" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6113826,0,0,0.3630152,1.435442,-2.6744773)" + cx="26.762928" + cy="25.349953" + fx="26.762928" + fy="25.349953" + r="15.5" /> + <linearGradient + inkscape:collect="always" + id="linearGradient7002"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7004" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7006" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7002" + id="linearGradient6357" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.4012864,0,0,0.3083575,6.35654,-0.4859523)" + x1="15.75" + y1="24.561808" + x2="15.75" + y2="35.853024" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6945" + id="radialGradient6362" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0466849,0,0,-0.5986706,-3.652096,46.20464)" + cx="13.107393" + cy="61.48016" + fx="13.107393" + fy="61.48016" + r="18.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5060" + id="radialGradient6226" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)" + cx="605.71429" + cy="486.64789" + fx="605.71429" + fy="486.64789" + r="117.14286" /> + <linearGradient + id="linearGradient5060" + inkscape:collect="always"> + <stop + id="stop5062" + offset="0" + style="stop-color:black;stop-opacity:1;" /> + <stop + id="stop5064" + offset="1" + style="stop-color:black;stop-opacity:0;" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5060" + id="radialGradient6224" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)" + cx="605.71429" + cy="486.64789" + fx="605.71429" + fy="486.64789" + r="117.14286" /> + <linearGradient + id="linearGradient5048"> + <stop + id="stop5050" + offset="0" + style="stop-color:black;stop-opacity:0;" /> + <stop + style="stop-color:black;stop-opacity:1;" + offset="0.5" + id="stop5056" /> + <stop + id="stop5052" + offset="1" + style="stop-color:black;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5048" + id="linearGradient6222" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)" + x1="302.85715" + y1="366.64789" + x2="302.85715" + y2="609.50507" /> + <linearGradient + inkscape:collect="always" + id="linearGradient6968"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop6970" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop6972" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6968" + id="linearGradient6974" + x1="14.75" + y1="73" + x2="15.375" + y2="82" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2378"> + <stop + id="stop2380" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + style="stop-color:#fefede;stop-opacity:0.91836733;" + offset="0.25" + id="stop4146" /> + <stop + style="stop-color:#f5f328;stop-opacity:1;" + offset="0.5" + id="stop2386" /> + <stop + id="stop2382" + offset="1" + style="stop-color:#f5f32d;stop-opacity:0.12234043;" /> + </linearGradient> + <linearGradient + id="linearGradient6945" + inkscape:collect="always"> + <stop + id="stop6947" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop6949" + offset="1" + style="stop-color:#d3d7cf;stop-opacity:1" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="24 : 12 : 1" + inkscape:persp3d-origin="12 : 8 : 1" + id="perspective6815" /> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fefee7;stop-opacity:0.89308178" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" + gradientUnits="userSpaceOnUse" + y2="8.5305319" + x2="15.630395" + y1="22.874208" + x1="15.630395" + id="linearGradient2444" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2442" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.1362892,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2440" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2438" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-1.9107675,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2436" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.9220986,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2434" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2428"> + <stop + id="stop2430" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2432" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2424" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2426" /> + </linearGradient> + <linearGradient + id="linearGradient2416"> + <stop + id="stop2418" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2420" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2542" + id="linearGradient2548" + x1="-2.1546042" + y1="-7.1975217" + x2="25.153345" + y2="24.96549" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2542" + id="linearGradient6010" + gradientUnits="userSpaceOnUse" + x1="-2.1546042" + y1="-7.1975217" + x2="25.153345" + y2="24.96549" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2542" + id="linearGradient6012" + gradientUnits="userSpaceOnUse" + x1="-2.1546042" + y1="-7.1975217" + x2="25.153345" + y2="24.96549" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2542" + id="linearGradient6014" + gradientUnits="userSpaceOnUse" + x1="-2.1546042" + y1="-7.1975217" + x2="25.153345" + y2="24.96549" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2542" + id="linearGradient6016" + gradientUnits="userSpaceOnUse" + x1="-2.1546042" + y1="-7.1975217" + x2="25.153345" + y2="24.96549" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2542" + id="linearGradient6018" + gradientUnits="userSpaceOnUse" + x1="-2.1546042" + y1="-7.1975217" + x2="25.153345" + y2="24.96549" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2542" + id="linearGradient6020" + gradientUnits="userSpaceOnUse" + x1="-2.1546042" + y1="-7.1975217" + x2="25.153345" + y2="24.96549" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2542" + id="linearGradient6022" + gradientUnits="userSpaceOnUse" + x1="-2.1546042" + y1="-7.1975217" + x2="25.153345" + y2="24.96549" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2542" + id="linearGradient6024" + gradientUnits="userSpaceOnUse" + x1="-2.1546042" + y1="-7.1975217" + x2="25.153345" + y2="24.96549" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="22.991745" + inkscape:cy="-2.9160694" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="722" + inkscape:window-x="412" + inkscape:window-y="135" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="16.5,12.125" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g2446" + inkscape:label="Calque 1" + transform="matrix(1.0000089,0,0,0.9411362,19.312133,1.5877181)" + style="fill:url(#linearGradient2548);fill-opacity:1"> + <g + style="fill:url(#linearGradient6012);fill-opacity:1;stroke:#000000;stroke-opacity:0.44968555" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z" + style="opacity:1;fill:url(#linearGradient6010);fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451" + style="fill:url(#linearGradient6024);fill-opacity:1"> + <path + style="opacity:1;fill:url(#linearGradient6014);fill-opacity:1;stroke:#0f5600;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient6016);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient6018);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient6020);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient6022);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0012817" + inkscape:original="M 23.5 66.5 C 18.5 66.5 17.5 67.5 16.5 68.5 L 5.90625 79.09375 C 6.161869 79.349369 6.514512 79.499999 6.90625 79.5 L 40.09375 79.5 C 40.485487 79.5 40.83813 79.349369 41.09375 79.09375 L 30.5 68.5 C 29.5 67.5 28.5 66.5 23.5 66.5 z " + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6974);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path6922" + d="M 23.5,67.5 C 21.066752,67.5 19.672512,67.751714 18.84375,68.0625 C 18.014988,68.373286 17.71875,68.71875 17.21875,69.21875 L 7.9375,78.5 L 39.0625,78.5 L 29.78125,69.21875 C 29.28125,68.71875 28.985012,68.373286 28.15625,68.0625 C 27.327488,67.751714 25.933248,67.5 23.5,67.5 z" + transform="matrix(0.4502137,0,0,0.3127812,14.307693,37.985654)" /> + <g + style="opacity:0.7;display:inline" + id="g6055" + transform="matrix(8.6952354e-3,0,0,4.3474898e-3,24.921352,10.188454)"> + <rect + y="-150.69685" + x="-1559.2523" + height="478.35718" + width="1339.6335" + id="rect6057" + style="opacity:0.39195981;fill:url(#linearGradient6222);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + sodipodi:nodetypes="cccc" + id="path6059" + d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z" + style="opacity:0.40206185;fill:url(#radialGradient6224);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + style="opacity:0.40206185;fill:url(#radialGradient6226);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z" + id="path6061" + sodipodi:nodetypes="cccc" /> + </g> + <path + style="fill:url(#radialGradient6362);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + d="M 16.188056,1.113594 C 13.97187,1.113594 13.780337,1.3834096 13.379051,1.6532259 L 8.964902,4.621197 L 8.964902,5.000626 L 8.964902,5.051216 L 8.964902,10.987159 C 8.964902,11.198554 9.214813,11.366588 9.52921,11.366588 L 22.846901,11.366588 C 23.161299,11.366588 23.41121,11.198553 23.41121,10.987159 L 23.41121,5.051216 L 23.41121,5.000626 L 23.41121,4.621197 L 18.997061,1.6532259 C 18.595773,1.3834096 18.395131,1.113594 16.188056,1.113594 z" + id="rect5931" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.30473173;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + d="M 23.41121,5.321032 L 23.41121,4.621197 L 18.997061,1.6532259 C 18.595773,1.3834096 18.395131,1.113594 16.188056,1.113594 C 13.97187,1.113594 13.780337,1.3834096 13.379052,1.6532259 L 8.964902,4.621197 L 8.964902,5.321032" + id="path7161" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.98534405" + inkscape:original="M 24.5 4.5 C 18.977297 4.5 18.5 5.499998 17.5 6.5 L 6.5 17.5 L 6.5 18.90625 L 6.5 19.09375 L 6.5 41.09375 C 6.5 41.877225 7.1227756 42.500002 7.90625 42.5 L 41.09375 42.5 C 41.877224 42.5 42.5 41.877224 42.5 41.09375 L 42.5 19.09375 L 42.5 18.90625 L 42.5 17.5 L 31.5 6.5 C 30.5 5.5 30 4.499998 24.5 4.5 z " + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.93754596;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + id="path6064" + d="M 24.5,5.5 C 21.798121,5.5 20.393246,5.7355566 19.65625,6.03125 C 18.919254,6.3269434 18.748198,6.6268011 18.1875,7.1875 L 7.5,17.875 L 7.5,18.90625 L 7.5,19.09375 L 7.5,41.09375 C 7.5,41.355066 7.6449379,41.500001 7.90625,41.5 L 41.09375,41.5 C 41.355064,41.5 41.5,41.355064 41.5,41.09375 L 41.5,19.09375 L 41.5,18.90625 L 41.5,17.875 L 30.8125,7.1875 C 30.254438,6.6294378 30.053706,6.3277326 29.3125,6.03125 C 28.571294,5.7347674 27.190282,5.499999 24.5,5.5 z" + transform="matrix(0.3930408,0,0,0.2687896,6.558557,-0.1264191)" /> + <path + style="opacity:0.07462685;fill:url(#linearGradient6357);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" + d="M 16.188056,6.91463 C 15.171363,6.91463 14.542242,6.991393 14.106382,7.11699 C 13.670523,7.242587 13.441752,7.425347 13.241109,7.579526 L 9.316027,11.135275 C 9.456261,11.243035 9.320187,11.231636 9.52921,11.231636 L 22.846901,11.231636 C 23.055924,11.231636 22.944931,11.146672 23.085164,11.038914 L 19.135002,7.579526 C 18.934358,7.425347 18.705589,7.242587 18.269729,7.11699 C 17.83387,6.991393 17.20475,6.91463 16.188056,6.91463 z" + id="path7000" + sodipodi:nodetypes="csccccccsc" /> + <path + style="fill:url(#radialGradient7354);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7356);stroke-width:0.30473173;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + d="M 10.565694,1.7972574 C 10.27826,1.7972574 10.040649,1.9364716 10.040649,2.1144009 L 10.040649,6.374407 L 13.178116,8.474411 C 13.370391,8.603106 13.560773,8.771945 13.984893,8.88584 C 14.409012,8.999736 15.043577,9.06584 16.187523,9.06584 C 17.326866,9.065841 17.965155,8.999626 18.390152,8.88584 C 18.815149,8.772055 19.004106,8.603472 19.196928,8.474411 L 22.334395,6.374407 L 22.334395,2.1144009 C 22.334395,1.9364716 22.096784,1.7972574 21.80935,1.7972574 L 10.565694,1.7972574 z" + id="rect7037" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7351);stroke-width:0.30473176;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + d="M 10.682864,2.157365 C 10.594986,2.157365 10.570012,2.1867693 10.570012,2.201779 L 10.570012,7.060693 L 13.529236,9.157045 C 13.747933,9.311973 13.85466,9.428411 14.181269,9.521241 C 14.517977,9.616942 15.090513,9.690015 16.187522,9.690015 C 17.279895,9.690015 17.856423,9.616835 18.193775,9.521241 C 18.521106,9.428487 18.626148,9.312654 18.845808,9.157045 L 21.805032,7.060693 L 21.805032,2.201779 C 21.805032,2.1867685 21.780059,2.157365 21.69218,2.157365 L 10.682864,2.157365 z" + id="path7081" + sodipodi:nodetypes="ccccsssccccc" /> + <rect + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + id="rect7096" + width="4.7199154" + height="0.21114101" + x="11.467583" + y="2.7136545" + rx="0.19307812" + ry="0.12387425" /> + <rect + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + id="rect7110" + width="2.1400123" + height="0.24408528" + x="18.862514" + y="2.6943941" + rx="0.19022335" + ry="0.12204266" /> + <g + id="g7169" + transform="matrix(0.4012864,0,0,0.2698156,6.35654,-0.1005756)"> + <path + sodipodi:nodetypes="ccssscccssscc" + id="path7112" + d="M 7.09375,21.75 L 17.15625,33.34375 C 17.62545,33.812951 18.090035,34.428507 19.125,34.84375 C 20.159965,35.258993 21.70847,35.5 24.5,35.5 C 27.280303,35.500001 28.837893,35.258593 29.875,34.84375 C 30.912107,34.428907 31.373213,33.814287 31.84375,33.34375 L 41.875,21.875 L 31.84375,31.84375 C 31.373213,32.314287 30.912107,32.928907 29.875,33.34375 C 28.837893,33.758593 27.280303,34.000001 24.5,34 C 21.70847,34 20.159965,33.758993 19.125,33.34375 C 18.090035,32.928507 17.62545,32.312951 17.15625,31.84375 L 7.09375,21.75 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccssscccssscc" + id="path7128" + d="M 7.09375,21.75 L 17.15625,31.34375 C 17.62545,31.812951 18.090035,32.428507 19.125,32.84375 C 20.159965,33.258993 21.70847,33.5 24.5,33.5 C 27.280303,33.500001 28.837893,33.258593 29.875,32.84375 C 30.912107,32.428907 31.373213,31.814287 31.84375,31.34375 L 41.875,21.875 L 31.84375,31.84375 C 31.373213,32.314287 30.912107,32.928907 29.875,33.34375 C 28.837893,33.758593 27.280303,34.000001 24.5,34 C 21.70847,34 20.159965,33.758993 19.125,33.34375 C 18.090035,32.928507 17.62545,32.312951 17.15625,31.84375 L 7.09375,21.75 z" + style="opacity:0.3;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" /> + <path + transform="translate(1,-38)" + d="M 6.90625,55 C 5.8578131,55 5,55.857811 5,56.90625 L 5,58.5 C 5.0051575,58.6306 5.0612439,58.75399 5.15625,58.84375 L 16.15625,69.84375 C 16.62545,70.312951 17.090035,70.928507 18.125,71.34375 C 19.159965,71.758993 20.70847,72 23.5,72 C 26.280303,72.000001 27.837893,71.758593 28.875,71.34375 C 29.912107,70.928907 30.373213,70.314287 30.84375,69.84375 L 41.84375,58.84375 C 41.938756,58.75399 41.994842,58.6306 42,58.5 L 42,56.90625 C 42,55.857813 41.142189,55 40.09375,55 L 6.90625,55 z" + id="path6930" + style="opacity:0.16791047;fill:url(#linearGradient6364);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" + inkscape:original="M 6.90625 55.5 C 6.1227756 55.5 5.5 56.122774 5.5 56.90625 L 5.5 58.5 L 16.5 69.5 C 17.5 70.500002 17.977297 71.5 23.5 71.5 C 29 71.500002 29.5 70.5 30.5 69.5 L 41.5 58.5 L 41.5 56.90625 C 41.5 56.122776 40.877226 55.5 40.09375 55.5 L 6.90625 55.5 z " + inkscape:radius="0.5" + sodipodi:type="inkscape:offset" /> + </g> + <path + style="fill:url(#radialGradient6338);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 16.188056,7.858985 C 14.181623,7.858985 13.780337,8.128801 13.379051,8.398616 L 9.127924,11.256976 C 9.230501,11.325945 9.372011,11.366587 9.52921,11.366588 L 22.846901,11.366588 C 23.0041,11.366588 23.145611,11.325945 23.248188,11.256976 L 18.997061,8.398616 C 18.595773,8.128801 18.194488,7.858985 16.188056,7.858985 z" + id="path6902" /> + <path + style="opacity:0.55597014;fill:url(#linearGradient6335);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + d="M 9.165544,10.127122 L 9.165544,10.989594 C 9.165544,11.130569 9.320136,11.234807 9.52921,11.234807 L 22.846901,11.234807 C 23.055975,11.234807 23.210567,11.130569 23.210567,10.989594 L 23.210567,10.127122 L 9.165544,10.127122 z" + id="path6980" + sodipodi:nodetypes="ccccccc" /> + <g + id="g4724" + transform="matrix(0.3804467,0,0,0.2440853,7.247005,0.7417114)"> + <rect + ry="0.50750387" + rx="0.50750387" + y="14.078901" + x="11.09375" + height="0.86502957" + width="25.03125" + id="rect4710" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" /> + <rect + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + id="rect4712" + width="25.03125" + height="0.86502957" + x="11.09375" + y="16.078901" + rx="0.50750387" + ry="0.50750387" /> + <rect + ry="0.50750387" + rx="0.50750387" + y="18.078901" + x="11.09375" + height="0.86502957" + width="25.03125" + id="rect4714" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" /> + <rect + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + id="rect4716" + width="25.03125" + height="0.86502957" + x="11.09375" + y="20.078901" + rx="0.50750387" + ry="0.50750387" /> + <rect + ry="0.50750387" + rx="0.50750387" + y="22.078901" + x="11.09375" + height="0.86502957" + width="25.03125" + id="rect4718" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" /> + <rect + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + id="rect4720" + width="25.03125" + height="0.86502957" + x="11.09375" + y="24.078901" + rx="0.50750387" + ry="0.50750387" /> + <rect + ry="0.50750387" + rx="0.50750387" + y="26.078901" + x="11.09375" + height="0.86502957" + width="25.03125" + id="rect4722" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" /> + </g> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.30473167;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + d="M 8.964902,5.051216 L 8.964902,11.025618 C 8.964902,11.238381 9.214813,11.407505 9.52921,11.407504 L 22.846901,11.407504 C 23.161299,11.407504 23.41121,11.238381 23.41121,11.025618 L 23.41121,5.051216" + id="path7174" + sodipodi:nodetypes="cccccc" /> + <g + id="g6320" + transform="matrix(0.4012863,0,0,0.2792136,-16.215815,-0.4952216)"> + <path + sodipodi:nodetypes="ccssscccccc" + id="path7039" + d="M 63.25,41.970971 L 73.40625,30.627221 C 73.875623,30.157847 74.3406,29.542237 75.375,29.127221 C 76.4094,28.712205 77.95864,28.470971 80.75,28.470971 C 83.530132,28.47097 85.088454,28.712602 86.125,29.127221 C 87.161546,29.54184 87.623047,30.156518 88.09375,30.627221 L 98.25,41.970971 L 88.103408,32.175118 C 86.059401,30.205524 83.585161,29.902961 80.759658,30.018868 C 78.088808,30.068408 75.295355,30.018538 73.415908,32.175118 L 63.25,41.970971 z" + style="fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + id="path7049" + d="M 63.25,41.99247 L 73.415908,33.404596 C 75.295355,31.286609 78.088808,31.335586 80.759658,31.286933 C 83.585161,31.1731 86.059401,31.470249 88.103408,33.404596 L 98.25,41.99247 L 88.09375,31.833825 C 86.049743,29.899478 83.575503,29.60233 80.75,29.716162 C 78.07915,29.764816 75.285697,29.715838 73.40625,31.833825 L 63.25,41.99247 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + style="opacity:0.594697;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.30473173;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" + d="M 9.511652,10.85791 C 9.511652,10.989937 9.568618,11.063164 9.671325,11.063164 L 22.715365,11.063164 C 22.818072,11.063164 22.875038,10.989936 22.875038,10.85791" + id="path7293" + sodipodi:nodetypes="cccc" /> + <g + style="display:inline" + id="g5992" + transform="matrix(0.4832429,0,0,0.3617094,9.10997,-13.531936)"> + <path + transform="matrix(1.14985,0,0,1.14985,-23.09153,35.3537)" + d="M 47.000506,9.3411446 A 8.341651,8.341651 0 1 1 30.317204,9.3411446 A 8.341651,8.341651 0 1 1 47.000506,9.3411446 z" + sodipodi:ry="8.341651" + sodipodi:rx="8.341651" + sodipodi:cy="9.3411446" + sodipodi:cx="38.658855" + id="path5988" + style="fill:url(#radialGradient6283);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" + sodipodi:type="arc" /> + <path + transform="matrix(0.674116,0.299577,-0.299577,0.674116,-3.207e-2,27.67034)" + d="M 44.520054,15.50279 C 44.012883,16.381236 39.925351,15.341967 38.998703,15.754538 C 38.072055,16.167108 36.109289,19.900142 35.117113,19.689249 C 34.124936,19.478355 33.850222,15.26973 33.171495,14.515926 C 32.492767,13.762123 28.335913,13.048993 28.229885,12.040207 C 28.123857,11.031421 32.041607,9.4696164 32.548778,8.5911701 C 33.055949,7.7127238 32.449637,3.5389508 33.376285,3.1263806 C 34.302933,2.7138103 36.998949,5.957187 37.991126,6.1680807 C 38.983302,6.3789743 42.765436,4.5125708 43.444163,5.2663741 C 44.122891,6.0201775 41.871371,9.5864995 41.977399,10.595285 C 42.083426,11.604071 45.027225,14.624343 44.520054,15.50279 z" + inkscape:randomized="0" + inkscape:rounded="0.18352206" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="5.0676599" + sodipodi:r1="8.755579" + sodipodi:cy="11.125" + sodipodi:cx="36.9375" + sodipodi:sides="5" + id="path5990" + style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="star" /> + </g> + <rect + ry="0.12387425" + rx="0.19307812" + y="3.2018204" + x="11.467583" + height="0.21114101" + width="1.8427882" + id="rect4708" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:0.99236642" /> + </g> +</svg> diff --git a/sflphone_kde/icons/mic.svg b/sflphone_kde/icons/mic.svg new file mode 100644 index 0000000000..9d8538330f --- /dev/null +++ b/sflphone_kde/icons/mic.svg @@ -0,0 +1,406 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="mic_25 (copy).svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3404"> + <stop + style="stop-color:#2d2d2d;stop-opacity:1;" + offset="0" + id="stop3406" /> + <stop + style="stop-color:#2d2d2d;stop-opacity:0;" + offset="1" + id="stop3408" /> + </linearGradient> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3362" + id="linearGradient5436" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + x1="16.037382" + y1="3.6340783" + x2="0.9781428" + y2="5.2185812" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="radialGradient5438" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + spreadMethod="pad" + cx="5.5446553" + cy="6.5377574" + fx="5.5446553" + fy="6.5377574" + r="3.7829957" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3404" + id="radialGradient5440" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + cx="-3.5797281" + cy="5.7027574" + fx="-3.5797281" + fy="5.7027574" + r="6.5849319" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="336" + inkscape:window-y="209"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g5430" + transform="matrix(0.6104795,0,0,0.6104795,0.2795615,3.6094944)"> + <path + sodipodi:nodetypes="ccccccccc" + id="rect2382" + d="M 6.568759,4.9630825 C 7.2693093,6.8053873 8.4265615,8.0680324 10.145908,8.5402313 C 10.269766,8.6640898 10.269766,8.8635147 10.145907,8.9873732 L 3.3591104,14.57972 C 3.2352519,14.703578 3.035827,14.703579 2.9119685,14.579721 C 1.9658464,14.102742 1.1190897,13.352509 0.66979388,12.47807 C 0.54593545,12.354211 0.54593521,12.154785 0.66979373,12.030927 L 6.1216164,4.9630825 C 6.245475,4.839224 6.4449005,4.8392241 6.568759,4.9630825 z " + style="fill:url(#linearGradient5436);fill-opacity:1;stroke:#1d1d1d;stroke-width:1.11289036;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(1.1871826,0,0,1.1871826,1.6577923,-4.7200553)" + d="M 10.543467 7.9187799 A 3.2829957 3.2829957 0 1 1 3.9774756,7.9187799 A 3.2829957 3.2829957 0 1 1 10.543467 7.9187799 z" + sodipodi:ry="3.2829957" + sodipodi:rx="3.2829957" + sodipodi:cy="7.9187799" + sodipodi:cx="7.2604713" + id="path2231" + style="opacity:1;fill:url(#radialGradient5438);fill-opacity:1;stroke:#4c4c4c;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path3394" + d="M 4.3165626,13.206731 C 3.3222944,12.70548 2.4324481,11.917069 1.9602886,10.998132" + style="fill:none;fill-opacity:1;stroke:#1d1d1d;stroke-width:1.05088782;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(0.9463087,0,0,1,9.0885763,9.1039998)" + d="M 3.0052037 5.7027574 A 6.5849319 1.4584078 0 1 1 -10.16466,5.7027574 A 6.5849319 1.4584078 0 1 1 3.0052037 5.7027574 z" + sodipodi:ry="1.4584078" + sodipodi:rx="6.5849319" + sodipodi:cy="5.7027574" + sodipodi:cx="-3.5797281" + id="path2433" + style="opacity:0.36908515;fill:url(#radialGradient5440);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + </g> + <g + id="g3398" + transform="matrix(1.0416412,0,0,1.0416412,-0.3443542,-0.5656934)"> + <rect + ry="0.82081318" + rx="0.82081318" + inkscape:r_cy="true" + inkscape:r_cx="true" + y="8.6409912" + x="8.1562767" + height="7.0576959" + width="7.4291534" + id="rect1686" + style="color:#000000;fill:#a40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37145764;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <g + inkscape:r_cy="true" + inkscape:r_cx="true" + transform="matrix(0.4225522,0,0,0.4225522,6.497738,-3.4645944)" + id="g2254"> + <path + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.56729817;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 8,32 L 18,42" + id="path1377" + inkscape:r_cx="true" + inkscape:r_cy="true" /> + <path + inkscape:r_cy="true" + inkscape:r_cx="true" + id="path2252" + d="M 18,32 L 8,42" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.56729817;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/mic_25.svg b/sflphone_kde/icons/mic_25.svg new file mode 100644 index 0000000000..87011aea83 --- /dev/null +++ b/sflphone_kde/icons/mic_25.svg @@ -0,0 +1,378 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="mic_25.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3404"> + <stop + style="stop-color:#2d2d2d;stop-opacity:1;" + offset="0" + id="stop3406" /> + <stop + style="stop-color:#2d2d2d;stop-opacity:0;" + offset="1" + id="stop3408" /> + </linearGradient> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3362" + id="linearGradient5436" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + x1="16.037382" + y1="3.6340783" + x2="0.9781428" + y2="5.2185812" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="radialGradient5438" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + spreadMethod="pad" + cx="5.5446553" + cy="6.5377574" + fx="5.5446553" + fy="6.5377574" + r="3.7829957" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3404" + id="radialGradient5440" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + cx="-3.5797281" + cy="5.7027574" + fx="-3.5797281" + fy="5.7027574" + r="6.5849319" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="336" + inkscape:window-y="209"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g5430" + transform="matrix(0.6104795,0,0,0.6104795,0.2795615,3.6094944)"> + <path + sodipodi:nodetypes="ccccccccc" + id="rect2382" + d="M 6.568759,4.9630825 C 7.2693093,6.8053873 8.4265615,8.0680324 10.145908,8.5402313 C 10.269766,8.6640898 10.269766,8.8635147 10.145907,8.9873732 L 3.3591104,14.57972 C 3.2352519,14.703578 3.035827,14.703579 2.9119685,14.579721 C 1.9658464,14.102742 1.1190897,13.352509 0.66979388,12.47807 C 0.54593545,12.354211 0.54593521,12.154785 0.66979373,12.030927 L 6.1216164,4.9630825 C 6.245475,4.839224 6.4449005,4.8392241 6.568759,4.9630825 z " + style="fill:url(#linearGradient5436);fill-opacity:1;stroke:#1d1d1d;stroke-width:1.11289036;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(1.1871826,0,0,1.1871826,1.6577923,-4.7200553)" + d="M 10.543467 7.9187799 A 3.2829957 3.2829957 0 1 1 3.9774756,7.9187799 A 3.2829957 3.2829957 0 1 1 10.543467 7.9187799 z" + sodipodi:ry="3.2829957" + sodipodi:rx="3.2829957" + sodipodi:cy="7.9187799" + sodipodi:cx="7.2604713" + id="path2231" + style="opacity:1;fill:url(#radialGradient5438);fill-opacity:1;stroke:#4c4c4c;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path3394" + d="M 4.3165626,13.206731 C 3.3222944,12.70548 2.4324481,11.917069 1.9602886,10.998132" + style="fill:none;fill-opacity:1;stroke:#1d1d1d;stroke-width:1.05088782;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(0.9463087,0,0,1,9.0885763,9.1039998)" + d="M 3.0052037 5.7027574 A 6.5849319 1.4584078 0 1 1 -10.16466,5.7027574 A 6.5849319 1.4584078 0 1 1 3.0052037 5.7027574 z" + sodipodi:ry="1.4584078" + sodipodi:rx="6.5849319" + sodipodi:cy="5.7027574" + sodipodi:cx="-3.5797281" + id="path2433" + style="opacity:0.36908515;fill:url(#radialGradient5440);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + </g> + <path + sodipodi:nodetypes="csc" + id="path3488" + d="M 10.542589,12.383445 C 11.004591,11.293108 11.288527,9.7854478 11.288527,8.1334412 C 11.288527,6.4814347 11.004591,4.9737749 10.542589,3.8834374" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> +</svg> diff --git a/sflphone_kde/icons/mic_50.svg b/sflphone_kde/icons/mic_50.svg new file mode 100644 index 0000000000..20999f20b1 --- /dev/null +++ b/sflphone_kde/icons/mic_50.svg @@ -0,0 +1,383 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="mic_50.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3404"> + <stop + style="stop-color:#2d2d2d;stop-opacity:1;" + offset="0" + id="stop3406" /> + <stop + style="stop-color:#2d2d2d;stop-opacity:0;" + offset="1" + id="stop3408" /> + </linearGradient> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3362" + id="linearGradient5436" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + x1="16.037382" + y1="3.6340783" + x2="0.9781428" + y2="5.2185812" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="radialGradient5438" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + spreadMethod="pad" + cx="5.5446553" + cy="6.5377574" + fx="5.5446553" + fy="6.5377574" + r="3.7829957" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3404" + id="radialGradient5440" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + cx="-3.5797281" + cy="5.7027574" + fx="-3.5797281" + fy="5.7027574" + r="6.5849319" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="336" + inkscape:window-y="209"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g5430" + transform="matrix(0.6104795,0,0,0.6104795,0.2795615,3.6094944)"> + <path + sodipodi:nodetypes="ccccccccc" + id="rect2382" + d="M 6.568759,4.9630825 C 7.2693093,6.8053873 8.4265615,8.0680324 10.145908,8.5402313 C 10.269766,8.6640898 10.269766,8.8635147 10.145907,8.9873732 L 3.3591104,14.57972 C 3.2352519,14.703578 3.035827,14.703579 2.9119685,14.579721 C 1.9658464,14.102742 1.1190897,13.352509 0.66979388,12.47807 C 0.54593545,12.354211 0.54593521,12.154785 0.66979373,12.030927 L 6.1216164,4.9630825 C 6.245475,4.839224 6.4449005,4.8392241 6.568759,4.9630825 z " + style="fill:url(#linearGradient5436);fill-opacity:1;stroke:#1d1d1d;stroke-width:1.11289036;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(1.1871826,0,0,1.1871826,1.6577923,-4.7200553)" + d="M 10.543467 7.9187799 A 3.2829957 3.2829957 0 1 1 3.9774756,7.9187799 A 3.2829957 3.2829957 0 1 1 10.543467 7.9187799 z" + sodipodi:ry="3.2829957" + sodipodi:rx="3.2829957" + sodipodi:cy="7.9187799" + sodipodi:cx="7.2604713" + id="path2231" + style="opacity:1;fill:url(#radialGradient5438);fill-opacity:1;stroke:#4c4c4c;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path3394" + d="M 4.3165626,13.206731 C 3.3222944,12.70548 2.4324481,11.917069 1.9602886,10.998132" + style="fill:none;fill-opacity:1;stroke:#1d1d1d;stroke-width:1.05088782;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(0.9463087,0,0,1,9.0885763,9.1039998)" + d="M 3.0052037 5.7027574 A 6.5849319 1.4584078 0 1 1 -10.16466,5.7027574 A 6.5849319 1.4584078 0 1 1 3.0052037 5.7027574 z" + sodipodi:ry="1.4584078" + sodipodi:rx="6.5849319" + sodipodi:cy="5.7027574" + sodipodi:cx="-3.5797281" + id="path2433" + style="opacity:0.36908515;fill:url(#radialGradient5440);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + </g> + <path + sodipodi:nodetypes="csc" + id="path3488" + d="M 10.542589,12.383445 C 11.004591,11.293108 11.288527,9.7854478 11.288527,8.1334412 C 11.288527,6.4814347 11.004591,4.9737749 10.542589,3.8834374" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 12.431882,13.812413 C 13.049223,12.355474 13.428625,10.340896 13.428625,8.1334387 C 13.428625,5.9259814 13.049223,3.911404 12.431882,2.4544647" + id="path3494" + sodipodi:nodetypes="csc" /> + </g> +</svg> diff --git a/sflphone_kde/icons/mic_75.svg b/sflphone_kde/icons/mic_75.svg new file mode 100644 index 0000000000..52a576e128 --- /dev/null +++ b/sflphone_kde/icons/mic_75.svg @@ -0,0 +1,388 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="mic_75.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3404"> + <stop + style="stop-color:#2d2d2d;stop-opacity:1;" + offset="0" + id="stop3406" /> + <stop + style="stop-color:#2d2d2d;stop-opacity:0;" + offset="1" + id="stop3408" /> + </linearGradient> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3362" + id="linearGradient5436" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" + x1="16.037382" + y1="3.6340783" + x2="0.9781428" + y2="5.2185812" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="radialGradient5438" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" + spreadMethod="pad" + cx="5.5446553" + cy="6.5377574" + fx="5.5446553" + fy="6.5377574" + r="3.7829957" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3404" + id="radialGradient5440" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.2214765,0,4.4397305)" + cx="-3.5797281" + cy="5.7027574" + fx="-3.5797281" + fy="5.7027574" + r="6.5849319" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="20.635709" + inkscape:cy="3.1660007" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="336" + inkscape:window-y="209"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g5430" + transform="matrix(0.6104795,0,0,0.6104795,0.2795615,3.6094944)"> + <path + sodipodi:nodetypes="ccccccccc" + id="rect2382" + d="M 6.568759,4.9630825 C 7.2693093,6.8053873 8.4265615,8.0680324 10.145908,8.5402313 C 10.269766,8.6640898 10.269766,8.8635147 10.145907,8.9873732 L 3.3591104,14.57972 C 3.2352519,14.703578 3.035827,14.703579 2.9119685,14.579721 C 1.9658464,14.102742 1.1190897,13.352509 0.66979388,12.47807 C 0.54593545,12.354211 0.54593521,12.154785 0.66979373,12.030927 L 6.1216164,4.9630825 C 6.245475,4.839224 6.4449005,4.8392241 6.568759,4.9630825 z " + style="fill:url(#linearGradient5436);fill-opacity:1;stroke:#1d1d1d;stroke-width:1.11289036;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(1.1871826,0,0,1.1871826,1.6577923,-4.7200553)" + d="M 10.543467 7.9187799 A 3.2829957 3.2829957 0 1 1 3.9774756,7.9187799 A 3.2829957 3.2829957 0 1 1 10.543467 7.9187799 z" + sodipodi:ry="3.2829957" + sodipodi:rx="3.2829957" + sodipodi:cy="7.9187799" + sodipodi:cx="7.2604713" + id="path2231" + style="opacity:1;fill:url(#radialGradient5438);fill-opacity:1;stroke:#4c4c4c;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path3394" + d="M 4.3165626,13.206731 C 3.3222944,12.70548 2.4324481,11.917069 1.9602886,10.998132" + style="fill:none;fill-opacity:1;stroke:#1d1d1d;stroke-width:1.05088782;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(0.9463087,0,0,1,9.0885763,9.1039998)" + d="M 3.0052037 5.7027574 A 6.5849319 1.4584078 0 1 1 -10.16466,5.7027574 A 6.5849319 1.4584078 0 1 1 3.0052037 5.7027574 z" + sodipodi:ry="1.4584078" + sodipodi:rx="6.5849319" + sodipodi:cy="5.7027574" + sodipodi:cx="-3.5797281" + id="path2433" + style="opacity:0.36908515;fill:url(#radialGradient5440);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + </g> + <path + sodipodi:nodetypes="csc" + id="path3488" + d="M 10.542589,12.383445 C 11.004591,11.293108 11.288527,9.7854478 11.288527,8.1334412 C 11.288527,6.4814347 11.004591,4.9737749 10.542589,3.8834374" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 12.431882,13.812413 C 13.049223,12.355474 13.428625,10.340896 13.428625,8.1334387 C 13.428625,5.9259814 13.049223,3.911404 12.431882,2.4544647" + id="path3494" + sodipodi:nodetypes="csc" /> + <path + sodipodi:nodetypes="csc" + id="path3496" + d="M 14.269542,15.829782 C 15.106183,13.855286 15.620362,11.125061 15.620362,8.1334367 C 15.620362,5.1418134 15.106183,2.4115874 14.269542,0.43709227" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> +</svg> diff --git a/sflphone_kde/icons/missed.svg b/sflphone_kde/icons/missed.svg new file mode 100644 index 0000000000..c35efb7abf --- /dev/null +++ b/sflphone_kde/icons/missed.svg @@ -0,0 +1,862 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="missed.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2500"> + <stop + style="stop-color:#800000;stop-opacity:1;" + offset="0" + id="stop2502" /> + <stop + style="stop-color:#800000;stop-opacity:0;" + offset="1" + id="stop2504" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="24 : 12 : 1" + inkscape:persp3d-origin="12 : 8 : 1" + id="perspective127" /> + <linearGradient + id="linearGradient4357" + inkscape:collect="always"> + <stop + id="stop4359" + offset="0" + style="stop-color:#b00000;stop-opacity:1" /> + <stop + id="stop4361" + offset="1" + style="stop-color:#b02100;stop-opacity:0" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4269"> + <stop + style="stop-color:#b00014;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#b00014;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#70000c;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4167" + id="linearGradient4173" + x1="7.1249466" + y1="23.946518" + x2="20.06057" + y2="16.478132" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(6.313453e-2,-0.384275)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4357" + id="linearGradient4275" + x1="15.630395" + y1="22.874208" + x2="15.806232" + y2="6.6770978" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(9.8321849e-3,-1.1581503,1.1581503,9.8321849e-3,-9.5427776,27.711489)" /> + <linearGradient + id="linearGradient2278"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop2280" /> + <stop + style="stop-color:#fefee7;stop-opacity:0.89308178" + offset="1" + id="stop2282" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2286" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop2288" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + id="stop2292" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2294" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2392"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2394" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2396" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2390" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2304" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2306" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2386" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2310" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2312" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2380"> + <stop + id="stop2316" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2318" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2376"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2322" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2324" /> + </linearGradient> + <linearGradient + id="linearGradient2326"> + <stop + id="stop2328" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2330" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2332" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2334" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2336" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2338" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2340" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient2342" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" /> + <linearGradient + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" + gradientUnits="userSpaceOnUse" + y2="8.5305319" + x2="15.630395" + y1="22.874208" + x1="15.630395" + id="linearGradient2444" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2442" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.1362892,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2440" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2438" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-1.9107675,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2436" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.9220986,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2434" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2428"> + <stop + id="stop2430" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2432" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2424" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2426" /> + </linearGradient> + <linearGradient + id="linearGradient2416"> + <stop + id="stop2418" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2420" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <radialGradient + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient4051" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1414" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient1412" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient1410" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient1408" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient1406" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1362"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1364" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop1366" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + id="stop1370" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1372" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient1374"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop1376" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop1378" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1380" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1382" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1384" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1386" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1388" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2325" + x1="15.630395" + y1="22.874208" + x2="15.806232" + y2="6.6770978" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2224" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2322" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + id="linearGradient2320" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2318" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + id="linearGradient2316" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + id="linearGradient2314" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2308"> + <stop + id="stop2310" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2312" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2302"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2304" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2306" /> + </linearGradient> + <linearGradient + id="linearGradient2296"> + <stop + id="stop2298" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2300" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + id="stop4047" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop4049" + offset="1" + style="stop-color:#fcfbcb;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient2506" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3931" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3933" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3935" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3937" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3939" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3941" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3943" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3945" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3947" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2500" + id="linearGradient3949" + gradientUnits="userSpaceOnUse" + x1="4.9409747" + y1="16.528652" + x2="6.2092013" + y2="-3.3282857" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.4" + inkscape:cx="16.277456" + inkscape:cy="16.683708" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1679" + inkscape:window-height="976" + inkscape:window-x="1" + inkscape:window-y="48" + showgrid="false"> + <sodipodi:guide + orientation="horizontal" + position="8.0357143" + id="guide3144" /> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:1;fill:url(#linearGradient4275);fill-opacity:1;stroke:none;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M -3.0911512,13.758869 L 8.3817787,13.856269 L 8.3501307,17.584066 L 17.106315,9.4059846 L 8.4902397,1.0804202 L 8.4585927,4.8082179 L -3.0143372,4.7108178 L -3.0911512,13.758869 z" + id="rect4262" /> + <g + id="g2407" + inkscape:label="Calque 1" + transform="matrix(-0.5300637,-0.8479578,0.8479578,-0.5300637,12.117465,28.739892)" + style="fill:url(#linearGradient2506);fill-opacity:1"> + <g + transform="translate(14.730114,-3.4355522)" + inkscape:label="Calque 1" + id="g2364" + style="fill:url(#linearGradient3949);fill-opacity:1"> + <g + id="g2446" + inkscape:label="Calque 1" + transform="translate(7.9455775,4.2707653)" + style="fill:url(#linearGradient3947);fill-opacity:1"> + <g + style="fill:url(#linearGradient3933);fill-opacity:1;stroke:#000000;stroke-opacity:0.44968555" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z" + style="opacity:1;fill:url(#linearGradient3931);fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451" + style="fill:url(#linearGradient3945);fill-opacity:1"> + <path + style="opacity:1;fill:url(#linearGradient3935);fill-opacity:1;stroke:#561500;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient3937);fill-opacity:1;stroke:#561500;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient3939);fill-opacity:1;stroke:#561500;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient3941);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient3943);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/outgoing.svg b/sflphone_kde/icons/outgoing.svg new file mode 100644 index 0000000000..e6a945c28c --- /dev/null +++ b/sflphone_kde/icons/outgoing.svg @@ -0,0 +1,184 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="outgoing.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3003"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop3005" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop3007" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2607"> + <stop + style="stop-color:#008000;stop-opacity:1;" + offset="0" + id="stop2609" /> + <stop + style="stop-color:#008000;stop-opacity:0;" + offset="1" + id="stop2611" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="24 : 12 : 1" + inkscape:persp3d-origin="12 : 8 : 1" + id="perspective4177" /> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2607" + id="linearGradient2613" + x1="8.7504473" + y1="9.6810875" + x2="26.544411" + y2="9.906394" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8461123,0,0,1,1.3448205,-0.1767767)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3003" + id="linearGradient3009" + x1="29.820433" + y1="2.1517653" + x2="-5.1534119" + y2="5.9291029" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="18.87396" + inkscape:cy="2.756874" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1331" + inkscape:window-height="922" + inkscape:window-x="169" + inkscape:window-y="24" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:1;fill:url(#linearGradient2613);fill-opacity:1;stroke:none;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 8.738971,4.8213345 L 17.312996,4.8213345 L 17.312996,0.77691046 L 23.804372,9.7296169 L 17.312996,18.682323 L 17.312996,14.637898 L 8.738971,14.637898 L 8.738971,4.8213345 z" + id="rect4262" /> + <g + id="g4160" + transform="matrix(-0.3526524,-0.8063782,0.8063782,-0.3526524,5.2455765,28.387663)" + style="fill:url(#linearGradient3009);fill-opacity:1"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path3153" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + style="opacity:1;fill:url(#linearGradient3009);fill-opacity:1;stroke:#0f5600;stroke-width:0.62500000000000000;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path3161" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + style="opacity:1;fill:url(#linearGradient3009);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4140" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + style="opacity:1;fill:url(#linearGradient3009);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4246" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.8978659,7.4805434 C 9.1610575,8.1588394 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + style="opacity:1;fill:url(#linearGradient3009);fill-opacity:1;stroke:none;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4258" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + style="opacity:1;fill:url(#linearGradient3009);fill-opacity:1;stroke:none;stroke-width:0.57204323999999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/rec_call.svg b/sflphone_kde/icons/rec_call.svg new file mode 100644 index 0000000000..45b6bf69ab --- /dev/null +++ b/sflphone_kde/icons/rec_call.svg @@ -0,0 +1,1406 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="rec_call.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="24 : 12 : 1" + inkscape:persp3d-origin="12 : 8 : 1" + id="perspective4757" /> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4181" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4195" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4203" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4256" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2491" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="12.113755" + x2="7.293807" + y1="16.110582" + x1="11.408385" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2489" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2487" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.949513" + x2="2.7672646" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2485" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2483" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2416"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2418" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2420" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + id="stop2424" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2426" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2428"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2430" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2432" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2434" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.9220986,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2436" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.9107675,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2438" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2440" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.1362892,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2442" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2444" + x1="15.630395" + y1="22.874208" + x2="15.630395" + y2="8.5305319" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" /> + <radialGradient + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient2342" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2340" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2338" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2336" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2334" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2332" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2326"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2328" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2330" /> + </linearGradient> + <linearGradient + id="linearGradient2320"> + <stop + id="stop2322" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2324" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2314"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2316" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2318" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2312" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2310" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2308" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2306" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2304" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2302" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2296"> + <stop + id="stop2298" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2300" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2292" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2294" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + id="stop2286" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2288" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2278"> + <stop + id="stop2280" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop2282" + offset="1" + style="stop-color:#fefee7;stop-opacity:0.89308178" /> + </linearGradient> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="355.44769" + x2="189.20502" + y1="118.36168" + x1="192.86734" + id="linearGradient2702" + xlink:href="#linearGradient3169" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3308"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop3310" /> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="1" + id="stop3312" /> + </linearGradient> + <linearGradient + id="linearGradient3289" + inkscape:collect="always"> + <stop + id="stop3291" + offset="0" + style="stop-color:#999999;stop-opacity:1" /> + <stop + id="stop3293" + offset="1" + style="stop-color:#000000;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3193"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop3195" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop3197" /> + </linearGradient> + <linearGradient + id="linearGradient3181"> + <stop + id="stop3183" + offset="0" + style="stop-color:#ff0000;stop-opacity:1;" /> + <stop + style="stop-color:#ff0000;stop-opacity:0.65271967" + offset="0.11529652" + id="stop3185" /> + <stop + id="stop3187" + offset="1" + style="stop-color:#000000;stop-opacity:0.15481172" /> + </linearGradient> + <linearGradient + id="linearGradient3169"> + <stop + id="stop3171" + offset="0" + style="stop-color:#ff0000;stop-opacity:1;" /> + <stop + id="stop3173" + offset="1" + style="stop-color:#ff0000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2385"> + <stop + style="stop-color:#ff0000;stop-opacity:1;" + offset="0" + id="stop2387" /> + <stop + id="stop3175" + offset="0.87037039" + style="stop-color:#ff0000;stop-opacity:0.55172414;" /> + <stop + style="stop-color:#ff0000;stop-opacity:1;" + offset="1" + id="stop2389" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective10" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2385" + id="radialGradient3163" + cx="184.85791" + cy="163.42795" + fx="184.85791" + fy="163.42795" + r="140.91121" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3181" + id="linearGradient3179" + x1="175.76654" + y1="316.97113" + x2="184.85791" + y2="23.016739" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3193" + id="linearGradient3199" + x1="204.55589" + y1="262.45413" + x2="204.55589" + y2="62.412689" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3193" + id="linearGradient3203" + gradientUnits="userSpaceOnUse" + x1="175.13184" + y1="259.03506" + x2="226.90887" + y2="65.800499" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3193" + id="linearGradient3211" + gradientUnits="userSpaceOnUse" + x1="204.55589" + y1="262.45413" + x2="204.55589" + y2="62.412689" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3193" + id="linearGradient3213" + gradientUnits="userSpaceOnUse" + x1="204.55589" + y1="262.45413" + x2="204.55589" + y2="62.412689" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3289" + id="linearGradient3287" + gradientUnits="userSpaceOnUse" + x1="224.26379" + y1="259.7438" + x2="172.07999" + y2="66.61824" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3289" + id="linearGradient3301" + gradientUnits="userSpaceOnUse" + x1="224.26379" + y1="259.7438" + x2="172.07999" + y2="66.61824" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,376.2049,402.98248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3308" + id="linearGradient3306" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,306.50437,364.59668)" + x1="160.2529" + y1="-5.1353641" + x2="224.82684" + y2="168.2903" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3289" + id="linearGradient3322" + gradientUnits="userSpaceOnUse" + x1="224.26379" + y1="259.7438" + x2="172.07999" + y2="66.61824" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3193" + id="linearGradient3324" + gradientUnits="userSpaceOnUse" + x1="175.13184" + y1="259.03506" + x2="226.90887" + y2="65.800499" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3308" + id="linearGradient3326" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,747.63347,397.26819)" + x1="160.2529" + y1="-5.1353641" + x2="224.82684" + y2="168.2903" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3289" + id="linearGradient3336" + gradientUnits="userSpaceOnUse" + x1="224.26379" + y1="259.7438" + x2="172.07999" + y2="66.61824" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3193" + id="linearGradient3338" + gradientUnits="userSpaceOnUse" + x1="175.13184" + y1="259.03506" + x2="226.90887" + y2="65.800499" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3308" + id="linearGradient3340" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,558.73494,665.96877)" + x1="160.2529" + y1="-5.1353641" + x2="224.82684" + y2="168.2903" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3289" + id="linearGradient3360" + gradientUnits="userSpaceOnUse" + x1="224.26379" + y1="259.7438" + x2="172.07999" + y2="66.61824" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3193" + id="linearGradient2641" + gradientUnits="userSpaceOnUse" + x1="175.13184" + y1="259.03506" + x2="226.90887" + y2="65.800499" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3308" + id="linearGradient3364" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,558.73494,665.96877)" + x1="160.2529" + y1="-5.1353641" + x2="224.82684" + y2="168.2903" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3289" + id="linearGradient3366" + gradientUnits="userSpaceOnUse" + x1="224.26379" + y1="259.7438" + x2="172.07999" + y2="66.61824" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3193" + id="linearGradient3368" + gradientUnits="userSpaceOnUse" + x1="175.13184" + y1="259.03506" + x2="226.90887" + y2="65.800499" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3308" + id="linearGradient2646" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,747.63347,397.26819)" + x1="160.2529" + y1="-5.1353641" + x2="224.82684" + y2="168.2903" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3289" + id="linearGradient3372" + gradientUnits="userSpaceOnUse" + x1="224.26379" + y1="259.7438" + x2="172.07999" + y2="66.61824" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3193" + id="linearGradient3374" + gradientUnits="userSpaceOnUse" + x1="175.13184" + y1="259.03506" + x2="226.90887" + y2="65.800499" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2845" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2843" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2841" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2839" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2837" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2831"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2833" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2835" /> + </linearGradient> + <linearGradient + id="linearGradient2825"> + <stop + id="stop2827" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2829" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2819"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2821" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2823" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2817" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2815" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2813" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2811" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2809" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2807" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2801"> + <stop + id="stop2803" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2805" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2795"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2797" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2799" /> + </linearGradient> + <linearGradient + id="linearGradient2789"> + <stop + id="stop2791" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2793" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2783"> + <stop + id="stop2785" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop2787" + offset="1" + style="stop-color:#fcfbcb;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + id="stop3364" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop3366" + offset="1" + style="stop-color:#ffffff;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient3370"> + <stop + id="stop3372" + offset="0" + style="stop-color:#d7d7d7;stop-opacity:1;" /> + <stop + id="stop3374" + offset="1" + style="stop-color:#7c7c7c;stop-opacity:1;" /> + </linearGradient> + <inkscape:perspective + id="perspective4283" + inkscape:persp3d-origin="8 : 5.3333333 : 1" + inkscape:vp_z="16 : 8 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 8 : 1" + sodipodi:type="inkscape:persp3d" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="16.739393" + x2="32.578228" + y1="-0.80084854" + x1="2.965755" + id="linearGradient2439" + xlink:href="#linearGradient2433" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2433" + inkscape:collect="always"> + <stop + id="stop2435" + offset="0" + style="stop-color:#008000;stop-opacity:1;" /> + <stop + id="stop2437" + offset="1" + style="stop-color:#008000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2770" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2768" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2766" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2764" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2762" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2917" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2919" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="2.7672646" + y2="12.949513" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2921" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2923" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="11.408385" + y1="16.110582" + x2="7.293807" + y2="12.113755" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2925" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="7.919596" + inkscape:cx="15.568279" + inkscape:cy="13.617397" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1600" + inkscape:window-height="926" + inkscape:window-x="0" + inkscape:window-y="220" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="11.237947" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g2364" + inkscape:label="Calque 1" + transform="translate(14.730114,-3.4355522)"> + <g + transform="translate(7.9455775,4.2707653)" + inkscape:label="Calque 1" + id="g2446"> + <g + id="g2181" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + style="fill:none;stroke:#000000;stroke-opacity:0.44968555"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z " + id="path2183" + sodipodi:nodetypes="csccczccsccccc" /> + </g> + <g + id="g2451" + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path2453" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z " + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#0f5600;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2455" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z " + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2457" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z " + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2459" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z " + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2461" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z " + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> + </g> + <path + sodipodi:nodetypes="csc" + id="path3488" + d="M 18.019888,12.625004 C 18.48189,11.534667 18.765826,10.027007 18.765826,8.3750001 C 18.765826,6.7229936 18.48189,5.2153338 18.019888,4.1249963" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:0.50400000000000000;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;visibility:visible;display:inline;overflow:visible" /> + <g + id="g2892" + inkscape:label="Calque 1" + transform="translate(-53.149937,4.9260696)"> + <g + transform="matrix(4.9064853e-2,-8.3536268e-2,8.8523433e-2,4.8433051e-2,48.54228,7.2086084)" + inkscape:label="Layer 1" + id="g2651"> + <g + id="g3342" + transform="matrix(0.4480735,0,0,0.4170774,98.907461,118.01666)"> + <path + transform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,306.50437,364.59668)" + d="M 301.02545,162.41779 A 100.0051,100.0051 0 1 1 101.01526,162.41779 A 100.0051,100.0051 0 1 1 301.02545,162.41779 z" + sodipodi:ry="100.0051" + sodipodi:rx="100.0051" + sodipodi:cy="162.41779" + sodipodi:cx="201.02036" + id="path3209" + style="opacity:1;fill:url(#linearGradient3372);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + transform="matrix(0.9122383,-0.2444335,0.2444335,0.9122383,-91.758986,25.004372)" + d="M 301.02545,162.41779 A 100.0051,100.0051 0 1 1 101.01526,162.41779 A 100.0051,100.0051 0 1 1 301.02545,162.41779 z" + sodipodi:ry="100.0051" + sodipodi:rx="100.0051" + sodipodi:cy="162.41779" + sodipodi:cx="201.02036" + id="path3201" + style="opacity:0.24886876;fill:url(#linearGradient3374);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + transform="matrix(-1.1122783,-0.2980341,0.2980341,-1.1122783,306.50437,364.59668)" + d="M 279.30514,162.41779 A 78.284782,79.05574 0 1 1 122.73557,162.41779 A 78.284782,79.05574 0 1 1 279.30514,162.41779 z" + sodipodi:ry="79.05574" + sodipodi:rx="78.284782" + sodipodi:cy="162.41779" + sodipodi:cx="201.02036" + id="path3295" + style="opacity:0.59728507;fill:url(#linearGradient2702);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/refuse.svg b/sflphone_kde/icons/refuse.svg new file mode 100644 index 0000000000..a0d5b756df --- /dev/null +++ b/sflphone_kde/icons/refuse.svg @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.43" + version="1.0" + sodipodi:docbase="/home/pierre/SFLPhone-0.8/pixmaps" + sodipodi:docname="refuse.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4250"> + <stop + style="stop-color:#b00014;stop-opacity:1;" + offset="0" + id="stop4252" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4254" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#b00014;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#70000c;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4167" + id="linearGradient4173" + x1="7.1249466" + y1="23.946518" + x2="20.06057" + y2="16.478132" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(6.313453e-2,-0.384275)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4181" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4195" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4203" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4250" + id="linearGradient4256" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4250" + id="linearGradient4260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.2" + inkscape:cx="21.034591" + inkscape:cy="10.811622" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="0" + inkscape:window-y="25"> + <sodipodi:guide + orientation="horizontal" + position="8.0357143" + id="guide3144" /> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#5c0008;stroke-width:4.48463202;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 3.7084718,3.5269014 L 20.778737,20.597165" + id="path1332" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#5c0008;stroke-width:4.48463202;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 3.7084715,20.597165 L 20.778737,3.5269017" + id="path1334" + sodipodi:nodetypes="cc" /> + <g + id="g4160" + transform="matrix(0.786778,0,0,0.786778,-0.726628,4.603105)"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path3153" + d="M 16.100095,4.59375 C 10.946289,4.7477067 6.5661943,5.7999634 2.7626907,7.28125 L 2.5751907,10.227679 C 3.1252737,10.972881 4.3542457,11.508929 5.7626907,11.508929 C 7.1318907,11.508929 8.3164327,11.004648 8.8876907,10.290179 L 8.8876907,9.1875 C 11.3092,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 21.34842,8.6842603 23.771732,9.15625 L 23.771732,10.165179 C 24.34299,10.879648 25.527531,11.383929 26.896732,11.383929 C 28.305177,11.383929 29.5029,10.847881 30.052982,10.102679 L 29.865482,7.15625 C 25.053357,5.4212686 21.355113,4.6256244 16.100095,4.59375 z " + style="opacity:1;fill:url(#linearGradient4203);fill-opacity:1;stroke:#5c0008;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path3161" + d="M 5.7481338,13.019293 C 7.1288536,13.019293 8.3245284,12.610489 8.9005927,12.01696 L 8.9005927,10.430989 C 8.1637843,11.109285 7.1297974,11.494948 5.7481338,11.494948 C 4.3260338,11.494948 3.32872,11.13019 2.5533599,10.48174 L 2.5533599,11.966208 C 3.108071,12.585269 4.3278389,13.019293 5.7481338,13.019293 z " + style="opacity:1;fill:url(#linearGradient4181);fill-opacity:1;stroke:#5c0008;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4140" + d="M 26.931282,12.944669 C 28.312002,12.944669 29.507677,12.535865 30.083741,11.942336 L 30.083741,10.356365 C 29.346933,11.034661 28.312946,11.420324 26.931282,11.420324 C 25.509182,11.420324 24.511868,11.055566 23.736508,10.407116 L 23.736508,11.891584 C 24.291219,12.510645 25.510987,12.944669 26.931282,12.944669 z " + style="opacity:1;fill:url(#linearGradient4195);fill-opacity:1;stroke:#5c0008;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4246" + d="M 5.9721413,11.157918 C 7.3528611,11.157918 8.0434596,10.73333 8.6195239,10.139801 L 9.1877347,7.4805434 C 8.4509263,8.1588394 7.4169394,8.5445024 6.0352758,8.5445024 C 4.6131758,8.5445024 3.789482,8.1797444 3.0141219,7.5312944 L 2.7773674,10.104833 C 3.3320785,10.723894 4.5518464,11.157918 5.9721413,11.157918 z " + style="opacity:1;fill:url(#linearGradient4256);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path4258" + d="M 26.495901,11.055324 C 25.115181,11.055324 24.424582,10.630736 23.848518,10.037207 L 23.280307,7.3779497 C 24.017116,8.0562457 25.051103,8.4419087 26.432766,8.4419087 C 27.854866,8.4419087 28.67856,8.0771507 29.45392,7.4287007 L 29.690675,10.002239 C 29.135964,10.6213 27.916196,11.055324 26.495901,11.055324 z " + style="opacity:1;fill:url(#linearGradient4260);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/ring.svg b/sflphone_kde/icons/ring.svg new file mode 100644 index 0000000000..0dec317e11 --- /dev/null +++ b/sflphone_kde/icons/ring.svg @@ -0,0 +1,999 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="ring.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="24 : 12 : 1" + inkscape:persp3d-origin="12 : 8 : 1" + id="perspective7024" /> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + id="linearGradient2278"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop2280" /> + <stop + style="stop-color:#fefee7;stop-opacity:0.89308178" + offset="1" + id="stop2282" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2286" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop2288" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + id="stop2292" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2294" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2296"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2298" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2300" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2302" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2304" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2306" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2308" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2310" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2312" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2314"> + <stop + id="stop2316" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2318" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2320"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2322" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2324" /> + </linearGradient> + <linearGradient + id="linearGradient2326"> + <stop + id="stop2328" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2330" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2332" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2334" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2336" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2338" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2340" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient2342" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" /> + <linearGradient + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" + gradientUnits="userSpaceOnUse" + y2="8.5305319" + x2="15.630395" + y1="22.874208" + x1="15.630395" + id="linearGradient2444" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2442" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.1362892,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient2440" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2438" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-1.9107675,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient2436" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.9220986,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient2434" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2428"> + <stop + id="stop2430" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2432" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2424" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop2426" /> + </linearGradient> + <linearGradient + id="linearGradient2416"> + <stop + id="stop2418" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2420" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2483" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2485" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="2.7672646" + y2="12.949513" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2487" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2489" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="11.408385" + y1="16.110582" + x2="7.293807" + y2="12.113755" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2491" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient2393" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2391" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2389" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2387" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2385" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2383" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2377"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2379" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2381" /> + </linearGradient> + <linearGradient + id="linearGradient2371"> + <stop + id="stop2373" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2375" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2365"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2367" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2369" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2363" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2361" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2359" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2357" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2355" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2353" + x1="15.630395" + y1="22.874208" + x2="15.806232" + y2="6.6770978" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2351" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2349" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + id="linearGradient2347" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2345" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + id="linearGradient2343" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + id="linearGradient2341" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2335"> + <stop + id="stop2337" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2339" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2329"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2331" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2333" /> + </linearGradient> + <linearGradient + id="linearGradient2323"> + <stop + id="stop2325" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2327" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2317"> + <stop + id="stop2319" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop2321" + offset="1" + style="stop-color:#fcfbcb;stop-opacity:1" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="13.031222" + inkscape:cy="10.297614" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1032" + inkscape:window-height="893" + inkscape:window-x="81" + inkscape:window-y="53" + showgrid="false"> + <sodipodi:guide + orientation="vertical" + position="11.294643" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g2466" + style="opacity:0.43925234;stroke:#000000;stroke-opacity:1" + transform="translate(-0.243068,-0.1767767)"> + <path + sodipodi:nodetypes="csc" + id="path2460" + d="M 5.0151915,4.7165621 C 7.3887105,1.7063043 12.651556,0.67372518 16.762612,2.4116984 C 18.132964,2.9910227 19.11915,3.7131419 19.910323,4.7165611" + style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.14272487;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csc" + id="path2462" + d="M 7.3705045,6.5535915 C 9.0033055,4.4827619 12.623746,3.7724256 15.451841,4.9680197 C 16.39454,5.3665509 17.072961,5.8633143 17.617228,6.5535907" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.78610826;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csc" + id="path2464" + d="M 8.9856345,8.3807798 C 10.075244,6.9988638 12.491253,6.5248389 14.378511,7.3226878 C 15.007597,7.5886378 15.460324,7.9201408 15.823527,8.3807788" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.52458936;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <path + style="fill:none;fill-opacity:1;stroke:#137300;stroke-width:1.14272487;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 4.7534689,4.2728302 C 7.1269878,1.2625724 12.389832,0.22999334 16.500888,1.9679665 C 17.87124,2.5472908 18.857426,3.26941 19.648599,4.2728292" + id="path2210" + sodipodi:nodetypes="csc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#1fc200;stroke-width:0.78610826;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 7.1087815,6.1098596 C 8.7415829,4.03903 12.362022,3.3286937 15.190117,4.5242878 C 16.132816,4.922819 16.811237,5.4195824 17.355504,6.1098588" + id="path3184" + sodipodi:nodetypes="csc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#6dff50;stroke-width:0.52458936;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 8.7239117,7.9370475 C 9.8135207,6.5551319 12.229529,6.081107 14.116787,6.8789564 C 14.745873,7.1449061 15.1986,7.4764085 15.561803,7.937047" + id="path3186" + sodipodi:nodetypes="csc" /> + <g + id="g2448" + inkscape:label="Calque 1" + transform="matrix(-0.5,0.8660254,-0.8660254,-0.5,28.365079,10.128174)"> + <g + transform="translate(14.730114,-3.4355522)" + inkscape:label="Calque 1" + id="g2364"> + <g + id="g2446" + inkscape:label="Calque 1" + transform="translate(7.9455775,4.2707653)"> + <g + style="fill:none;stroke:#000000;stroke-opacity:0.44968555" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + id="g2181"> + <path + sodipodi:nodetypes="csccczccsccccc" + id="path2183" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" /> + </g> + <g + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)" + id="g2451"> + <path + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#0f5600;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z" + id="path2453" + sodipodi:nodetypes="cccsccsccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z" + id="path2455" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#0f5600;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z" + id="path2457" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z" + id="path2459" + sodipodi:nodetypes="cccsccc" /> + <path + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z" + id="path2461" + sodipodi:nodetypes="cccsccc" /> + </g> + </g> + </g> + </g> + <g + id="g3440" + style="opacity:0.43925237;stroke:#000000;stroke-opacity:1" + transform="matrix(-1,0,0,-1,24.45343,24.686251)"> + <path + sodipodi:nodetypes="csc" + id="path3442" + d="M 5.0151915,4.7165621 C 7.3887105,1.7063043 12.651556,0.67372518 16.762612,2.4116984 C 18.132964,2.9910227 19.11915,3.7131419 19.910323,4.7165611" + style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.14272487;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csc" + id="path3444" + d="M 7.3705045,6.5535915 C 9.0033055,4.4827619 12.623746,3.7724256 15.451841,4.9680197 C 16.39454,5.3665509 17.072961,5.8633143 17.617228,6.5535907" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.78610826;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csc" + id="path3446" + d="M 8.9856345,8.3807798 C 10.075244,6.9988638 12.491253,6.5248389 14.378511,7.3226878 C 15.007597,7.5886378 15.460324,7.9201408 15.823527,8.3807788" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.52458936;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <path + style="fill:none;fill-opacity:1;stroke:#137300;stroke-width:1.14272487;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 19.456893,19.611644 C 17.083374,22.621902 11.82053,23.654481 7.709474,21.916508 C 6.339122,21.337184 5.352936,20.615064 4.561763,19.611645" + id="path3448" + sodipodi:nodetypes="csc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#1fc200;stroke-width:0.78610826;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 17.10158,17.774615 C 15.468779,19.845444 11.84834,20.555781 9.020245,19.360187 C 8.077546,18.961655 7.399125,18.464892 6.854858,17.774616" + id="path3450" + sodipodi:nodetypes="csc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#6dff50;stroke-width:0.52458936;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 15.48645,15.947427 C 14.396841,17.329343 11.980833,17.803367 10.093575,17.005518 C 9.464489,16.739568 9.011762,16.408066 8.648559,15.947427" + id="path3452" + sodipodi:nodetypes="csc" /> + </g> +</svg> diff --git a/sflphone_kde/icons/sflphone.png b/sflphone_kde/icons/sflphone.png new file mode 100644 index 0000000000000000000000000000000000000000..50c1483ac152972fa6d993b6823b5d247dd258bc GIT binary patch literal 1523 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 literal 0 HcmV?d00001 diff --git a/sflphone_kde/icons/speaker.svg b/sflphone_kde/icons/speaker.svg new file mode 100644 index 0000000000..ea9aaf6f11 --- /dev/null +++ b/sflphone_kde/icons/speaker.svg @@ -0,0 +1,426 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="speaker.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3417"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3419" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3421" /> + </linearGradient> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3362" + id="linearGradient3368" + x1="16.037382" + y1="3.6340783" + x2="0.9781428" + y2="5.2185812" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="radialGradient3392" + cx="5.5446553" + cy="6.5377574" + fx="5.5446553" + fy="6.5377574" + r="3.7829957" + gradientUnits="userSpaceOnUse" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="linearGradient3415" + x1="2.3125" + y1="4.3125" + x2="3.8125" + y2="11.78125" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,8.349934e-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3423" + x1="8.2358475" + y1="15.55225" + x2="4.424221" + y2="3.4272494" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3429" + gradientUnits="userSpaceOnUse" + x1="8.2358475" + y1="15.55225" + x2="4.2843809" + y2="2.2386067" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="linearGradient3431" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,8.349934e-2)" + x1="2.3125" + y1="4.3125" + x2="3.8125" + y2="11.78125" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="2.7222828" + inkscape:cy="3.2854021" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="336" + inkscape:window-y="209"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g3398" + transform="matrix(1.0416412,0,0,1.0416412,-0.3396375,-0.3598217)"> + <rect + ry="0.82081318" + rx="0.82081318" + inkscape:r_cy="true" + inkscape:r_cx="true" + y="8.6409912" + x="8.1562767" + height="7.0576959" + width="7.4291534" + id="rect1686" + style="color:#000000;fill:#a40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37145764;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <g + inkscape:r_cy="true" + inkscape:r_cx="true" + transform="matrix(0.4225522,0,0,0.4225522,6.497738,-3.4645944)" + id="g2254"> + <path + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.56729817;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 8,32 L 18,42" + id="path1377" + inkscape:r_cx="true" + inkscape:r_cy="true" /> + <path + inkscape:r_cy="true" + inkscape:r_cx="true" + id="path2252" + d="M 18,32 L 8,42" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.56729817;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> + </g> + <g + id="g4455" + transform="translate(0,0.8424875)"> + <g + style="stroke:#3a3a3a;stroke-opacity:1" + transform="matrix(0.8938767,0,0,0.8938767,-0.7849478,0.2391309)" + id="g3425"> + <path + style="opacity:1;fill:url(#linearGradient3429);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 8.2992212,14.492981 C 6.403097,12.241903 4.5069721,9.9908266 2.6108471,7.7397495 C 4.5069721,5.4886726 6.4030966,3.2375952 8.2992208,0.98651768 C 8.2992208,5.4886717 8.2992212,9.9908266 8.2992212,14.492981 z " + id="path3406" /> + <rect + style="opacity:1;fill:url(#linearGradient3431);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3404" + width="3" + height="5.6875" + x="1.9375" + y="4.8959994" + rx="0.23693162" + ry="0.23693162" /> + </g> + <path + sodipodi:nodetypes="ccccc" + id="rect2217" + d="M 4.0668759,5.5560217 L 6.1678675,3.589381 L 6.1678675,6.1765082 L 4.0447788,7.2813625 L 4.0668759,5.5560217 z " + style="fill:#f5f5f5;fill-opacity:1;stroke:none;stroke-width:0.62258136;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/speaker_25.svg b/sflphone_kde/icons/speaker_25.svg new file mode 100644 index 0000000000..4935e9b77d --- /dev/null +++ b/sflphone_kde/icons/speaker_25.svg @@ -0,0 +1,398 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="speaker_25.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3417"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3419" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3421" /> + </linearGradient> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3362" + id="linearGradient3368" + x1="16.037382" + y1="3.6340783" + x2="0.9781428" + y2="5.2185812" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="radialGradient3392" + cx="5.5446553" + cy="6.5377574" + fx="5.5446553" + fy="6.5377574" + r="3.7829957" + gradientUnits="userSpaceOnUse" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="linearGradient3415" + x1="2.3125" + y1="4.3125" + x2="3.8125" + y2="11.78125" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,8.349934e-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3423" + x1="8.2358475" + y1="15.55225" + x2="4.424221" + y2="3.4272494" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3429" + gradientUnits="userSpaceOnUse" + x1="8.2358475" + y1="15.55225" + x2="4.2843809" + y2="2.2386067" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="linearGradient3431" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,8.349934e-2)" + x1="2.3125" + y1="4.3125" + x2="3.8125" + y2="11.78125" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="2.7222828" + inkscape:cy="3.2854021" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="336" + inkscape:window-y="209"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g4455" + transform="translate(0,0.8424875)"> + <g + style="stroke:#3a3a3a;stroke-opacity:1" + transform="matrix(0.8938767,0,0,0.8938767,-0.7849478,0.2391309)" + id="g3425"> + <path + style="opacity:1;fill:url(#linearGradient3429);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 8.2992212,14.492981 C 6.403097,12.241903 4.5069721,9.9908266 2.6108471,7.7397495 C 4.5069721,5.4886726 6.4030966,3.2375952 8.2992208,0.98651768 C 8.2992208,5.4886717 8.2992212,9.9908266 8.2992212,14.492981 z " + id="path3406" /> + <rect + style="opacity:1;fill:url(#linearGradient3431);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3404" + width="3" + height="5.6875" + x="1.9375" + y="4.8959994" + rx="0.23693162" + ry="0.23693162" /> + </g> + <path + sodipodi:nodetypes="ccccc" + id="rect2217" + d="M 4.0668759,5.5560217 L 6.1678675,3.589381 L 6.1678675,6.1765082 L 4.0447788,7.2813625 L 4.0668759,5.5560217 z " + style="fill:#f5f5f5;fill-opacity:1;stroke:none;stroke-width:0.62258136;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="csc" + id="path3488" + d="M 10.523613,12.125008 C 10.985616,11.034671 11.269551,9.527011 11.269551,7.8750044 C 11.269551,6.2229979 10.985616,4.7153381 10.523613,3.6250006" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> +</svg> diff --git a/sflphone_kde/icons/speaker_50.svg b/sflphone_kde/icons/speaker_50.svg new file mode 100644 index 0000000000..e71a571929 --- /dev/null +++ b/sflphone_kde/icons/speaker_50.svg @@ -0,0 +1,403 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="speaker_50.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3417"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3419" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3421" /> + </linearGradient> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3362" + id="linearGradient3368" + x1="16.037382" + y1="3.6340783" + x2="0.9781428" + y2="5.2185812" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="radialGradient3392" + cx="5.5446553" + cy="6.5377574" + fx="5.5446553" + fy="6.5377574" + r="3.7829957" + gradientUnits="userSpaceOnUse" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="linearGradient3415" + x1="2.3125" + y1="4.3125" + x2="3.8125" + y2="11.78125" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,8.349934e-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3423" + x1="8.2358475" + y1="15.55225" + x2="4.424221" + y2="3.4272494" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3429" + gradientUnits="userSpaceOnUse" + x1="8.2358475" + y1="15.55225" + x2="4.2843809" + y2="2.2386067" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="linearGradient3431" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,8.349934e-2)" + x1="2.3125" + y1="4.3125" + x2="3.8125" + y2="11.78125" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="2.7222828" + inkscape:cy="3.2854021" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="336" + inkscape:window-y="209"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g4455" + transform="translate(0,0.8424875)"> + <g + style="stroke:#3a3a3a;stroke-opacity:1" + transform="matrix(0.8938767,0,0,0.8938767,-0.7849478,0.2391309)" + id="g3425"> + <path + style="opacity:1;fill:url(#linearGradient3429);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 8.2992212,14.492981 C 6.403097,12.241903 4.5069721,9.9908266 2.6108471,7.7397495 C 4.5069721,5.4886726 6.4030966,3.2375952 8.2992208,0.98651768 C 8.2992208,5.4886717 8.2992212,9.9908266 8.2992212,14.492981 z " + id="path3406" /> + <rect + style="opacity:1;fill:url(#linearGradient3431);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3404" + width="3" + height="5.6875" + x="1.9375" + y="4.8959994" + rx="0.23693162" + ry="0.23693162" /> + </g> + <path + sodipodi:nodetypes="ccccc" + id="rect2217" + d="M 4.0668759,5.5560217 L 6.1678675,3.589381 L 6.1678675,6.1765082 L 4.0447788,7.2813625 L 4.0668759,5.5560217 z " + style="fill:#f5f5f5;fill-opacity:1;stroke:none;stroke-width:0.62258136;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="csc" + id="path3488" + d="M 10.523613,12.125008 C 10.985616,11.034671 11.269551,9.527011 11.269551,7.8750044 C 11.269551,6.2229979 10.985616,4.7153381 10.523613,3.6250006" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 12.412906,13.553976 C 13.030247,12.097037 13.409649,10.082459 13.409649,7.8750019 C 13.409649,5.6675446 13.030247,3.6529672 12.412906,2.1960279" + id="path3494" + sodipodi:nodetypes="csc" /> + </g> +</svg> diff --git a/sflphone_kde/icons/speaker_75.svg b/sflphone_kde/icons/speaker_75.svg new file mode 100644 index 0000000000..0ac6295198 --- /dev/null +++ b/sflphone_kde/icons/speaker_75.svg @@ -0,0 +1,408 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + version="1.0" + sodipodi:docbase="/home-local/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="speaker_75.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3417"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3419" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3421" /> + </linearGradient> + <linearGradient + id="linearGradient3370"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1;" + offset="0" + id="stop3372" /> + <stop + style="stop-color:#7c7c7c;stop-opacity:1;" + offset="1" + id="stop3374" /> + </linearGradient> + <linearGradient + id="linearGradient3362"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3364" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3366" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2224" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3362" + id="linearGradient3368" + x1="16.037382" + y1="3.6340783" + x2="0.9781428" + y2="5.2185812" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7869324,0.7869324,-0.7869324,0.7869324,-2.5317345,-1.0086642)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="radialGradient3392" + cx="5.5446553" + cy="6.5377574" + fx="5.5446553" + fy="6.5377574" + r="3.7829957" + gradientUnits="userSpaceOnUse" + spreadMethod="pad" + gradientTransform="matrix(0.6570643,0.4203728,-0.5183425,0.810196,5.2902577,-1.0899297)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="linearGradient3415" + x1="2.3125" + y1="4.3125" + x2="3.8125" + y2="11.78125" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,8.349934e-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3423" + x1="8.2358475" + y1="15.55225" + x2="4.424221" + y2="3.4272494" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3417" + id="linearGradient3429" + gradientUnits="userSpaceOnUse" + x1="8.2358475" + y1="15.55225" + x2="4.2843809" + y2="2.2386067" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3370" + id="linearGradient3431" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,8.349934e-2)" + x1="2.3125" + y1="4.3125" + x2="3.8125" + y2="11.78125" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="2.7222828" + inkscape:cy="8.2854021" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="16px" + height="16px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="336" + inkscape:window-y="209"> + <sodipodi:guide + orientation="vertical" + position="24.821428" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g4455" + transform="translate(0,0.8424875)"> + <g + style="stroke:#3a3a3a;stroke-opacity:1" + transform="matrix(0.8938767,0,0,0.8938767,-0.7849478,0.2391309)" + id="g3425"> + <path + style="opacity:1;fill:url(#linearGradient3429);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 8.2992212,14.492981 C 6.403097,12.241903 4.5069721,9.9908266 2.6108471,7.7397495 C 4.5069721,5.4886726 6.4030966,3.2375952 8.2992208,0.98651768 C 8.2992208,5.4886717 8.2992212,9.9908266 8.2992212,14.492981 z " + id="path3406" /> + <rect + style="opacity:1;fill:url(#linearGradient3431);fill-opacity:1;stroke:#3a3a3a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect3404" + width="3" + height="5.6875" + x="1.9375" + y="4.8959994" + rx="0.23693162" + ry="0.23693162" /> + </g> + <path + sodipodi:nodetypes="ccccc" + id="rect2217" + d="M 4.0668759,5.5560217 L 6.1678675,3.589381 L 6.1678675,6.1765082 L 4.0447788,7.2813625 L 4.0668759,5.5560217 z " + style="fill:#f5f5f5;fill-opacity:1;stroke:none;stroke-width:0.62258136;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="csc" + id="path3488" + d="M 10.523613,12.125008 C 10.985616,11.034671 11.269551,9.527011 11.269551,7.8750044 C 11.269551,6.2229979 10.985616,4.7153381 10.523613,3.6250006" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 12.412906,13.553976 C 13.030247,12.097037 13.409649,10.082459 13.409649,7.8750019 C 13.409649,5.6675446 13.030247,3.6529672 12.412906,2.1960279" + id="path3494" + sodipodi:nodetypes="csc" /> + <path + sodipodi:nodetypes="csc" + id="path3496" + d="M 14.250566,15.571345 C 15.087207,13.596849 15.601386,10.866624 15.601386,7.8749999 C 15.601386,4.8833766 15.087207,2.1531506 14.250566,0.1786555" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3c77cb;stroke-width:0.50367486;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> +</svg> diff --git a/sflphone_kde/icons/stock_person.svg b/sflphone_kde/icons/stock_person.svg new file mode 100644 index 0000000000..5e4938e22e --- /dev/null +++ b/sflphone_kde/icons/stock_person.svg @@ -0,0 +1,312 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2108" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/stock/generic" + sodipodi:docname="stock_person.svg" + inkscape:export-filename="/home/jimmac/src/cvs/gnome/gnome-icon-theme/48x48/stock/generic/stock_person.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + version="1.0"> + <defs + id="defs3"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 24 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="48 : 24 : 1" + inkscape:persp3d-origin="24 : 16 : 1" + id="perspective39" /> + <linearGradient + id="linearGradient4562"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4564" /> + <stop + style="stop-color:#d6d6d2;stop-opacity:1;" + offset="1" + id="stop4566" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4356"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4358" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop4360" /> + </linearGradient> + <linearGradient + id="linearGradient3824"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3826" /> + <stop + style="stop-color:#c9c9c9;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop3828" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3816"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3818" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3820" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3816" + id="radialGradient3822" + cx="31.112698" + cy="19.008621" + fx="31.112698" + fy="19.008621" + r="8.6620579" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4356" + id="linearGradient4362" + x1="20.661695" + y1="35.817974" + x2="22.626925" + y2="36.217758" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.4574725,8.6573699e-2,-8.4475822e-2,0.4688334,-3.7001476,-5.7438166)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4356" + id="linearGradient4366" + gradientUnits="userSpaceOnUse" + x1="22.686766" + y1="36.3904" + x2="21.408455" + y2="35.739632" + gradientTransform="matrix(-0.4548256,0.1001553,9.7728308e-2,0.4661207,19.475571,-6.1586599)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4356" + id="linearGradient1366" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.4548256,0.1001553,9.7728308e-2,0.4661207,13.107279,-9.3553728)" + x1="22.686766" + y1="36.3904" + x2="21.408455" + y2="35.739632" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3824" + id="linearGradient1372" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.4652065,0,0,0.4767595,-12.117924,-7.3917619)" + x1="30.935921" + y1="29.553486" + x2="30.935921" + y2="35.803486" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4562" + id="radialGradient4568" + cx="24.753788" + cy="26.814409" + fx="24.753788" + fy="26.814409" + r="17.986025" + gradientTransform="matrix(0.4708262,0,-1.1611519e-8,0.4867499,-3.5907712,-3.5342702)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4562" + id="radialGradient3816" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.558489,0,-1.377346e-8,0.563387,14.87134,4.364123)" + cx="29.922075" + cy="17.727694" + fx="29.922075" + fy="17.727694" + r="17.986025" /> + <filter + inkscape:collect="always" + x="-0.076111108" + width="1.1522222" + y="-0.28344828" + height="1.5668966" + id="filter5655"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.4531044" + id="feGaussianBlur5657" /> + </filter> + </defs> + <sodipodi:namedview + inkscape:showpageshadow="false" + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="0.16862745" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4" + inkscape:cx="14.000535" + inkscape:cy="28.945566" + inkscape:current-layer="layer2" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + fill="#9db029" + stroke="#727e0a" + inkscape:window-width="872" + inkscape:window-height="815" + inkscape:window-x="207" + inkscape:window-y="92" + borderlayer="true" /> + <metadata + id="metadata4"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Person</dc:title> + <dc:creator> + <cc:Agent> + <dc:title>Jakub Steiner</dc:title> + </cc:Agent> + </dc:creator> + <dc:source>http://jimmac.musichall.cz</dc:source> + <dc:subject> + <rdf:Bag> + <rdf:li>user</rdf:li> + <rdf:li>person</rdf:li> + </rdf:Bag> + </dc:subject> + <cc:license + rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="cipek" + inkscape:groupmode="layer" + style="display:inline"> + <path + style="opacity:1;fill:url(#linearGradient1372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 4.1651393,8.8345802 L 6.138843,8.8345802 L 4.9875164,7.7389402 L 4.7408031,8.0760604 L 4.4940899,7.8232205 L 4.1651393,8.8345802 z" + id="path4173" /> + <path + sodipodi:nodetypes="cccc" + id="path4370" + d="M 6.430587,11.556284 C 7.003373,11.279297 7.269997,10.601658 7.269997,10.601658 C 6.823808,8.674127 5.420266,7.3392773 5.420266,7.3392773 C 5.420266,7.3392773 6.566811,10.363174 6.430587,11.556284 z" + style="opacity:0.22784807;fill:url(#linearGradient1366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="dalsi cipek" + style="display:inline"> + <rect + style="opacity:0.34857142;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;filter:url(#filter5655);enable-background:accumulate" + id="rect4608" + width="38.183765" + height="10.253048" + x="5.3033009" + y="35.448853" + rx="5.126524" + ry="5.126524" + transform="matrix(0.3250676,0,0,0.3331404,6.89512e-2,0.7930955)" /> + <path + style="opacity:1;fill:url(#radialGradient4568);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.35188666px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 5.747901,15.484233 L 10.682162,15.484233 C 12.080203,15.484233 13.464322,14.958876 13.971669,13.461513 C 14.453455,12.03959 14.053907,9.331795 10.928875,7.1405156 L 5.0899998,7.1405156 C 1.9649683,9.1632345 1.5744381,11.929484 2.2939191,13.545793 C 3.0268962,15.19242 4.2676231,15.484233 5.747901,15.484233 z" + id="path4308" + sodipodi:nodetypes="cczcczc" /> + <path + sodipodi:nodetypes="cccc" + id="path4364" + d="M 12.79888,14.752996 C 13.371666,14.476009 13.638289,13.79837 13.638289,13.79837 C 13.1921,11.870839 11.788558,10.53599 11.788558,10.53599 C 11.788558,10.53599 12.935103,13.559886 12.79888,14.752996 z" + style="opacity:0.29120878;fill:url(#linearGradient4366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + inkscape:r_cx="true" + inkscape:r_cy="true" /> + <path + style="opacity:0.54945056;fill:url(#linearGradient4362);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 3.5664124,14.960262 C 2.9860173,14.700442 2.7262518,14.07431 2.7262518,14.07431 C 3.1176214,12.134311 4.4567857,10.714959 4.4567857,10.714959 C 4.4567857,10.714959 3.3964304,13.77171 3.5664124,14.960262 z" + id="path4354" + sodipodi:nodetypes="cccc" + inkscape:r_cx="true" + inkscape:r_cy="true" /> + <path + sodipodi:nodetypes="cczcczc" + id="path4314" + d="M 5.634667,15.115814 L 10.684449,15.104916 C 11.954768,15.104916 13.212438,14.627555 13.673434,13.266988 C 14.111206,11.974967 13.627851,9.514549 10.788314,7.5234596 L 5.2422484,7.4035828 C 2.4027116,9.2415112 1.8531144,11.755044 2.5174989,13.343568 C 3.1818841,14.932092 4.1513831,15.104916 5.634667,15.115814 z" + style="opacity:0.64285715;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.35188669px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + d="M 39.774755,19.008621 A 8.6620579,8.6620579 0 1 1 22.45064,19.008621 A 8.6620579,8.6620579 0 1 1 39.774755,19.008621 z" + sodipodi:ry="8.6620579" + sodipodi:rx="8.6620579" + sodipodi:cy="19.008621" + sodipodi:cx="31.112698" + id="path4318" + style="opacity:1;fill:url(#radialGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" + transform="matrix(0.4652065,0,0,0.4767595,-6.3991871,-2.6974863)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient3816);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.74718857px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path4320" + sodipodi:cx="31.112698" + sodipodi:cy="19.008621" + sodipodi:rx="8.6620579" + sodipodi:ry="8.6620579" + d="M 39.774755,19.008621 A 8.6620579,8.6620579 0 1 1 22.45064,19.008621 A 8.6620579,8.6620579 0 1 1 39.774755,19.008621 z" + transform="matrix(0.4652065,0,0,0.4767595,-6.3410376,-4.366146)" /> + <path + d="M 39.774755,19.008621 A 8.6620579,8.6620579 0 1 1 22.45064,19.008621 A 8.6620579,8.6620579 0 1 1 39.774755,19.008621 z" + sodipodi:ry="8.6620579" + sodipodi:rx="8.6620579" + sodipodi:cy="19.008621" + sodipodi:cx="31.112698" + id="path4322" + style="opacity:0.19620254;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.82296228px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" + transform="matrix(0.4223732,0,0,0.4328624,-5.0083678,-3.5317177)" /> + </g> +</svg> diff --git a/sflphone_kde/icons/transfert.svg b/sflphone_kde/icons/transfert.svg new file mode 100644 index 0000000000..84db1e97ae --- /dev/null +++ b/sflphone_kde/icons/transfert.svg @@ -0,0 +1,892 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="transfert.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#1268ff;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#1268ff;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#4f8fff;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#00318a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4181" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4195" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient4203" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4256" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4260" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,1.130281e-17,1.130281e-17,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient4275" + x1="15.630395" + y1="22.874208" + x2="15.630395" + y2="6.2345462" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.360718e-8,1.128928,1.128928,-1.360718e-8,-1.7295474,-9.642166)" /> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient2292"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2294" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop2296" /> + </linearGradient> + <linearGradient + id="linearGradient2298"> + <stop + id="stop2300" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2302" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2304"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2306" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2310" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2312" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2425" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2316" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2318" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2421" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient2419" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1408" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1410" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1412" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient1414" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2491" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="12.113755" + x2="7.293807" + y1="16.110582" + x1="11.408385" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2489" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2487" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.949513" + x2="2.7672646" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2485" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2483" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2416"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2418" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2420" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + id="stop2424" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2426" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2428"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2430" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2432" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2434" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.9220986,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2436" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.9107675,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2438" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2440" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.1362892,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2442" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2444" + x1="15.630395" + y1="22.874208" + x2="15.630395" + y2="8.5305319" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" /> + <radialGradient + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient2342" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2340" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2338" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2336" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2373" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2370" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2366"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2328" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2330" /> + </linearGradient> + <linearGradient + id="linearGradient2372"> + <stop + id="stop2362" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2364" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2376"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2357" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2359" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2380" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2382" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2352" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2306" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2386" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2302" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2296"> + <stop + id="stop2298" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2391" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2292" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2395" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + id="stop2286" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2288" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2278"> + <stop + id="stop2280" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop2282" + offset="1" + style="stop-color:#fefee7;stop-opacity:0.89308178" /> + </linearGradient> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,-1.726592e-17,-1.726592e-17,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2334" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + id="linearGradient2332" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2330" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + id="linearGradient2328" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + id="linearGradient2326" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2320"> + <stop + id="stop2322" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2324" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2314"> + <stop + style="stop-color:#00a5b0;stop-opacity:1;" + offset="0" + id="stop2316" /> + <stop + style="stop-color:#00595f;stop-opacity:1;" + offset="1" + id="stop2318" /> + </linearGradient> + <linearGradient + id="linearGradient2308"> + <stop + id="stop2310" + offset="0" + style="stop-color:#00a6b0;stop-opacity:1;" /> + <stop + id="stop2312" + offset="1" + style="stop-color:#00a6b0;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="2.1796211" + inkscape:cy="7.7965211" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="1091" + inkscape:window-x="5" + inkscape:window-y="49" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="opacity:1;fill:url(#linearGradient4275);fill-opacity:1.0;stroke:none;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="M 4.4433805,4.0108013 L 15.626822,4.0108014 L 15.626822,0.3770651 L 24.09378,8.4206747 L 15.626822,16.464286 L 15.626823,12.83055 L 4.4433806,12.83055 L 4.4433805,4.0108013 z " + id="rect4262" /> + <g + id="g2441" + inkscape:label="Calque 1" + transform="translate(-0.6011619,-0.1264495)"> + <g + transform="translate(-3.1142216,0.1467125)" + inkscape:label="Calque 1" + id="g2403"> + <g + id="g2364" + inkscape:label="Calque 1" + transform="translate(14.730114,-3.4355522)"> + <g + transform="translate(7.9455775,4.2707653)" + inkscape:label="Calque 1" + id="g2446"> + <g + id="g2181" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + style="fill:none;stroke:#000000;stroke-opacity:0.44968555"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z " + id="path2183" + sodipodi:nodetypes="csccczccsccccc" /> + </g> + <g + id="g2451" + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path2453" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z " + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#20246f;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2455" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z " + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#20246f;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2457" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z " + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#20246f;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2459" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z " + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2461" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z " + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> + </g> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/icons/unhold.svg b/sflphone_kde/icons/unhold.svg new file mode 100644 index 0000000000..99af96c926 --- /dev/null +++ b/sflphone_kde/icons/unhold.svg @@ -0,0 +1,980 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/home/plbeaudoin/SFLPhone/sflphone/sflphone-gtk/pixmaps" + sodipodi:docname="unhold.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + id="linearGradient4269"> + <stop + style="stop-color:#00a6b0;stop-opacity:1;" + offset="0" + id="stop4271" /> + <stop + style="stop-color:#00a6b0;stop-opacity:0;" + offset="1" + id="stop4273" /> + </linearGradient> + <linearGradient + id="linearGradient4183"> + <stop + id="stop4185" + offset="0" + style="stop-color:#00a5b0;stop-opacity:1;" /> + <stop + id="stop4187" + offset="1" + style="stop-color:#00595f;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4167"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop4169" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop4171" /> + </linearGradient> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1416" + xlink:href="#linearGradient4250" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1414" + xlink:href="#linearGradient4250" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1412" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1410" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1408" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(6.313453e-2,-0.384275)" + gradientUnits="userSpaceOnUse" + y2="16.478132" + x2="20.06057" + y1="23.946518" + x1="7.1249466" + id="linearGradient4173" + xlink:href="#linearGradient4167" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1401"> + <stop + id="stop1403" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1405" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1395"> + <stop + style="stop-color:#b00014;stop-opacity:1;" + offset="0" + id="stop1397" /> + <stop + style="stop-color:#70000c;stop-opacity:1;" + offset="1" + id="stop1399" /> + </linearGradient> + <linearGradient + id="linearGradient4250" + inkscape:collect="always"> + <stop + id="stop4252" + offset="0" + style="stop-color:#b00014;stop-opacity:1;" /> + <stop + id="stop4254" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4045"> + <stop + style="stop-color:#ffffff;stop-opacity:0" + offset="0" + id="stop4047" /> + <stop + style="stop-color:#fcfbcb;stop-opacity:1" + offset="1" + id="stop4049" /> + </linearGradient> + <linearGradient + id="linearGradient2292"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2294" /> + <stop + style="stop-color:#1db000;stop-opacity:0;" + offset="1" + id="stop2296" /> + </linearGradient> + <linearGradient + id="linearGradient2298"> + <stop + id="stop2300" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2302" + offset="1" + style="stop-color:#0f5f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2304"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2306" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2310" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2312" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2314" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2316" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2318" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2320" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" /> + <linearGradient + gradientTransform="matrix(1.62913,0,0,-1.62913,-10.06608,39.71987)" + gradientUnits="userSpaceOnUse" + y2="6.6770978" + x2="15.806232" + y1="22.874208" + x1="15.630395" + id="linearGradient4275" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient1388" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + id="linearGradient1386" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient1384" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="12.535715" + x2="31.31678" + y1="12.535715" + x1="24.397505" + id="linearGradient1382" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.825893" + x2="7.9239235" + y1="12.825893" + x1="1.0046476" + id="linearGradient1380" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1374"> + <stop + id="stop1376" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop1378" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1368"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop1370" /> + <stop + style="stop-color:#145f00;stop-opacity:1;" + offset="1" + id="stop1372" /> + </linearGradient> + <linearGradient + id="linearGradient1362"> + <stop + id="stop1364" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop1366" + offset="1" + style="stop-color:#26b000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient1406" + gradientUnits="userSpaceOnUse" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2417" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" + x1="10.57493" + y1="12.115559" + x2="-0.68574232" + y2="12.115559" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2415" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" + x1="31.692968" + y1="11.264216" + x2="23.888865" + y2="13.35532" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2413" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" + x1="7.8517423" + y1="15.912388" + x2="7.1114841" + y2="11.597325" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2411" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4045" + id="radialGradient4051" + cx="19.285715" + cy="9.8571424" + fx="19.285715" + fy="9.8571424" + r="10.885714" + gradientUnits="userSpaceOnUse" + spreadMethod="reflect" + gradientTransform="matrix(0.418975,0,0,0.418975,11.20548,5.727248)" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2491" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="12.113755" + x2="7.293807" + y1="16.110582" + x1="11.408385" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2489" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2487" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.949513" + x2="2.7672646" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2485" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2483" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2416"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2418" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2420" /> + </linearGradient> + <linearGradient + id="linearGradient2422"> + <stop + id="stop2424" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2426" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2428"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2430" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2432" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2434" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.9220986,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2436" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.9107675,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2438" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2440" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.1362892,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2442" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,31.179578,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2444" + x1="15.630395" + y1="22.874208" + x2="15.630395" + y2="8.5305319" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.256521,0,0,-1.256521,-7.854319,28.773309)" /> + <radialGradient + gradientTransform="matrix(0.418975,2.444023e-18,-2.444023e-18,0.418975,11.20548,5.727248)" + spreadMethod="reflect" + gradientUnits="userSpaceOnUse" + r="10.885714" + fy="9.8571424" + fx="19.285715" + cy="9.8571424" + cx="19.285715" + id="radialGradient2342" + xlink:href="#linearGradient4045" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2340" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + id="linearGradient2338" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + id="linearGradient2336" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + id="linearGradient2334" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + gradientUnits="userSpaceOnUse" + id="linearGradient2332" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2326"> + <stop + style="stop-color:#26b000;stop-opacity:1;" + offset="0" + id="stop2328" /> + <stop + style="stop-color:#26b000;stop-opacity:0;" + offset="1" + id="stop2330" /> + </linearGradient> + <linearGradient + id="linearGradient2372"> + <stop + id="stop2322" + offset="0" + style="stop-color:#26b000;stop-opacity:1;" /> + <stop + id="stop2324" + offset="1" + style="stop-color:#145f00;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2376"> + <stop + style="stop-color:#80000e;stop-opacity:1;" + offset="0" + id="stop2316" /> + <stop + style="stop-color:#b00014;stop-opacity:0;" + offset="1" + id="stop2318" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2380" + x1="1.0046476" + y1="12.825893" + x2="7.9239235" + y2="12.825893" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.262691,-1.100752)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2382" + x1="24.397505" + y1="12.535715" + x2="31.31678" + y2="12.535715" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.947018,-0.885198)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2308" + x1="15.647213" + y1="2.7028866" + x2="14.013638" + y2="10.576721" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2306" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.426158,-2.762136)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4269" + id="linearGradient2386" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,32.04188,-2.86473)" + x1="2.0651877" + y1="12.625902" + x2="6.8378897" + y2="13.920053" /> + <linearGradient + gradientTransform="matrix(0.875025,0,0,0.875025,0.666703,0.177907)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2302" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2296"> + <stop + id="stop2298" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2391" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2290"> + <stop + style="stop-color:#1db000;stop-opacity:1;" + offset="0" + id="stop2292" /> + <stop + style="stop-color:#0f5f00;stop-opacity:1;" + offset="1" + id="stop2395" /> + </linearGradient> + <linearGradient + id="linearGradient2284"> + <stop + id="stop2286" + offset="0" + style="stop-color:#1db000;stop-opacity:1;" /> + <stop + id="stop2288" + offset="1" + style="stop-color:#1db000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2278"> + <stop + id="stop2280" + offset="0" + style="stop-color:#ffffff;stop-opacity:0" /> + <stop + id="stop2282" + offset="1" + style="stop-color:#fefee7;stop-opacity:0.89308178" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.632388,0,0,0.632388,3.258093,0.894991)" + gradientUnits="userSpaceOnUse" + y2="22.512505" + x2="27.5625" + y1="6.7288713" + x1="16.826796" + id="linearGradient2355" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + y2="13.920053" + x2="6.8378897" + y1="12.625902" + x1="2.0651877" + gradientTransform="matrix(-1,-1.726592e-17,-1.726592e-17,1,32.04188,-2.86473)" + gradientUnits="userSpaceOnUse" + id="linearGradient2353" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.426158,-2.762136)" + gradientUnits="userSpaceOnUse" + y2="11.597325" + x2="7.1114841" + y1="15.912388" + x1="7.8517423" + id="linearGradient2351" + xlink:href="#linearGradient4269" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="10.576721" + x2="14.013638" + y1="2.7028866" + x1="15.647213" + id="linearGradient2349" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-0.947018,-0.885198)" + gradientUnits="userSpaceOnUse" + y2="13.35532" + x2="23.888865" + y1="11.264216" + x1="31.692968" + id="linearGradient2347" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(1.262691,-1.100752)" + gradientUnits="userSpaceOnUse" + y2="12.115559" + x2="-0.68574232" + y1="12.115559" + x1="10.57493" + id="linearGradient2345" + xlink:href="#linearGradient4183" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2339"> + <stop + id="stop2341" + offset="0" + style="stop-color:#80000e;stop-opacity:1;" /> + <stop + id="stop2343" + offset="1" + style="stop-color:#b00014;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient2333"> + <stop + style="stop-color:#00a5b0;stop-opacity:1;" + offset="0" + id="stop2335" /> + <stop + style="stop-color:#00595f;stop-opacity:1;" + offset="1" + id="stop2337" /> + </linearGradient> + <linearGradient + id="linearGradient2327"> + <stop + id="stop2329" + offset="0" + style="stop-color:#00a6b0;stop-opacity:1;" /> + <stop + id="stop2331" + offset="1" + style="stop-color:#00a6b0;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="linearGradient2469" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.684918,0,0,0.684918,2.618701,-0.775487)" + x1="16.826796" + y1="6.7288713" + x2="27.5625" + y2="22.512505" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="16.940055" + inkscape:cy="2.9986718" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="32px" + height="32px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1014" + inkscape:window-height="691" + inkscape:window-x="5" + inkscape:window-y="49"> + <sodipodi:guide + orientation="horizontal" + position="8.0357143" + id="guide3144" /> + <sodipodi:guide + orientation="vertical" + position="15.982143" + id="guide3146" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g2453" + inkscape:label="Calque 1" + transform="translate(0.8512452,-8.3578138e-2)"> + <path + id="path3384" + d="M 21.038321,3.4034084 L 15.10969,4.9843766 L 15.10969,11.031579 C 14.669707,10.938077 14.114787,11.043637 13.588009,11.347773 C 12.710044,11.854667 12.265301,12.744435 12.599904,13.323983 C 12.934506,13.903532 13.915531,13.949451 14.793496,13.442556 C 15.520561,13.022784 15.945002,12.351704 15.880412,11.802301 L 15.900174,11.802301 L 15.900174,6.0120062 L 20.228074,4.8460419 L 20.228074,9.5494222 C 19.790115,9.4608922 19.227685,9.5646472 18.706392,9.8656162 C 17.828428,10.372509 17.383684,11.262277 17.718288,11.841826 C 18.05289,12.421374 19.033915,12.467291 19.911881,11.960398 C 20.638946,11.540626 21.083149,10.869547 21.018559,10.320144 L 21.038321,10.320144 L 21.038321,4.6286588 L 21.038321,3.4034084 z " + style="opacity:0.08099688;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.45169228;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path2456" + d="M 20.490646,2.9897742 L 14.562015,4.5707424 L 14.562015,10.617945 C 14.122032,10.524443 13.567112,10.630003 13.040334,10.934139 C 12.162369,11.441033 11.717626,12.330801 12.052229,12.910349 C 12.386831,13.489898 13.367856,13.535817 14.245821,13.028922 C 14.972886,12.60915 15.397327,11.93807 15.332737,11.388667 L 15.352499,11.388667 L 15.352499,5.5983718 L 19.680399,4.4324077 L 19.680399,9.1357875 C 19.24244,9.047258 18.68001,9.1510128 18.158717,9.4519815 C 17.280753,9.9588749 16.836009,10.848643 17.170613,11.428192 C 17.505215,12.00774 18.48624,12.053657 19.364206,11.546764 C 20.091271,11.126992 20.535474,10.455913 20.470884,9.9065097 L 20.490646,9.9065097 L 20.490646,4.2150246 L 20.490646,2.9897742 z " + style="fill:url(#linearGradient2469);fill-opacity:1;stroke:#1d6a6f;stroke-width:0.45169228;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.32398754" /> + <g + transform="translate(-3.1142216,0.1467125)" + inkscape:label="Calque 1" + id="g2403"> + <g + id="g2364" + inkscape:label="Calque 1" + transform="translate(14.730114,-3.4355522)"> + <g + transform="translate(7.9455775,4.2707653)" + inkscape:label="Calque 1" + id="g2446"> + <g + id="g2181" + transform="matrix(-0.4376782,-0.758081,0.7581751,-0.4377326,3.5952686,30.820492)" + style="fill:none;stroke:#000000;stroke-opacity:0.44968555"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.65573961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.44968555" + d="M 41.109694,-0.41817229 C 40.505298,0.20454826 39.040867,0.77635346 37.592239,0.77635106 C 36.102089,0.77635106 34.114653,0.15682998 33.532659,-0.49267807 L 33.569913,-2.0031726 L 33.569913,-3.0835065 C 31.027414,-3.5787101 30.997014,-3.8285637 27.525623,-3.8285643 C 24.054233,-3.8285649 23.830777,-3.5759718 21.29017,-3.0462535 L 21.29017,-0.3436665 C 20.685773,0.27905404 19.221343,0.87609843 17.772714,0.87609724 C 16.282564,0.87609724 14.623294,0.43325774 13.915083,-0.41817229 L 14.138601,-5.7646408 C 18.129172,-7.3187814 22.030595,-8.3970767 27.437882,-8.5586077 C 32.38601,-8.450833 36.259126,-7.7053161 40.886177,-5.8763994 L 41.109694,-0.41817229 z " + id="path2183" + sodipodi:nodetypes="csccczccsccccc" /> + </g> + <g + id="g2451" + transform="matrix(-0.4400595,-0.7622054,0.7622054,-0.4400595,-10.917299,27.830684)"> + <path + sodipodi:nodetypes="cccsccsccsccc" + id="path2453" + d="M 16.100095,4.59375 C 10.946289,4.7477067 7.2256019,5.7999634 3.4220983,7.28125 L 3.2345983,10.227679 C 3.7846813,10.972881 5.0136533,11.508929 6.4220983,11.508929 C 7.7912983,11.508929 8.9758403,11.004648 9.5470983,10.290179 L 9.5470983,9.1875 C 11.968608,8.682612 12.862258,8.4375 16.125,8.4375 C 19.479577,8.4375001 20.38467,8.6842603 22.807982,9.15625 L 22.807982,10.165179 C 23.37924,10.879648 24.563781,11.383929 25.932982,11.383929 C 27.341427,11.383929 28.53915,10.847881 29.089232,10.102679 L 28.901732,7.15625 C 24.491586,5.413068 20.816266,4.6964725 16.100095,4.59375 z " + style="opacity:1;fill:url(#linearGradient2483);fill-opacity:1;stroke:#005653;stroke-width:0.625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2455" + d="M 6.4075414,13.019293 C 7.7882612,13.019293 8.983936,12.610489 9.5600003,12.01696 L 9.5600003,10.430989 C 8.8231919,11.109285 7.789205,11.494948 6.4075414,11.494948 C 4.9854414,11.494948 3.9881276,11.13019 3.2127675,10.48174 L 3.2127675,11.966208 C 3.7674786,12.585269 4.9872465,13.019293 6.4075414,13.019293 z " + style="opacity:1;fill:url(#linearGradient2485);fill-opacity:1;stroke:#005653;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2457" + d="M 25.967532,12.944669 C 27.348252,12.944669 28.543927,12.535865 29.119991,11.942336 L 29.119991,10.356365 C 28.383183,11.034661 27.349196,11.420324 25.967532,11.420324 C 24.545432,11.420324 23.548118,11.055566 22.772758,10.407116 L 22.772758,11.891584 C 23.327469,12.510645 24.547237,12.944669 25.967532,12.944669 z " + style="opacity:1;fill:url(#linearGradient2487);fill-opacity:1;stroke:#005653;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2459" + d="M 6.6822725,11.157918 C 8.0629923,11.157918 8.7535908,10.73333 9.3296551,10.139801 L 9.0644746,7.3100024 C 8.3276662,7.9882984 8.1270706,8.5445024 6.745407,8.5445024 C 5.323307,8.5445024 4.4996132,8.1797444 3.7242531,7.5312944 L 3.4874986,10.104833 C 4.0422097,10.723894 5.2619776,11.157918 6.6822725,11.157918 z " + style="opacity:1;fill:url(#linearGradient2489);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccsccc" + id="path2461" + d="M 25.633599,11.055324 C 24.252879,11.055324 23.56228,10.630736 22.986216,10.037207 L 22.418005,7.3779497 C 23.154814,8.0562457 24.188801,8.4419087 25.570464,8.4419087 C 26.992564,8.4419087 27.816258,8.0771507 28.591618,7.4287007 L 28.828373,10.002239 C 28.273662,10.6213 27.053894,11.055324 25.633599,11.055324 z " + style="opacity:1;fill:url(#linearGradient2491);fill-opacity:1;stroke:none;stroke-width:0.57204324;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> + </g> + </g> + </g> + <g + id="g1418" + inkscape:label="Calque 1" + transform="matrix(0.6631953,0,0,0.6631953,30.626397,2.6191805)" + style="stroke:#006c73;stroke-width:3.68368111;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <g + id="g1444" + transform="matrix(0.491592,0,0,0.491592,-26.9581,-0.76797)" + style="stroke:#006c73;stroke-width:7.49337075;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#006c73;stroke-width:7.49337075;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 5.3208165,5.0274423 L 27.017246,26.72387" + id="path1332" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#006c73;stroke-width:7.49337075;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 5.3208161,26.72387 L 27.017246,5.0274427" + id="path1334" + sodipodi:nodetypes="cc" /> + </g> + </g> + </g> +</svg> diff --git a/sflphone_kde/sflphone-qt.ui b/sflphone_kde/sflphone-qt.ui index c2a2a3b8db..944f60098d 100644 --- a/sflphone_kde/sflphone-qt.ui +++ b/sflphone_kde/sflphone-qt.ui @@ -6,7 +6,7 @@ <x>0</x> <y>0</y> <width>384</width> - <height>373</height> + <height>366</height> </rect> </property> <property name="windowTitle" > @@ -14,15 +14,21 @@ </property> <widget class="QWidget" name="centralwidget" > <layout class="QVBoxLayout" name="verticalLayout" > + <property name="sizeConstraint" > + <enum>QLayout::SetDefaultConstraint</enum> + </property> <item> <widget class="QListWidget" name="listWidget_callList" /> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout" > + <property name="spacing" > + <number>0</number> + </property> <item> <layout class="QVBoxLayout" name="verticalLayout_2" > <property name="spacing" > - <number>4</number> + <number>0</number> </property> <property name="sizeConstraint" > <enum>QLayout::SetDefaultConstraint</enum> @@ -45,7 +51,7 @@ </size> </property> <property name="layoutDirection" > - <enum>Qt::LeftToRight</enum> + <enum>Qt::RightToLeft</enum> </property> <property name="autoFillBackground" > <bool>false</bool> @@ -53,6 +59,12 @@ <property name="orientation" > <enum>Qt::Vertical</enum> </property> + <property name="invertedAppearance" > + <bool>false</bool> + </property> + <property name="invertedControls" > + <bool>false</bool> + </property> <property name="tickPosition" > <enum>QSlider::NoTicks</enum> </property> @@ -72,8 +84,8 @@ </layout> </item> <item> - <widget class="KButtonGroup" name="dialpadButtonGroup" > - <layout class="QGridLayout" name="gridLayout_2" > + <widget class="QWidget" native="1" name="widget" > + <layout class="QGridLayout" name="gridLayout" > <item row="0" column="0" > <widget class="QPushButton" name="pushButton_1" > <property name="sizePolicy" > @@ -309,6 +321,8 @@ <addaction name="actionRaccrocher" /> <addaction name="actionMettre_en_attente" /> <addaction name="actionTransferer" /> + <addaction name="actionRecord" /> + <addaction name="separator" /> <addaction name="actionBoite_vocale" /> </widget> <widget class="QMenu" name="menu_Configuration" > @@ -347,14 +361,15 @@ <addaction name="actionRaccrocher" /> <addaction name="actionMettre_en_attente" /> <addaction name="actionTransferer" /> - <addaction name="actionBoite_vocale" /> + <addaction name="actionRecord" /> <addaction name="separator" /> + <addaction name="actionBoite_vocale" /> <addaction name="actionHistorique" /> </widget> <action name="actionDecrocher" > <property name="icon" > - <iconset> - <normaloff>:/Images/accept.svg</normaloff>:/Images/accept.svg</iconset> + <iconset resource="resources.qrc" > + <normaloff>:/images/icons/call.svg</normaloff>:/images/icons/call.svg</iconset> </property> <property name="text" > <string>&Décrocher</string> @@ -362,8 +377,8 @@ </action> <action name="actionRaccrocher" > <property name="icon" > - <iconset> - <normaloff>:/Images/hang_up.svg</normaloff>:/Images/hang_up.svg</iconset> + <iconset resource="resources.qrc" > + <normaloff>:/images/icons/hang_up.svg</normaloff>:/images/icons/hang_up.svg</iconset> </property> <property name="text" > <string>&Raccrocher</string> @@ -371,8 +386,8 @@ </action> <action name="actionMettre_en_attente" > <property name="icon" > - <iconset> - <normaloff>:/Images/hold.svg</normaloff>:/Images/hold.svg</iconset> + <iconset resource="resources.qrc" > + <normaloff>:/images/icons/hold.svg</normaloff>:/images/icons/hold.svg</iconset> </property> <property name="text" > <string>Mettre en &Attente</string> @@ -380,8 +395,8 @@ </action> <action name="actionTransferer" > <property name="icon" > - <iconset> - <normaloff>:/Images/transfert.svg</normaloff>:/Images/transfert.svg</iconset> + <iconset resource="resources.qrc" > + <normaloff>:/images/icons/transfert.svg</normaloff>:/images/icons/transfert.svg</iconset> </property> <property name="text" > <string>&Transférer</string> @@ -389,8 +404,8 @@ </action> <action name="actionHistorique" > <property name="icon" > - <iconset> - <normaloff>:/Images/history2.svg</normaloff>:/Images/history2.svg</iconset> + <iconset resource="resources.qrc" > + <normaloff>:/images/icons/history2.svg</normaloff>:/images/icons/history2.svg</iconset> </property> <property name="text" > <string>&Historique</string> @@ -398,8 +413,8 @@ </action> <action name="actionBoite_vocale" > <property name="icon" > - <iconset> - <normaloff>:/Images/mailbox.svg</normaloff>:/Images/mailbox.svg</iconset> + <iconset resource="resources.qrc" > + <normaloff>:/images/icons/mailbox.svg</normaloff>:/images/icons/mailbox.svg</iconset> </property> <property name="text" > <string>&Boîte Vocale</string> @@ -467,34 +482,17 @@ <string>Afficher le &clavier</string> </property> </action> + <action name="actionRecord" > + <property name="checkable" > + <bool>true</bool> + </property> + <property name="text" > + <string>&Record</string> + </property> + </action> </widget> - <customwidgets> - <customwidget> - <class>KButtonGroup</class> - <extends>QGroupBox</extends> - <header>kbuttongroup.h</header> - <container>1</container> - </customwidget> - </customwidgets> <resources> <include location="resources.qrc" /> </resources> - <connections> - <connection> - <sender>actionAfficher_les_barres_de_volume</sender> - <signal>toggled(bool)</signal> - <receiver>verticalSlider_2</receiver> - <slot>setVisible(bool)</slot> - <hints> - <hint type="sourcelabel" > - <x>-1</x> - <y>-1</y> - </hint> - <hint type="destinationlabel" > - <x>16</x> - <y>313</y> - </hint> - </hints> - </connection> - </connections> + <connections/> </ui> diff --git a/sflphone_kde/sflphone_const.h b/sflphone_kde/sflphone_const.h index 11f31ea97e..93f56bbc12 100644 --- a/sflphone_kde/sflphone_const.h +++ b/sflphone_kde/sflphone_const.h @@ -40,6 +40,23 @@ #define PAGE_ACCOUNTS 2 #define PAGE_AUDIO 3 +#define ICON_INCOMING ":/images/icons/ring.svg" +#define ICON_RINGING ":/images/icons/ring.svg" +#define ICON_CURRENT ":/images/icons/current.svg" +#define ICON_DIALING ":/images/icons/dial.svg" +#define ICON_HOLD ":/images/icons/hold.svg" +#define ICON_FAILURE ":/images/icons/fail.svg" +#define ICON_BUSY ":/images/icons/busy.svg" +#define ICON_TRANSFER ":/images/icons/transfert.svg" +#define ICON_TRANSFER_HOLD ":/images/icons/transfert.svg" + +#define ICON_CALL ":/images/icons/call.svg" +#define ICON_HANGUP ":/images/icons/hang_up.svg" +#define ICON_UNHOLD ":/images/icons/unhold.svg" +#define ICON_ACCEPT ":/images/icons/accept.svg" +#define ICON_REFUSE ":/images/icons/refuse.svg" +#define ICON_EXEC_TRANSF ":/images/icons/call.svg" + #define ACCOUNT_TYPE "Account.type" #define ACCOUNT_ALIAS "Account.alias" #define ACCOUNT_ENABLED "Account.enable" @@ -80,6 +97,7 @@ + /** Tone to play when no voice mails */ #define TONE_WITHOUT_MESSAGE 0 /** Tone to play when voice mails */ diff --git a/sflphone_kde/sflphone_kde.kdevelop b/sflphone_kde/sflphone_kde.kdevelop index 3e38334a02..8c807196d4 100644 --- a/sflphone_kde/sflphone_kde.kdevelop +++ b/sflphone_kde/sflphone_kde.kdevelop @@ -121,7 +121,7 @@ </cppsupportpart> <kdevcustomproject> <run> - <mainprogram/> + <mainprogram>/home/jquentin/sflphone_kde/build</mainprogram> <programargs/> <terminal>false</terminal> <autocompile>false</autocompile> @@ -145,7 +145,7 @@ </run> <build> <buildtool>make</buildtool> - <builddir>/home/jquentin/sflphone_kde/build</builddir> + <builddir>/home/jquentin/sflphone/sflphone_kde/build</builddir> </build> <make> <abortonerror>false</abortonerror> diff --git a/sflphone_kde/sflphone_kde.kdevelop.filelist b/sflphone_kde/sflphone_kde.kdevelop.filelist index dcd5c7ef0a..dca5a469d1 100644 --- a/sflphone_kde/sflphone_kde.kdevelop.filelist +++ b/sflphone_kde/sflphone_kde.kdevelop.filelist @@ -3,6 +3,8 @@ Account.cpp Account.h AccountList.cpp AccountList.h +Automate.cpp +Automate.h CMakeLists.txt Call.cpp Call.h @@ -25,6 +27,7 @@ configurationmanager_interface_singleton.h main.cpp mainorig.cpp metatypes.h +prefs_base.ui settings.kcfgc sflphone-qt.ui sflphone_const.cpp @@ -36,3 +39,4 @@ sflphone_kde.kcfg sflphone_kdeui.rc sflphone_kdeview.cpp sflphone_kdeview.h +sflphone_kdeview_base.ui diff --git a/sflphone_kde/sflphone_kde.kdevelop.pcs b/sflphone_kde/sflphone_kde.kdevelop.pcs index 7a230fdd5b7adb046fab2e8cc03cb30549209a19..c5020e28ff72d6064ad325af97884b8f7e129b73 100644 GIT binary patch literal 165570 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 CjHWgK literal 213726 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 diff --git a/sflphone_kde/sflphone_kde.kdevses b/sflphone_kde/sflphone_kde.kdevses index 5fb87698df..d7f8147c1a 100644 --- a/sflphone_kde/sflphone_kde.kdevses +++ b/sflphone_kde/sflphone_kde.kdevses @@ -1,79 +1,37 @@ <?xml version = '1.0' encoding = 'UTF-8'?> <!DOCTYPE KDevPrjSession> <KDevPrjSession> - <DocsAndViews NumberOfDocuments="24" > - <Doc0 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/ConfigDialog.cpp" > - <View0 Encoding="" line="218" Type="Source" /> + <DocsAndViews NumberOfDocuments="10" > + <Doc0 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/SFLPhone.cpp" > + <View0 Encoding="" Type="Source" /> </Doc0> - <Doc1 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/ConfigDialog.h" > - <View0 Encoding="" line="10" Type="Source" /> + <Doc1 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/SFLPhone.h" > + <View0 Encoding="" Type="Source" /> </Doc1> - <Doc2 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/configurationmanager_interface_p.h" > - <View0 Encoding="" line="26" Type="Source" /> + <Doc2 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/Automate.cpp" > + <View0 Encoding="" Type="Source" /> </Doc2> - <Doc3 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/configurationmanager_interface_singleton.cpp" > - <View0 Encoding="" line="11" Type="Source" /> + <Doc3 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/Automate.h" > + <View0 Encoding="" Type="Source" /> </Doc3> - <Doc4 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/configurationmanager_interface_singleton.h" > - <View0 Encoding="" line="0" Type="Source" /> + <Doc4 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/CallList.h" > + <View0 Encoding="" Type="Source" /> </Doc4> - <Doc5 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/configurationmanager_interface.cpp" > - <View0 Encoding="" line="22" Type="Source" /> + <Doc5 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/CallList.cpp" > + <View0 Encoding="" Type="Source" /> </Doc5> - <Doc6 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/Account.cpp" > - <View0 Encoding="" line="64" Type="Source" /> + <Doc6 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/Call.h" > + <View0 Encoding="" Type="Source" /> </Doc6> - <Doc7 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/SFLPhone.cpp" > - <View0 Encoding="" line="121" Type="Source" /> + <Doc7 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/Call.cpp" > + <View0 Encoding="" Type="Source" /> </Doc7> - <Doc8 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/SFLPhone.h" > - <View0 Encoding="" line="18" Type="Source" /> + <Doc8 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/sflphone_const.h" > + <View0 Encoding="" Type="Source" /> </Doc8> - <Doc9 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/CMakeLists.txt" > - <View0 Encoding="" line="29" Type="Source" /> + <Doc9 NumberOfViews="1" URL="file:///home/jquentin/sflphone/sflphone_kde/CMakeLists.txt" > + <View0 Encoding="" line="22" Type="Source" /> </Doc9> - <Doc10 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/callmanager_interface_singleton.h" > - <View0 Encoding="" line="15" Type="Source" /> - </Doc10> - <Doc11 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/callmanager_interface_singleton.cpp" > - <View0 Encoding="" line="14" Type="Source" /> - </Doc11> - <Doc12 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/main.cpp" > - <View0 Encoding="" line="24" Type="Source" /> - </Doc12> - <Doc13 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/build/CMakeFiles/sflphone_kde.dir/build.make" > - <View0 Encoding="" line="0" Type="Source" /> - </Doc13> - <Doc14 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/build/CMakeFiles/sflphone_kde.dir/flags.make" > - <View0 Encoding="" line="0" Type="Source" /> - </Doc14> - <Doc15 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/callmanager_interface.cpp" > - <View0 Encoding="" line="19" Type="Source" /> - </Doc15> - <Doc16 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/callmanager-introspec.xml" > - <View0 Encoding="" line="21" Type="Source" /> - </Doc16> - <Doc17 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/configurationmanager-introspec.xml" > - <View0 Encoding="" line="259" Type="Source" /> - </Doc17> - <Doc18 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/sflphone_kde.cpp" > - <View0 Encoding="" line="24" Type="Source" /> - </Doc18> - <Doc19 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/Call.h" > - <View0 Encoding="" line="25" Type="Source" /> - </Doc19> - <Doc20 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/Call.cpp" > - <View0 Encoding="" line="3" Type="Source" /> - </Doc20> - <Doc21 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/Account.h" > - <View0 Encoding="" line="0" Type="Source" /> - </Doc21> - <Doc22 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/CallList.h" > - <View0 Encoding="" line="23" Type="Source" /> - </Doc22> - <Doc23 NumberOfViews="1" URL="file:///home/jquentin/sflphone_kde/CallList.cpp" > - <View0 Encoding="" line="0" Type="Source" /> - </Doc23> </DocsAndViews> <pluginList> <kdevdebugger> -- GitLab