Merge branch 'master' of https://github.com/RetroShare/RetroShare
@ -256,6 +256,7 @@
|
||||
</customwidgets>
|
||||
<resources>
|
||||
<include location="../images.qrc"/>
|
||||
<include location="../icons.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
@ -55,7 +55,7 @@ CreateCircleDialog::CreateCircleDialog()
|
||||
mCircleQueue = new TokenQueue(rsGxsCircles->getTokenService(), this);
|
||||
mIdQueue = new TokenQueue(rsIdentity->getTokenService(), this);
|
||||
|
||||
ui.headerFrame->setHeaderImage(QPixmap(":/images/circles/circles_64.png"));
|
||||
ui.headerFrame->setHeaderImage(QPixmap(":/icons/png/circles.png"));
|
||||
|
||||
// connect up the buttons.
|
||||
connect(ui.addButton, SIGNAL(clicked()), this, SLOT(addMember()));
|
||||
|
@ -373,6 +373,16 @@
|
||||
<property name="text">
|
||||
<string>Public</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/png/network-puplic.png</normaloff>:/icons/png/network-puplic.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
@ -383,6 +393,16 @@
|
||||
<property name="text">
|
||||
<string>Private</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/png/person.png</normaloff>:/icons/png/person.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
@ -393,6 +413,16 @@
|
||||
<property name="text">
|
||||
<string>Only visible to members of:</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/png/circles.png</normaloff>:/icons/png/circles.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="3">
|
||||
@ -459,6 +489,7 @@
|
||||
</customwidgets>
|
||||
<resources>
|
||||
<include location="../images.qrc"/>
|
||||
<include location="../icons.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
@ -52,9 +52,9 @@
|
||||
//#define IMAGE_NEWSFEED ""
|
||||
//#define IMAGE_NEWSFEED_NEW ":/images/message-state-new.png"
|
||||
#define IMAGE_NETWORK2 ":/icons/png/netgraph.png"
|
||||
#define IMAGE_PEERS ":/images/groupchat.png"
|
||||
#define IMAGE_PEERS ":/icons/png/keyring.png"
|
||||
#define IMAGE_IDENTITY ":/images/identity/identities_32.png"
|
||||
#define IMAGE_CIRCLES ":/images/circles/circles_32.png"
|
||||
#define IMAGE_CIRCLES ":/icons/png/circles.png"
|
||||
|
||||
/******
|
||||
* #define FRIENDS_DEBUG 1
|
||||
|
@ -194,8 +194,6 @@ IdDialog::IdDialog(QWidget *parent) :
|
||||
//mStateHelper->addClear(IDDIALOG_REPLIST, ui->treeWidget_RepList);
|
||||
|
||||
/* Connect signals */
|
||||
connect(ui->toolButton_NewId, SIGNAL(clicked()), this, SLOT(addIdentity()));
|
||||
connect(ui->toolButton_NewCircle, SIGNAL(clicked()), this, SLOT(createExternalCircle()));
|
||||
|
||||
connect(ui->removeIdentity, SIGNAL(triggered()), this, SLOT(removeIdentity()));
|
||||
connect(ui->editIdentity, SIGNAL(triggered()), this, SLOT(editIdentity()));
|
||||
@ -211,7 +209,7 @@ IdDialog::IdDialog(QWidget *parent) :
|
||||
|
||||
|
||||
ui->avLabel_Person->setPixmap(QPixmap(":/icons/png/people.png"));
|
||||
ui->avlabel_Circles->setPixmap(QPixmap(":/icons/circles_128.png"));
|
||||
ui->avlabel_Circles->setPixmap(QPixmap(":/icons/png/circles.png"));
|
||||
|
||||
ui->headerTextLabel_Person->setText(tr("People"));
|
||||
ui->headerTextLabel_Circles->setText(tr("Circles"));
|
||||
@ -280,7 +278,18 @@ IdDialog::IdDialog(QWidget *parent) :
|
||||
idTWHAction->setData(RSID_FILTER_BANNED);
|
||||
connect(idTWHAction, SIGNAL(toggled(bool)), this, SLOT(filterToggled(bool)));
|
||||
idTWHMenu->addAction(idTWHAction);
|
||||
|
||||
|
||||
QAction *CreateIDAction = new QAction(QIcon(":/icons/png/person.png"),tr("Create new Identity"), this);
|
||||
connect(CreateIDAction, SIGNAL(triggered()), this, SLOT(addIdentity()));
|
||||
|
||||
QAction *CreateCircleAction = new QAction(QIcon(":/icons/png/circles.png"),tr("Create new circle"), this);
|
||||
connect(CreateCircleAction, SIGNAL(triggered()), this, SLOT(createExternalCircle()));
|
||||
|
||||
QMenu *menu = new QMenu();
|
||||
menu->addAction(CreateIDAction);
|
||||
menu->addAction(CreateCircleAction);
|
||||
ui->toolButton_New->setMenu(menu);
|
||||
|
||||
/* Add filter actions */
|
||||
QTreeWidgetItem *headerItem = ui->idTreeWidget->headerItem();
|
||||
QString headerText = headerItem->text(RSID_COL_NICKNAME);
|
||||
|
@ -20,7 +20,16 @@
|
||||
<string/>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="IdDialogGLayout">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
@ -38,7 +47,16 @@
|
||||
<enum>QFrame::Sunken</enum>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="titleBarFrameHLayout">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<item>
|
||||
@ -129,16 +147,25 @@
|
||||
<enum>QFrame::Sunken</enum>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="toolBarFrameHLayout">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="LineEditClear" name="filterLineEdit"/>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="toolButton_NewId">
|
||||
<widget class="QToolButton" name="toolButton_New">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
@ -147,46 +174,11 @@
|
||||
<enum>Qt::NoFocus</enum>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Create new Identity</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>New ID</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/identity/identity_create_32.png</normaloff>:/images/identity/identity_create_32.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="autoRaise">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="toolButton_NewCircle">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::NoFocus</enum>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Create new circle</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>New ID</string>
|
||||
<string>Create new...</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/circles_new_128.png</normaloff>:/icons/circles_new_128.png</iconset>
|
||||
<normaloff>:/icons/png/add.png</normaloff>:/icons/png/add.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
@ -194,6 +186,9 @@
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="popupMode">
|
||||
<enum>QToolButton::InstantPopup</enum>
|
||||
</property>
|
||||
<property name="autoRaise">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
@ -251,7 +246,7 @@
|
||||
<string>Reputation</string>
|
||||
</property>
|
||||
<property name="textAlignment">
|
||||
<set>AlignLeft|AlignVCenter</set>
|
||||
<set>AlignLeading|AlignVCenter</set>
|
||||
</property>
|
||||
</column>
|
||||
</widget>
|
||||
@ -264,8 +259,8 @@
|
||||
</property>
|
||||
<widget class="QWidget" name="personTab">
|
||||
<attribute name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/no_avatar_background.png</normaloff>:/images/no_avatar_background.png</iconset>
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/png/person.png</normaloff>:/icons/png/person.png</iconset>
|
||||
</attribute>
|
||||
<attribute name="title">
|
||||
<string>Person</string>
|
||||
@ -620,8 +615,8 @@ p, li { white-space: pre-wrap; }
|
||||
</widget>
|
||||
<widget class="QWidget" name="circleTab">
|
||||
<attribute name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/circles/circles_64.png</normaloff>:/images/circles/circles_64.png</iconset>
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/png/circles.png</normaloff>:/icons/png/circles.png</iconset>
|
||||
</attribute>
|
||||
<attribute name="title">
|
||||
<string>Circles</string>
|
||||
@ -745,6 +740,16 @@ p, li { white-space: pre-wrap; }
|
||||
</action>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>LineEditClear</class>
|
||||
<extends>QLineEdit</extends>
|
||||
<header location="global">gui/common/LineEditClear.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>RSTreeWidget</class>
|
||||
<extends>QTreeWidget</extends>
|
||||
<header>gui/common/RSTreeWidget.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>StyledElidedLabel</class>
|
||||
<extends>QLabel</extends>
|
||||
@ -755,16 +760,6 @@ p, li { white-space: pre-wrap; }
|
||||
<extends>QLabel</extends>
|
||||
<header>gui/common/StyledLabel.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>RSTreeWidget</class>
|
||||
<extends>QTreeWidget</extends>
|
||||
<header>gui/common/RSTreeWidget.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>LineEditClear</class>
|
||||
<extends>QLineEdit</extends>
|
||||
<header location="global">gui/common/LineEditClear.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<tabstops>
|
||||
<tabstop>idTreeWidget</tabstop>
|
||||
|
@ -49,7 +49,7 @@ IdEditDialog::IdEditDialog(QWidget *parent) :
|
||||
|
||||
ui->setupUi(this);
|
||||
|
||||
ui->headerFrame->setHeaderImage(QPixmap(":/images/identity/identity_create_64.png"));
|
||||
ui->headerFrame->setHeaderImage(QPixmap(":/icons/png/person.png"));
|
||||
ui->headerFrame->setHeaderText(tr("Create New Identity"));
|
||||
|
||||
/* Setup UI helper */
|
||||
@ -202,7 +202,7 @@ void IdEditDialog::setAvatar(const QPixmap &avatar)
|
||||
void IdEditDialog::setupExistingId(const RsGxsGroupId &keyId)
|
||||
{
|
||||
setWindowTitle(tr("Edit identity"));
|
||||
ui->headerFrame->setHeaderImage(QPixmap(":/images/identity/identity_edit_64.png"));
|
||||
ui->headerFrame->setHeaderImage(QPixmap(":/icons/png/person.png"));
|
||||
ui->headerFrame->setHeaderText(tr("Edit identity"));
|
||||
|
||||
mIsNew = false;
|
||||
|
@ -7,22 +7,31 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1237</width>
|
||||
<height>790</height>
|
||||
<height>622</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string notr="true">Create New</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_5">
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="horizontalSpacing">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="verticalSpacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="margin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="HeaderFrame" name="headerFrame"/>
|
||||
</item>
|
||||
@ -38,7 +47,7 @@
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="createmode">
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<layout class="QGridLayout" name="gridLayout_8">
|
||||
<item row="0" column="0">
|
||||
<widget class="QGroupBox" name="groupBoxLogo">
|
||||
<property name="title">
|
||||
@ -48,7 +57,16 @@
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<item>
|
||||
@ -112,7 +130,16 @@
|
||||
<property name="spacing">
|
||||
<number>9</number>
|
||||
</property>
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>3</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>3</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>3</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>3</number>
|
||||
</property>
|
||||
<item>
|
||||
@ -169,29 +196,7 @@
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QGroupBox" name="groupBox">
|
||||
<property name="title">
|
||||
<string>Description</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout">
|
||||
<item>
|
||||
<widget class="MimeTextEdit" name="groupDesc"/>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="8" column="0" colspan="2">
|
||||
<widget class="QFrame" name="extraFrame">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1" rowspan="8">
|
||||
<item row="0" column="1">
|
||||
<widget class="QDockWidget" name="contactsdockWidget">
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
@ -234,7 +239,16 @@
|
||||
</property>
|
||||
<widget class="QWidget" name="dockWidgetContents">
|
||||
<layout class="QGridLayout" name="_2">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="spacing">
|
||||
@ -289,39 +303,36 @@
|
||||
<property name="title">
|
||||
<string>Message Distribution</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="typePublic">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string><html><head/><body><p>Messsages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Public</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/network.png</normaloff>:/images/network.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_8">
|
||||
<item>
|
||||
<layout class="QGridLayout" name="gridLayout_7">
|
||||
<item row="0" column="0">
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0" colspan="4">
|
||||
<widget class="QRadioButton" name="typePublic">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string><html><head/><body><p>Messsages will spread way beyond your friend nodes, as long as people subscribe to the channel/forum/posted you're creating.</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Public</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/png/network-puplic.png</normaloff>:/icons/png/network-puplic.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QRadioButton" name="typeGroup">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Expanding">
|
||||
@ -336,8 +347,8 @@
|
||||
<string>Restricted to Circle</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/circles/circles_32.png</normaloff>:/images/circles/circles_32.png</iconset>
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/png/circles.png</normaloff>:/icons/png/circles.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
@ -347,14 +358,7 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="GxsCircleChooser" name="circleComboBox"/>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||
<item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QRadioButton" name="typeLocal">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Expanding">
|
||||
@ -369,8 +373,8 @@
|
||||
<string>Only For Your Friends</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/user/friends24.png</normaloff>:/images/user/friends24.png</iconset>
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/png/network.png</normaloff>:/icons/png/network.png</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
@ -380,14 +384,69 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="GroupChooser" name="localComboBox"/>
|
||||
<item row="2" column="1" colspan="2">
|
||||
<widget class="GroupChooser" name="localComboBox">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="3">
|
||||
<spacer name="horizontalSpacer_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="1" column="3">
|
||||
<spacer name="horizontalSpacer_3">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>68</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="1" column="1" colspan="2">
|
||||
<widget class="GxsCircleChooser" name="circleComboBox">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QGroupBox" name="groupBox">
|
||||
<property name="title">
|
||||
<string>Description</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout">
|
||||
<item>
|
||||
<widget class="MimeTextEdit" name="groupDesc"/>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QGroupBox" name="publishGroupBox">
|
||||
<property name="title">
|
||||
@ -598,6 +657,16 @@
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="7" column="0" colspan="2">
|
||||
<widget class="QFrame" name="extraFrame">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="showmode">
|
||||
@ -849,6 +918,7 @@
|
||||
</customwidgets>
|
||||
<resources>
|
||||
<include location="../images.qrc"/>
|
||||
<include location="../icons.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
@ -1,80 +1,98 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>icons/add_user_256.png</file>
|
||||
<file>icons/anonymous_blue_128.png</file>
|
||||
<file>icons/anonymous_green_128.png</file>
|
||||
<file>icons/aol.png</file>
|
||||
<file>icons/avatar_128.png</file>
|
||||
<file>icons/avatar_grey_128.png</file>
|
||||
<file>icons/blank_blue_128.png</file>
|
||||
<file>icons/blank_green_128.png</file>
|
||||
<file>icons/browsable_blue_128.png</file>
|
||||
<file>icons/browsable_green_128.png</file>
|
||||
<file>icons/bullet_blue_128.png</file>
|
||||
<file>icons/bullet_green_128.png</file>
|
||||
<file>icons/bullet_grey_128.png</file>
|
||||
<file>icons/bullet_red_128.png</file>
|
||||
<file>icons/bullet_yellow_128.png</file>
|
||||
<file>icons/channels_128.png</file>
|
||||
<file>icons/channels_red_128.png</file>
|
||||
<file>icons/chat_128.png</file>
|
||||
<file>icons/chat_red_128.png</file>
|
||||
<file>icons/circles_128.png</file>
|
||||
<file>icons/circles_new_128.png</file>
|
||||
<file>icons/friends_128.png</file>
|
||||
<file>icons/global_switch_off_128.png</file>
|
||||
<file>icons/global_switch_on_128.png</file>
|
||||
<file>icons/gmail.png</file>
|
||||
<file>icons/help_128.png</file>
|
||||
<file>icons/help_64.png</file>
|
||||
<file>icons/information_128.png</file>
|
||||
<file>icons/internet_128.png</file>
|
||||
<file>icons/knews_128.png</file>
|
||||
<file>icons/knews_red_128.png</file>
|
||||
<file>icons/konversation_128.png</file>
|
||||
<file>icons/konversation128.png</file>
|
||||
<file>icons/konversation_red_128.png</file>
|
||||
<file>icons/ktorrent_128.png</file>
|
||||
<file>icons/ktorrent_red_128.png</file>
|
||||
<file>icons/logo_0_connected_128.png</file>
|
||||
<file>icons/logo_128.png</file>
|
||||
<file>icons/logo_1_connected_128.png</file>
|
||||
<file>icons/logo_2_connected_128.png</file>
|
||||
<file>icons/mail_128.png</file>
|
||||
<file>icons/mail_old_128.png</file>
|
||||
<file>icons/mail_red_128.png</file>
|
||||
<file>icons/newsfeed128.png</file>
|
||||
<file>icons/outlook.png</file>
|
||||
<file>icons/plugins_128.png</file>
|
||||
<file>icons/posted_128.png</file>
|
||||
<file>icons/posted_red_128.png</file>
|
||||
<file>icons/quit_128.png</file>
|
||||
<file>icons/security_high_128.png</file>
|
||||
<file>icons/security_low_128.png</file>
|
||||
<file>icons/security_medium_128.png</file>
|
||||
<file>icons/star_overlay_128.png</file>
|
||||
<file>icons/switch00_128.png</file>
|
||||
<file>icons/switch01_128.png</file>
|
||||
<file>icons/switch10_128.png</file>
|
||||
<file>icons/switch11_128.png</file>
|
||||
<file>icons/system_128.png</file>
|
||||
<file>icons/tile_checking_48.png</file>
|
||||
<file>icons/tile_downloaded_48.png</file>
|
||||
<file>icons/tile_downloading_48.png</file>
|
||||
<file>icons/tile_inactive_48.png</file>
|
||||
<file>icons/tor-logo.png</file>
|
||||
<file>icons/tor-off.png</file>
|
||||
<file>icons/tor-on.png</file>
|
||||
<file>icons/tor-starting.png</file>
|
||||
<file>icons/tor-stopping.png</file>
|
||||
<file>icons/user-away_64.png</file>
|
||||
<file>icons/user-away-extended_64.png</file>
|
||||
<file>icons/user-busy_64.png</file>
|
||||
<file>icons/user-offline_64.png</file>
|
||||
<file>icons/user-online_64.png</file>
|
||||
<file>icons/yahoo.png</file>
|
||||
<file>icons/yandex.png</file>
|
||||
<file>icons/yellow_biohazard64.png</file>
|
||||
<qresource prefix="/">
|
||||
<file>icons/settings/appearance.svg</file>
|
||||
<file>icons/settings/channels.svg</file>
|
||||
<file>icons/settings/chat.svg</file>
|
||||
<file>icons/settings/directories.svg</file>
|
||||
<file>icons/settings/filesharing.svg</file>
|
||||
<file>icons/settings/forums.svg</file>
|
||||
<file>icons/settings/general.svg</file>
|
||||
<file>icons/settings/messages.svg</file>
|
||||
<file>icons/settings/network.svg</file>
|
||||
<file>icons/settings/notify.svg</file>
|
||||
<file>icons/settings/people.svg</file>
|
||||
<file>icons/settings/permissions.svg</file>
|
||||
<file>icons/settings/plugins.svg</file>
|
||||
<file>icons/settings/posted.svg</file>
|
||||
<file>icons/settings/profile.svg</file>
|
||||
<file>icons/settings/server.svg</file>
|
||||
<file>icons/settings/sound.svg</file>
|
||||
<file>icons/settings/webinterface.svg</file>
|
||||
<file>icons/add_user_256.png</file>
|
||||
<file>icons/anonymous_blue_128.png</file>
|
||||
<file>icons/anonymous_green_128.png</file>
|
||||
<file>icons/aol.png</file>
|
||||
<file>icons/avatar_128.png</file>
|
||||
<file>icons/avatar_grey_128.png</file>
|
||||
<file>icons/blank_blue_128.png</file>
|
||||
<file>icons/blank_green_128.png</file>
|
||||
<file>icons/browsable_blue_128.png</file>
|
||||
<file>icons/browsable_green_128.png</file>
|
||||
<file>icons/bullet_blue_128.png</file>
|
||||
<file>icons/bullet_green_128.png</file>
|
||||
<file>icons/bullet_grey_128.png</file>
|
||||
<file>icons/bullet_red_128.png</file>
|
||||
<file>icons/bullet_yellow_128.png</file>
|
||||
<file>icons/channels_128.png</file>
|
||||
<file>icons/channels_red_128.png</file>
|
||||
<file>icons/chat_128.png</file>
|
||||
<file>icons/chat_red_128.png</file>
|
||||
<file>icons/circles_128.png</file>
|
||||
<file>icons/circles_new_128.png</file>
|
||||
<file>icons/friends_128.png</file>
|
||||
<file>icons/global_switch_off_128.png</file>
|
||||
<file>icons/global_switch_on_128.png</file>
|
||||
<file>icons/gmail.png</file>
|
||||
<file>icons/help_128.png</file>
|
||||
<file>icons/help_64.png</file>
|
||||
<file>icons/information_128.png</file>
|
||||
<file>icons/internet_128.png</file>
|
||||
<file>icons/knews_128.png</file>
|
||||
<file>icons/knews_red_128.png</file>
|
||||
<file>icons/konversation_128.png</file>
|
||||
<file>icons/konversation128.png</file>
|
||||
<file>icons/konversation_red_128.png</file>
|
||||
<file>icons/ktorrent_128.png</file>
|
||||
<file>icons/ktorrent_red_128.png</file>
|
||||
<file>icons/logo_0_connected_128.png</file>
|
||||
<file>icons/logo_128.png</file>
|
||||
<file>icons/logo_1_connected_128.png</file>
|
||||
<file>icons/logo_2_connected_128.png</file>
|
||||
<file>icons/mail_128.png</file>
|
||||
<file>icons/mail_old_128.png</file>
|
||||
<file>icons/mail_red_128.png</file>
|
||||
<file>icons/newsfeed128.png</file>
|
||||
<file>icons/outlook.png</file>
|
||||
<file>icons/plugins_128.png</file>
|
||||
<file>icons/posted_128.png</file>
|
||||
<file>icons/posted_red_128.png</file>
|
||||
<file>icons/quit_128.png</file>
|
||||
<file>icons/security_high_128.png</file>
|
||||
<file>icons/security_low_128.png</file>
|
||||
<file>icons/security_medium_128.png</file>
|
||||
<file>icons/star_overlay_128.png</file>
|
||||
<file>icons/switch00_128.png</file>
|
||||
<file>icons/switch01_128.png</file>
|
||||
<file>icons/switch10_128.png</file>
|
||||
<file>icons/switch11_128.png</file>
|
||||
<file>icons/system_128.png</file>
|
||||
<file>icons/tile_checking_48.png</file>
|
||||
<file>icons/tile_downloaded_48.png</file>
|
||||
<file>icons/tile_downloading_48.png</file>
|
||||
<file>icons/tile_inactive_48.png</file>
|
||||
<file>icons/tor-logo.png</file>
|
||||
<file>icons/tor-off.png</file>
|
||||
<file>icons/tor-on.png</file>
|
||||
<file>icons/tor-starting.png</file>
|
||||
<file>icons/tor-stopping.png</file>
|
||||
<file>icons/user-away_64.png</file>
|
||||
<file>icons/user-away-extended_64.png</file>
|
||||
<file>icons/user-busy_64.png</file>
|
||||
<file>icons/user-offline_64.png</file>
|
||||
<file>icons/user-online_64.png</file>
|
||||
<file>icons/yahoo.png</file>
|
||||
<file>icons/yandex.png</file>
|
||||
<file>icons/yellow_biohazard64.png</file>
|
||||
<file>icons/png/attach.png</file>
|
||||
<file>icons/png/attach-image.png</file>
|
||||
<file>icons/png/highlight.png</file>
|
||||
@ -113,5 +131,9 @@
|
||||
<file>icons/png/thumbs-neutral.png</file>
|
||||
<file>icons/png/add.png</file>
|
||||
<file>icons/png/netgraph.png</file>
|
||||
</qresource>
|
||||
<file>icons/png/network-puplic.png</file>
|
||||
<file>icons/png/circles.png</file>
|
||||
<file>icons/png/person.png</file>
|
||||
<file>icons/png/keyring.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
BIN
retroshare-gui/src/gui/icons/png/circles.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
retroshare-gui/src/gui/icons/png/keyring.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
retroshare-gui/src/gui/icons/png/network-puplic.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
retroshare-gui/src/gui/icons/png/person.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
59
retroshare-gui/src/gui/icons/settings/appearance.svg
Normal file
@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="appearance.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.11875"
|
||||
inkscape:cx="51.928718"
|
||||
inkscape:cy="40.754432"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4172" /></sodipodi:namedview><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#c90080;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(0.09241082,0,0,-0.09241082,5.3582888,57.949396)"
|
||||
id="g3"><g
|
||||
id="g5"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 287.028,204.41 c 11.832,0 23.052,2.142 33.66,6.426 10.605,4.284 19.789,10.2 27.541,17.748 7.752,7.548 13.871,16.32 18.357,26.316 4.488,9.996 6.732,20.706 6.732,32.13 0,11.424 -2.244,22.133 -6.732,32.129 -4.486,9.996 -10.605,18.771 -18.357,26.316 -7.752,7.547 -16.936,13.465 -27.541,17.748 -10.607,4.281 -21.828,6.426 -33.66,6.426 -11.832,0 -23.052,-2.145 -33.66,-6.426 -10.608,-4.283 -19.788,-10.199 -27.54,-17.748 -7.752,-7.547 -13.872,-16.32 -18.36,-26.316 -4.488,-9.996 -6.732,-20.705 -6.732,-32.129 0,-11.424 2.244,-22.134 6.732,-32.13 4.488,-9.996 10.608,-18.768 18.36,-26.316 7.752,-7.548 16.932,-13.464 27.54,-17.748 10.608,-4.284 21.828,-6.426 33.66,-6.426 z m 0,211.752 c 18.767,0 36.312,-3.365 52.632,-10.098 16.32,-6.733 30.602,-15.912 42.84,-27.539 12.24,-11.629 21.932,-25.297 29.07,-41.004 7.137,-15.709 10.709,-32.539 10.709,-50.491 0,-17.952 -3.57,-34.782 -10.709,-50.49 -7.141,-15.708 -16.83,-29.376 -29.07,-41.004 -12.238,-11.628 -26.52,-20.808 -42.84,-27.54 -16.32,-6.732 -33.865,-10.098 -52.632,-10.098 -18.768,0 -36.312,3.366 -52.632,10.098 -16.32,6.732 -30.6,15.912 -42.84,27.54 -12.24,11.628 -21.93,25.296 -29.07,41.004 -7.14,15.708 -10.71,32.538 -10.71,50.49 0,17.952 3.57,34.782 10.71,50.491 7.14,15.707 16.83,29.375 29.07,41.004 12.24,11.627 26.52,20.807 42.84,27.539 16.32,6.732 33.864,10.098 52.632,10.098 z m 0,-301.104 c 27.744,0 54.162,3.264 79.253,9.792 25.092,6.528 48.246,14.994 69.463,25.398 21.215,10.404 40.395,22.134 57.527,35.19 17.137,13.056 31.723,25.908 43.758,38.556 12.037,12.648 21.217,24.582 27.541,35.802 6.324,11.22 9.486,20.298 9.486,27.234 0,6.936 -3.162,16.014 -9.486,27.235 -6.324,11.219 -15.504,23.15 -27.541,35.801 -12.035,12.646 -26.621,25.5 -43.758,38.557 -17.135,13.059 -36.313,24.785 -57.527,35.189 -21.217,10.402 -44.371,18.871 -69.463,25.396 -25.092,6.527 -51.51,9.791 -79.253,9.791 -28.152,0 -54.672,-3.264 -79.56,-9.791 -24.888,-6.525 -47.94,-14.994 -69.156,-25.396 C 117.096,413.408 97.92,401.679 80.784,388.623 63.648,375.566 49.062,362.715 37.026,350.066 24.99,337.417 15.81,325.484 9.486,314.265 3.162,303.042 0,293.964 0,287.03 c 0,-6.936 3.162,-16.014 9.486,-27.234 6.324,-11.22 15.504,-23.154 27.54,-35.802 12.036,-12.648 26.622,-25.5 43.758,-38.556 17.136,-13.056 36.312,-24.786 57.528,-35.19 21.216,-10.404 44.268,-18.87 69.156,-25.398 24.888,-6.528 51.408,-9.792 79.56,-9.792 z"
|
||||
id="path7" /></g></g></g></svg>
|
After Width: | Height: | Size: 4.5 KiB |
87
retroshare-gui/src/gui/icons/settings/channels.svg
Normal file
@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="channels.svg"
|
||||
inkscape:export-filename="C:\Qt\RetroShare\RetroShare\retroshare-gui\src\gui\icons\svg\newsfeed.png"
|
||||
inkscape:export-xdpi="144"
|
||||
inkscape:export-ydpi="144"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159"><linearGradient
|
||||
id="linearGradient4148"
|
||||
osb:paint="solid"><stop
|
||||
style="stop-color:#7b2a46;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4150" /></linearGradient></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.2390057"
|
||||
inkscape:cx="8.6326367"
|
||||
inkscape:cy="41.710731"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#d80000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32"
|
||||
inkscape:export-xdpi="144"
|
||||
inkscape:export-ydpi="144" /><rect
|
||||
y="-53.716011"
|
||||
x="9.6750126"
|
||||
style="fill:none;stroke-width:1.7944;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
height="44.862545"
|
||||
width="44.862545"
|
||||
id="rect3"
|
||||
transform="scale(1,-1)" /><rect
|
||||
style="fill:none;stroke:#fffff0;stroke-width:1.7944;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
height="26.917528"
|
||||
stroke-miterlimit="10"
|
||||
width="43.068047"
|
||||
x="10.572263"
|
||||
y="-46.538002"
|
||||
id="rect5"
|
||||
transform="scale(1,-1)" /><line
|
||||
style="fill:#ffffff;stroke:#fffff0;stroke-width:1.7944;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:none;fill-opacity:1;stroke-opacity:0.96078432"
|
||||
stroke-miterlimit="10"
|
||||
x1="44.667801"
|
||||
x2="19.544771"
|
||||
y1="16.031466"
|
||||
y2="16.031466"
|
||||
id="line7" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 38.366406,33.035271 -9.888603,5.709207 c -0.176758,0.10139 -0.395687,0.10139 -0.571548,0 -0.177656,-0.101389 -0.286223,-0.289812 -0.286223,-0.493488 l 0,-11.421107 c 0,-0.204573 0.108567,-0.392996 0.285325,-0.494385 0.08793,-0.05114 0.186629,-0.07627 0.285326,-0.07627 0.0978,0 0.197395,0.02512 0.285326,0.07627 l 9.888602,5.709208 c 0.176759,0.102286 0.285326,0.290709 0.285326,0.495282 0,0.204573 -0.106773,0.392996 -0.283531,0.495283 z"
|
||||
id="path9"
|
||||
style="stroke-width:1.7944;stroke-miterlimit:10;stroke-dasharray:none;fill:#ffffff;fill-opacity:1" /></g></svg>
|
After Width: | Height: | Size: 3.8 KiB |
108
retroshare-gui/src/gui/icons/settings/chat.svg
Normal file
@ -0,0 +1,108 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="chat-bubble.svg"><metadata
|
||||
id="metadata8"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs6"><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath16"><path
|
||||
d="M 0,64 64,64 64,0 0,0 0,64 Z"
|
||||
id="path18"
|
||||
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath28"><path
|
||||
d="M 12,50 52,50 52,8 12,8 12,50 Z"
|
||||
id="path30"
|
||||
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.9"
|
||||
inkscape:cx="14.810936"
|
||||
inkscape:cy="29.164554"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" /><g
|
||||
id="g10"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Elegant_circle-icons"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><g
|
||||
id="g26" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path22"
|
||||
style="fill:#2ca02c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
id="use4160"
|
||||
transform="translate(0,-1.9728814)"
|
||||
style="fill:#000000;fill-opacity:0.15686275"><g
|
||||
id="g4164"
|
||||
transform="translate(49,35.2)"
|
||||
style="fill:#000000;fill-opacity:0.15686275"><path
|
||||
style="fill:#000000;fill-opacity:0.15686275;fill-rule:nonzero;stroke:none"
|
||||
d="M 40 17.466797 C 26.1925 17.466797 15 27.540547 15 39.966797 C 15 51.933049 25.379902 61.713849 38.478516 62.421875 C 39.323921 66.895192 40 69.966797 40 69.966797 C 40 69.966797 46.28026 66.159283 52.013672 59.699219 C 59.752513 55.874654 65 48.473572 65 39.966797 C 65 27.540547 53.8075 17.466797 40 17.466797 z "
|
||||
transform="matrix(0.8,0,0,-0.8,-49,30.772881)"
|
||||
id="path4166" /></g><g
|
||||
id="g4168"
|
||||
transform="translate(52,34)"
|
||||
style="fill:#000000;fill-opacity:0.15686275" /></g><g
|
||||
id="g4154"><g
|
||||
transform="translate(49,35.2)"
|
||||
id="g40"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path42"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,-14.963 -17,-25.2 -17,-25.2 0,0 -9.389,42 0,42 C -7.611,16.8 0,9.278 0,0" /></g><g
|
||||
transform="translate(52,34)"
|
||||
id="g44"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path46"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,-9.941 -8.954,-18 -20,-18 -11.046,0 -20,8.059 -20,18 0,9.941 8.954,18 20,18 C -8.954,18 0,9.941 0,0" /></g></g><g
|
||||
id="g48"
|
||||
transform="translate(34,34)"
|
||||
style="fill:#2ca02c;fill-opacity:1"><path
|
||||
d="m 0,0 c 0,1.105 -0.895,2 -2,2 -1.105,0 -2,-0.895 -2,-2 0,-1.105 0.895,-2 2,-2 1.105,0 2,0.895 2,2"
|
||||
style="fill:#2ca02c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path50"
|
||||
inkscape:connector-curvature="0" /></g><g
|
||||
id="g52"
|
||||
transform="translate(42,34)"
|
||||
style="fill:#2ca02c;fill-opacity:1"><path
|
||||
d="m 0,0 c 0,1.105 -0.895,2 -2,2 -1.105,0 -2,-0.895 -2,-2 0,-1.105 0.895,-2 2,-2 1.105,0 2,0.895 2,2"
|
||||
style="fill:#2ca02c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path54"
|
||||
inkscape:connector-curvature="0" /></g><g
|
||||
id="g56"
|
||||
transform="translate(26,34)"
|
||||
style="fill:#2ca02c;fill-opacity:1"><path
|
||||
d="m 0,0 c 0,1.105 -0.895,2 -2,2 -1.105,0 -2,-0.895 -2,-2 0,-1.105 0.895,-2 2,-2 1.105,0 2,0.895 2,2"
|
||||
style="fill:#2ca02c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path58"
|
||||
inkscape:connector-curvature="0" /></g></g></svg>
|
After Width: | Height: | Size: 4.8 KiB |
60
retroshare-gui/src/gui/icons/settings/directories.svg
Normal file
@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="directories.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.11875"
|
||||
inkscape:cx="42.387211"
|
||||
inkscape:cy="32.235396"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#fae11e;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(0.73006507,0,0,-0.73006507,10.222497,54.14911)"
|
||||
id="g3"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 56.981,11.5 -28.962,0 0,-4.98 C 28.019,4.855 26.665,3.5 25,3.5 L 3.019,3.5 C 1.354,3.5 0,4.854 0,6.52 l 0,13.98 60,0 0,-5.98 C 60,12.854 58.646,11.5 56.981,11.5 Z"
|
||||
id="path5" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 0,53.48 c 0,1.665 1.354,3.02 3.019,3.02 l 53.962,0 C 58.646,56.5 60,55.146 60,53.48 l 0,-30.98 -60,0 0,30.98 z"
|
||||
id="path7" /></g></g></svg>
|
After Width: | Height: | Size: 2.4 KiB |
89
retroshare-gui/src/gui/icons/settings/filesharing.svg
Normal file
@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="filesharing.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="true"
|
||||
inkscape:zoom="5.11875"
|
||||
inkscape:cx="-7.7302347"
|
||||
inkscape:cy="40.32228"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4206" /></sodipodi:namedview><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(0.08434988,0,0,-0.08434988,12.235817,52.282065)"
|
||||
id="g3"><g
|
||||
id="g5"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 387.196,459.652 c -5.63,11.368 -20.6,20.708 -33.284,20.708 l -331.888,0 c -12.705,0 -18.486,-9.34 -12.899,-20.708 l 89.26,-180.828 c 5.587,-11.368 20.579,-20.686 33.284,-20.686 l 331.888,0 c 12.727,0 18.465,9.319 12.899,20.686 l -89.26,180.828 z"
|
||||
id="path7" /><polygon
|
||||
style="fill:#ffffff"
|
||||
points="367.307,235.057 328.803,196.575 233.223,196.575 233.223,235.057 "
|
||||
id="polygon9" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 0,180.871 0,425.98 77.676,268.621 c 2.955,-5.91 7.507,-11.152 12.619,-15.876 l 0,-101.016 -61.131,0 C 13.137,151.729 0,164.844 0,180.871 Z"
|
||||
id="path11" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 161.781,10.354 -102.008,102.008 57.119,0 0,106.495 89.756,0 0,-106.495 57.119,0 L 161.781,10.354 Z"
|
||||
id="path13" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 385.491,215.665 -102.008,-102.009 57.098,0 0,-106.538 89.734,0 0,106.517 57.163,0 -101.987,102.03 z"
|
||||
id="path15" /></g><g
|
||||
id="g17" /><g
|
||||
id="g19" /><g
|
||||
id="g21" /><g
|
||||
id="g23" /><g
|
||||
id="g25" /><g
|
||||
id="g27" /><g
|
||||
id="g29" /><g
|
||||
id="g31" /><g
|
||||
id="g33" /><g
|
||||
id="g35" /><g
|
||||
id="g37" /><g
|
||||
id="g39" /><g
|
||||
id="g41" /><g
|
||||
id="g43" /><g
|
||||
id="g45" /></g></g></svg>
|
After Width: | Height: | Size: 3.6 KiB |
60
retroshare-gui/src/gui/icons/settings/forums.svg
Normal file
@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="forums.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.2390057"
|
||||
inkscape:cx="23.793449"
|
||||
inkscape:cy="37.095609"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#330080;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32"
|
||||
inkscape:export-xdpi="144"
|
||||
inkscape:export-ydpi="144" /><g
|
||||
transform="matrix(0.4763565,0,0,-0.4763565,6.2415521,506.87804)"
|
||||
id="g4"
|
||||
style="fill:#ffffff"><path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;stroke:none;stroke-width:4.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 92,8 58,22.15625 58,59.84375 92,74 92,8 Z M 26,23 c -9.89251,-10e-6 -18,8.02802 -18,18 0,9.97195 8.10749,18 18,18 l 28,0 0,-36 -28,0 z M 27.40625,63 34,82 c 1.595005,4.178 4.856818,10 13,10 6.697928,0 11,-5.3726 11,-12 0,-6.6274 -5.372583,-12 -12,-12 l -1,0 -1.65625,-5 -15.9375,0 z"
|
||||
transform="translate(0,952.36218)"
|
||||
id="path6" /></g></g></svg>
|
After Width: | Height: | Size: 2.7 KiB |
62
retroshare-gui/src/gui/icons/settings/general.svg
Normal file
@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="general.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="true"
|
||||
inkscape:zoom="7.2390057"
|
||||
inkscape:cx="18.683079"
|
||||
inkscape:cy="40.113336"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4144" /></sodipodi:namedview><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
id="g3"
|
||||
transform="matrix(0.81163744,0,0,-0.81163744,10.13439,54.294348)"><path
|
||||
d="M 53.188,23.518 50.06,22.916 c -1.842,-0.354 -3.351,-1.607 -4.035,-3.354 -0.686,-1.745 -0.433,-3.69 0.677,-5.203 l 1.964,-2.679 c 0.292,-0.397 0.249,-0.949 -0.1,-1.298 L 44.324,6.14 C 43.985,5.801 43.453,5.75 43.056,6.019 l -2.638,1.786 c -0.91,0.616 -1.958,0.942 -3.033,0.942 -2.713,0 -4.98,-1.941 -5.393,-4.617 L 31.487,0.847 C 31.414,0.36 30.994,0 30.5,0 l -6,0 c -0.479,0 -0.892,0.341 -0.982,0.812 l -0.777,4.041 c -0.492,2.559 -2.746,4.416 -5.357,4.416 -1.075,0 -2.125,-0.325 -3.033,-0.941 L 10.944,6.02 C 10.547,5.752 10.015,5.802 9.676,6.141 l -4.243,4.242 c -0.349,0.349 -0.391,0.9 -0.1,1.299 l 1.964,2.679 c 1.109,1.512 1.362,3.457 0.677,5.203 -0.686,1.745 -2.194,2.999 -4.036,3.353 L 0.81,23.519 C 0.34,23.608 0,24.021 0,24.5 l 0,6 c 0,0.493 0.36,0.913 0.848,0.988 l 3.283,0.505 c 1.853,0.285 3.408,1.481 4.157,3.2 0.75,1.72 0.57,3.673 -0.482,5.226 L 6.02,43.057 c -0.269,0.396 -0.218,0.929 0.121,1.268 l 4.242,4.242 c 0.349,0.348 0.899,0.393 1.298,0.1 l 2.679,-1.964 c 0.944,-0.692 2.05,-1.059 3.197,-1.059 2.613,0 4.867,1.857 5.359,4.416 l 0.602,3.129 C 23.608,53.659 24.021,54 24.5,54 l 6,0 c 0.494,0 0.913,-0.36 0.988,-0.848 l 0.355,-2.309 c 0.466,-3.032 3.067,-4.618 5.396,-4.618 1.146,0 2.25,0.366 3.196,1.06 l 1.884,1.381 c 0.399,0.293 0.95,0.248 1.298,-0.1 l 4.242,-4.242 c 0.339,-0.339 0.39,-0.871 0.121,-1.268 l -1.786,-2.638 c -1.052,-1.553 -1.232,-3.506 -0.482,-5.226 0.75,-1.719 2.304,-2.915 4.157,-3.2 l 3.283,-0.505 C 53.64,31.413 54,30.993 54,30.5 l 0,-6 c 0,-0.479 -0.34,-0.892 -0.812,-0.982 z M 36,27.5 C 36,32.187 32.187,36 27.5,36 22.813,36 19,32.187 19,27.5 19,22.813 22.813,19 27.5,19 c 4.687,0 8.5,3.813 8.5,8.5 z"
|
||||
id="path5"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff" /><path
|
||||
d="M 27.5,22 C 24.467,22 22,24.468 22,27.5 22,30.532 24.467,33 27.5,33 30.533,33 33,30.532 33,27.5 33,24.468 30.533,22 27.5,22 Z"
|
||||
id="path7"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff" /></g></g></svg>
|
After Width: | Height: | Size: 4.0 KiB |
75
retroshare-gui/src/gui/icons/settings/messages.svg
Normal file
@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="messages.svg"
|
||||
inkscape:export-filename="C:\Qt\RetroShare\RetroShare\retroshare-gui\src\gui\icons\png\messages.png"
|
||||
inkscape:export-xdpi="144"
|
||||
inkscape:export-ydpi="144"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159"><linearGradient
|
||||
id="linearGradient4148"
|
||||
osb:paint="solid"><stop
|
||||
style="stop-color:#7b2a46;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4150" /></linearGradient></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="true"
|
||||
inkscape:zoom="7.2390057"
|
||||
inkscape:cx="22.066693"
|
||||
inkscape:cy="37.963377"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163"
|
||||
showguides="false"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4138" /></sodipodi:namedview><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32"
|
||||
inkscape:export-xdpi="144"
|
||||
inkscape:export-ydpi="144" /><rect
|
||||
y="-53.716011"
|
||||
x="9.6750126"
|
||||
style="fill:none;stroke-width:1.7944;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
height="44.862545"
|
||||
width="44.862545"
|
||||
id="rect3"
|
||||
transform="scale(1,-1)" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 53.28268,19.122821 -12.542211,12.611696 12.576954,12.542211 0,-25.153907 -0.03474,0 z m -40.7535,-2.362523 12.64644,12.646441 2.779437,-2.744695 c 1.042289,-1.042289 2.293036,-1.737149 3.821726,-1.737149 1.528691,0 2.779438,0.69486 3.821727,1.737149 l 2.779437,2.744695 12.64644,-12.646441 -38.495207,0 0,0 z m 38.564693,30.156895 -18.0316,-18.101085 c -0.347429,-0.34743 -0.660116,-0.555887 -1.28549,-0.555887 -0.625373,0 -0.93806,0.208457 -1.28549,0.555887 l -18.031599,18.101085 38.634179,0 0,0 z M 10.270886,44.276728 22.847841,31.734517 10.270886,19.122821 l 0,25.153907 0,0 z"
|
||||
id="path8"
|
||||
style="fill:#ffffff" /></g></svg>
|
After Width: | Height: | Size: 3.3 KiB |
68
retroshare-gui/src/gui/icons/settings/network.svg
Normal file
@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="network.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.2390057"
|
||||
inkscape:cx="32.25547"
|
||||
inkscape:cy="36.227842"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#039bd5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:60.50111771;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 46.736356,54.839243 a 8.6613054,8.6613054 0 0 1 -2.573514,-0.287805 8.6613054,8.6613054 0 0 1 -6.381917,-7.68708 L 21.533309,42.510466 c 1.013863,-1.647906 1.560294,-3.580941 1.505961,-5.57539 l 16.234227,4.350544 a 8.6613054,8.6613054 0 0 1 9.373751,-3.46705 8.6613054,8.6613054 0 0 1 6.124232,10.608638 8.6613054,8.6613054 0 0 1 -8.035124,6.412035 z"
|
||||
id="path4148" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:60.50111771;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="M 41.110767,37.577618 36.760219,21.346735 a 8.661311,8.6613054 0 0 1 -1.562848,-0.261031 8.661311,8.6613054 0 0 1 -6.127577,-10.60864 8.661311,8.6613054 0 0 1 10.608637,-6.1242285 8.661311,8.6613054 0 0 1 6.124232,10.6086375 8.661311,8.6613054 0 0 1 -3.463704,4.889346 l 4.350546,16.244268 c -1.934104,-0.05396 -3.878639,0.438185 -5.578738,1.482531 z"
|
||||
id="path2987-4" /><g
|
||||
transform="matrix(1.7134457,0,0,-1.7134457,1219.293,1548.6749)"
|
||||
id="g4159"
|
||||
style="fill:#f9f9f9;fill-opacity:1"><g
|
||||
id="g4156"
|
||||
style="fill:#f9f9f9;fill-opacity:1"><path
|
||||
inkscape:connector-curvature="0"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:60.50111771;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="M 5.2480469,7.4707031 A 5.0549051,5.0549051 0 0 0 3.7460938,7.640625 5.0549051,5.0549051 0 0 0 0.171875,13.830078 5.0549051,5.0549051 0 0 0 6.3632812,17.40625 5.0549051,5.0549051 0 0 0 7.2304688,17.082031 l 6.9394532,6.9375 c 0.53707,-0.9933 1.354986,-1.832209 2.378906,-2.386719 L 9.6152344,14.699219 A 5.0549051,5.0549051 0 0 0 9.9375,11.214844 5.0549051,5.0549051 0 0 0 5.2480469,7.4707031 Z"
|
||||
transform="translate(-709.10597,869.59315)"
|
||||
id="path4146" /></g></g></g></svg>
|
After Width: | Height: | Size: 6.2 KiB |
82
retroshare-gui/src/gui/icons/settings/notify.svg
Normal file
@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="notify.svg"
|
||||
inkscape:export-filename="C:\Qt\RetroShare\RetroShare\retroshare-gui\src\gui\icons\png\messages.png"
|
||||
inkscape:export-xdpi="144"
|
||||
inkscape:export-ydpi="144"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159"><linearGradient
|
||||
id="linearGradient4148"
|
||||
osb:paint="solid"><stop
|
||||
style="stop-color:#7b2a46;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4150" /></linearGradient></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.11875"
|
||||
inkscape:cx="9.7079549"
|
||||
inkscape:cy="43.803471"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163"
|
||||
showguides="false"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4138" /></sodipodi:namedview><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#ff990d;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32"
|
||||
inkscape:export-xdpi="144"
|
||||
inkscape:export-ydpi="144"
|
||||
inkscape:export-filename="C:\Qt\RetroShare\RetroShare\retroshare-gui\src\gui\icons\png\messages-notify.png" /><rect
|
||||
y="-53.716011"
|
||||
x="9.6750126"
|
||||
style="fill:none;stroke-width:1.7944;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
height="44.862545"
|
||||
width="44.862545"
|
||||
id="rect3"
|
||||
transform="scale(1,-1)" /><g
|
||||
transform="matrix(0.11337623,0,0,-0.10730887,4.2108507,58.021979)"
|
||||
id="g3"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 244.709,389.496 c 18.736,0 34.332,-14.355 35.91,-33.026 L 304.978,65.543 C 306.396,48.67 300.675,31.99 289.222,19.532 277.783,7.09 261.629,0 244.709,0 227.789,0 211.635,7.09 200.195,19.532 188.74,31.99 183.022,48.67 184.44,65.543 l 24.359,290.927 c 1.578,18.671 17.174,33.026 35.91,33.026 z"
|
||||
id="path5" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 244.709,410.908 c -21.684,0 -39.256,17.571 -39.256,39.256 0,21.683 17.572,39.254 39.256,39.254 21.684,0 39.256,-17.571 39.256,-39.254 0,-21.685 -17.572,-39.256 -39.256,-39.256 z"
|
||||
id="path7" /></g></g></svg>
|
After Width: | Height: | Size: 3.5 KiB |
105
retroshare-gui/src/gui/icons/settings/people.svg
Normal file
@ -0,0 +1,105 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="people2.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.2390057"
|
||||
inkscape:cx="17.150984"
|
||||
inkscape:cy="41.119245"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#aa0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(2.2768478,0,0,-2.2768478,4.7264277,60.413755)"
|
||||
id="g3"
|
||||
style="fill:#ffffff"><path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 9,9 c 0,-1.7 1.3,-3 3,-3 1.7,0 3,1.3 3,3 0,1.7 -1.3,3 -3,3 -1.7,0 -3,-1.3 -3,-3 z m 3,5 c -4.6,0 -6,3.3 -6,3.3 l 0,1.7 12,0 0,-1.7 c 0,0 -1.4,-3.3 -6,-3.3 z"
|
||||
id="path5"
|
||||
style="fill:#ffffff" /></g><g
|
||||
transform="matrix(2.2768478,0,0,-2.2768478,4.7264277,60.413755)"
|
||||
id="g7"
|
||||
style="fill:#ffffff"><g
|
||||
id="g9"
|
||||
style="fill:#ffffff"><circle
|
||||
cx="18.5"
|
||||
cy="8.5"
|
||||
r="2.5"
|
||||
id="circle11"
|
||||
style="fill:#ffffff" /></g><g
|
||||
id="g13"
|
||||
style="fill:#ffffff"><path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 18.5,13 c -1.2,0 -2.1,0.3 -2.8,0.8 2.3,1.1 3.2,3 3.2,3.2 l 0,0.1 4.1,0 0,-1.3 C 23,15.7 21.9,13 18.5,13 Z"
|
||||
id="path15"
|
||||
style="fill:#ffffff" /></g></g><g
|
||||
transform="matrix(2.2768478,0,0,-2.2768478,4.7264277,60.413755)"
|
||||
id="g17"
|
||||
style="fill:#ffffff"><g
|
||||
id="g19"
|
||||
style="fill:#ffffff"><circle
|
||||
cx="18.5"
|
||||
cy="8.5"
|
||||
r="2.5"
|
||||
id="circle21"
|
||||
style="fill:#ffffff" /></g><g
|
||||
id="g23"
|
||||
style="fill:#ffffff"><path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 18.5,13 c -1.2,0 -2.1,0.3 -2.8,0.8 2.3,1.1 3.2,3 3.2,3.2 l 0,0.1 4.1,0 0,-1.3 C 23,15.7 21.9,13 18.5,13 Z"
|
||||
id="path25"
|
||||
style="fill:#ffffff" /></g></g><g
|
||||
transform="matrix(2.2768478,0,0,-2.2768478,4.7264277,60.413755)"
|
||||
id="g27"
|
||||
style="fill:#ffffff"><g
|
||||
id="g29"
|
||||
style="fill:#ffffff"><circle
|
||||
cx="5.5"
|
||||
cy="8.5"
|
||||
r="2.5"
|
||||
id="circle31"
|
||||
style="fill:#ffffff" /></g><g
|
||||
id="g33"
|
||||
style="fill:#ffffff"><path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 5.5,13 c 1.2,0 2.1,0.3 2.8,0.8 -2.3,1.1 -3.2,3 -3.2,3.2 l 0,0.1 -4.1,0 0,-1.3 C 1,15.7 2.1,13 5.5,13 Z"
|
||||
id="path35"
|
||||
style="fill:#ffffff" /></g></g></g></svg>
|
After Width: | Height: | Size: 4.0 KiB |
56
retroshare-gui/src/gui/icons/settings/permissions.svg
Normal file
@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="permissions.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.11875"
|
||||
inkscape:cx="42.387211"
|
||||
inkscape:cy="32.235396"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#37abc8;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(0.09588277,0,0,-0.09588277,8.3719577,55.345687)"
|
||||
id="g3"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 442.925,84.45 -188.4,-82.5 c -6.1,-2.6 -12.9,-2.6 -19,0 l -188.4,82.5 c -8.6,3.8 -14.2,12.3 -14.2,21.7 l 0,171.9 c 0,116.9 95.2,212 212.1,212 116.9,0 212.1,-95.1 212.1,-212.1 l 0,-171.8 c 0,-9.4 -5.6,-18 -14.2,-21.7 z m -197.9,358.3 0,-197.7 -164.7,0 0,-123.4 164.7,-72.1 0,0 0,195.5 164.7,0 0,33 c 0,90.8 -73.9,164.7 -164.7,164.7 z"
|
||||
id="path5" /></g></g></svg>
|
After Width: | Height: | Size: 2.4 KiB |
57
retroshare-gui/src/gui/icons/settings/plugins.svg
Normal file
@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="plugins.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.6195029"
|
||||
inkscape:cx="31.470461"
|
||||
inkscape:cy="39.107427"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#428404;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(0.07725982,0,0,-0.07725982,14.274157,55.268838)"
|
||||
id="g3"><g
|
||||
id="extension"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 471.75,255 -38.25,0 0,-102 c 0,-28.05 -22.95,-51 -51,-51 l -102,0 0,-38.25 C 280.5,28.05 252.45,0 216.75,0 181.05,0 153,28.05 153,63.75 L 153,102 51,102 C 22.95,102 0,124.95 0,153 l 0,96.9 38.25,0 c 38.25,0 68.85,30.6 68.85,68.85 0,38.25 -30.6,68.85 -68.85,68.85 l -38.25,0 0,96.9 c 0,28.05 22.95,51 51,51 l 96.9,0 0,-38.25 c 0,-38.25 30.6,-68.85 68.85,-68.85 38.25,0 68.85,30.6 68.85,68.85 l 0,38.25 96.9,0 c 28.05,0 51,-22.95 51,-51 l 0,-102 38.25,0 c 35.7,0 63.75,-28.05 63.75,-63.75 0,-35.7 -28.05,-63.75 -63.75,-63.75 z"
|
||||
id="path6" /></g></g></g></svg>
|
After Width: | Height: | Size: 2.6 KiB |
78
retroshare-gui/src/gui/icons/settings/posted.svg
Normal file
@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
enable-background="new 0 0 64 64"
|
||||
height="64px"
|
||||
version="1.1"
|
||||
viewBox="0 0 64 64"
|
||||
width="64px"
|
||||
xml:space="preserve"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="posted.svg"
|
||||
inkscape:export-filename="C:\Qt\RetroShare\RetroShare\retroshare-gui\src\gui\icons\png\posted.png"
|
||||
inkscape:export-xdpi="180"
|
||||
inkscape:export-ydpi="180"><metadata
|
||||
id="metadata34"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs32" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview30"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.6875"
|
||||
inkscape:cx="-80.135593"
|
||||
inkscape:cy="31.186442"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" /><g
|
||||
id="g5"
|
||||
transform="translate(0.81355932,-0.27118644)"
|
||||
style="fill:#808000;fill-opacity:1"><circle
|
||||
style="fill:#808000;fill-opacity:1"
|
||||
id="circle7"
|
||||
r="32"
|
||||
cy="32"
|
||||
cx="32" /></g><g
|
||||
style="opacity:0.2"
|
||||
id="g9"
|
||||
transform="translate(0.81355932,-0.27118644)"><g
|
||||
id="g11"><path
|
||||
style="fill:#231f20"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13"
|
||||
d="m 32,11.914 c -12.15,0 -22,9.85 -22,22 0,12.15 9.85,22 22,22 12.15,0 22,-9.85 22,-22 0,-12.15 -9.85,-22 -22,-22 z M 14.053,24.72 c 0.21,0.844 -0.21,2.36 -0.534,4.538 -0.378,2.54 1.647,1.991 1.579,4.393 -0.068,2.402 1.785,3.398 1.544,3.638 -0.24,0.24 -1.201,0.583 0.24,3.707 1.441,3.123 2.677,4.05 2.849,5.731 0.172,1.682 2.025,4.153 2.025,4.153 l 0.103,0.462 c -5.994,-3.501 -10.032,-10 -10.032,-17.428 0,-3.311 0.807,-6.435 2.226,-9.194 z m 9.968,27.086 c -0.103,-0.446 0.103,-2.849 2.986,-3.809 2.883,-0.961 2.402,-2.231 3.26,-3.466 0.858,-1.235 1.03,-2.162 -0.618,-2.54 -1.647,-0.378 -3.363,-0.652 -4.839,-2.986 -1.476,-2.334 -3.535,-2.402 -4.633,-3.123 -1.098,-0.721 -1.991,-0.583 -3.329,-0.755 -1.338,-0.172 -0.892,-3.912 -0.824,-4.736 0.069,-0.824 -0.824,0.275 -1.476,-0.296 -0.652,-0.571 0.618,-3.239 1.888,-3.136 1.27,0.103 0.961,0.721 1.201,2.128 0.24,1.407 0.686,1.064 0.789,0.618 0.103,-0.446 0.172,-2.334 0.618,-2.917 0.446,-0.583 0.549,-2.162 1.991,-2.094 1.441,0.069 1.407,-1.304 2.471,-0.858 1.064,0.446 1.819,0.103 1.133,-0.48 -0.686,-0.583 -0.309,-1.167 0.858,-0.789 1.167,0.378 1.235,-1.682 1.03,-2.746 -0.206,-1.064 -1.064,-1.373 -2.128,-0.721 -1.064,0.652 -1.853,0.378 -1.304,-0.721 0.549,-1.098 2.711,-0.172 4.015,0.378 1.304,0.549 1.647,-1.441 0.927,-2.402 -0.721,-0.961 -0.755,-0.515 -2.814,-0.378 -0.82,0.055 -0.736,-0.386 -0.338,-0.936 2.214,-0.838 4.612,-1.3 7.116,-1.3 2.535,0 4.96,0.474 7.197,1.332 0.282,0.394 0.396,0.704 0.2,0.835 -0.824,0.549 -1.544,0.059 -1.304,1.591 0.24,1.532 1.373,3.352 2.265,2.751 0.892,-0.601 2.437,0.154 1.098,0.978 -1.338,0.824 -1.716,0.755 -2.334,1.304 -0.618,0.549 -0.343,0.275 0.275,0.961 0.618,0.686 0.549,0.824 -0.309,1.167 -0.858,0.343 -1.373,1.098 -0.549,1.956 0.824,0.858 1.373,1.579 2.299,0 0.927,-1.579 1.098,-2.951 1.888,-2.54 0.789,0.412 1.682,1.682 2.265,0.961 0.583,-0.721 0.48,-1.201 1.27,-0.652 0.789,0.549 3.707,0.583 1.75,2.025 -1.956,1.441 -1.613,2.059 -2.54,1.888 -0.927,-0.172 -5.114,-1.064 -6.075,1.27 -0.961,2.334 -4.462,4.187 -2.643,6.452 1.819,2.265 1.407,3.912 4.015,4.256 2.608,0.343 3.947,-0.824 4.599,0.378 0.652,1.202 0.137,1.339 0.172,3.157 0.017,0.902 0.498,2.601 0.978,4.089 -3.672,3.81 -8.821,6.188 -14.518,6.188 -2.868,0 -5.597,-0.606 -8.07,-1.69 0.074,-0.285 0.112,-0.501 0.091,-0.592 z" /></g><g
|
||||
id="g15"><path
|
||||
style="fill:#231f20"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path17"
|
||||
d="m 32.086,18.207 c 0.632,-0.38 0.686,0.137 1.235,-1.613 0.549,-1.75 -2.059,-1.991 -3.295,-1.785 -1.235,0.206 -0.686,0.721 -0.686,0.721 0.412,0.652 0.684,3.054 -0.053,3.947 -0.736,0.892 0.602,1.064 1.185,0.24 0.585,-0.824 0.93,-1.099 1.614,-1.51 z" /></g></g><g
|
||||
id="g19"
|
||||
transform="translate(0.81355932,-0.27118644)"><g
|
||||
id="g21"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path23"
|
||||
d="m 32,10.087 c -12.15,0 -22,9.85 -22,22 0,12.15 9.85,22 22,22 12.15,0 22,-9.85 22,-22 0,-12.15 -9.85,-22 -22,-22 z M 14.053,22.893 c 0.21,0.844 -0.21,2.36 -0.534,4.538 -0.378,2.54 1.647,1.991 1.579,4.393 -0.068,2.402 1.785,3.398 1.544,3.638 -0.24,0.24 -1.201,0.583 0.24,3.707 1.441,3.123 2.677,4.05 2.849,5.731 0.172,1.682 2.025,4.153 2.025,4.153 l 0.103,0.462 c -5.994,-3.501 -10.032,-10 -10.032,-17.428 0,-3.311 0.807,-6.435 2.226,-9.194 z m 9.968,27.086 c -0.103,-0.446 0.103,-2.849 2.986,-3.809 2.883,-0.961 2.402,-2.231 3.26,-3.466 0.858,-1.235 1.03,-2.162 -0.618,-2.54 C 28.002,39.786 26.286,39.512 24.81,37.178 23.334,34.844 21.275,34.776 20.177,34.055 19.079,33.334 18.186,33.472 16.848,33.3 15.51,33.128 15.956,29.388 16.024,28.564 16.093,27.74 15.2,28.839 14.548,28.268 c -0.652,-0.571 0.618,-3.239 1.888,-3.136 1.27,0.103 0.961,0.721 1.201,2.128 0.24,1.407 0.686,1.064 0.789,0.618 0.103,-0.446 0.172,-2.334 0.618,-2.917 0.446,-0.583 0.549,-2.162 1.991,-2.093 1.441,0.069 1.407,-1.304 2.471,-0.858 1.064,0.446 1.819,0.103 1.133,-0.48 -0.686,-0.583 -0.309,-1.167 0.858,-0.789 1.167,0.378 1.235,-1.682 1.03,-2.746 -0.206,-1.064 -1.064,-1.373 -2.128,-0.721 -1.064,0.652 -1.853,0.378 -1.304,-0.721 0.549,-1.098 2.711,-0.172 4.015,0.378 1.304,0.549 1.647,-1.441 0.927,-2.402 -0.721,-0.961 -0.755,-0.515 -2.814,-0.378 -0.82,0.055 -0.736,-0.386 -0.338,-0.936 2.214,-0.838 4.612,-1.3 7.116,-1.3 2.535,0 4.96,0.474 7.197,1.332 0.282,0.394 0.396,0.704 0.2,0.835 -0.824,0.549 -1.544,0.059 -1.304,1.591 0.24,1.532 1.373,3.352 2.265,2.751 0.892,-0.601 2.437,0.154 1.098,0.978 -1.338,0.824 -1.716,0.755 -2.334,1.304 -0.618,0.549 -0.343,0.275 0.275,0.961 0.618,0.686 0.549,0.824 -0.309,1.167 -0.858,0.343 -1.373,1.098 -0.549,1.956 0.824,0.858 1.373,1.579 2.299,0 0.927,-1.579 1.098,-2.951 1.888,-2.54 0.789,0.412 1.682,1.682 2.265,0.961 0.583,-0.721 0.48,-1.201 1.27,-0.652 0.789,0.549 3.707,0.583 1.75,2.025 -1.956,1.441 -1.613,2.059 -2.54,1.888 -0.927,-0.172 -5.114,-1.064 -6.075,1.27 -0.961,2.334 -4.462,4.187 -2.643,6.452 1.819,2.265 1.407,3.912 4.015,4.256 2.608,0.343 3.947,-0.824 4.599,0.378 0.652,1.201 0.137,1.339 0.172,3.157 0.017,0.902 0.498,2.601 0.978,4.089 -3.672,3.81 -8.821,6.188 -14.518,6.188 -2.868,0 -5.597,-0.606 -8.07,-1.69 0.074,-0.286 0.112,-0.502 0.091,-0.593 z" /></g><g
|
||||
id="g25"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27"
|
||||
d="m 32.086,16.38 c 0.632,-0.38 0.686,0.137 1.235,-1.613 0.549,-1.75 -2.059,-1.991 -3.295,-1.785 -1.235,0.206 -0.686,0.721 -0.686,0.721 0.412,0.652 0.684,3.054 -0.053,3.947 -0.736,0.892 0.602,1.064 1.185,0.24 0.583,-0.824 0.93,-1.099 1.614,-1.51 z" /></g></g><g
|
||||
id="Layer_2" /></svg>
|
After Width: | Height: | Size: 7.4 KiB |
77
retroshare-gui/src/gui/icons/settings/profile.svg
Normal file
@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="profile.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.2390057"
|
||||
inkscape:cx="51.590079"
|
||||
inkscape:cy="41.119245"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#8800aa;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(0.11606694,0,0,-0.11606694,7.5674886,58.025781)"
|
||||
id="g3"><g
|
||||
id="g5"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 382.93,100.232 -94.965,0 0,-0.833 c 0,-13.808 -11.193,-25 -25,-25 l -17.775,0 c -0.524,-13.343 -11.504,-24 -24.975,-24 l -17.5,0 c -13.471,0 -24.449,10.657 -24.975,24 l -17.775,0 c -13.807,0 -25,11.192 -25,25 l 0,0.833 -94.965,0 c -22.056,0 -40,17.944 -40,40 L 0,332.53 c 0,22.057 17.944,40 40,40 l 342.93,0 c 22.055,0 40,-17.943 40,-40 l 0,-192.298 c 0,-22.056 -17.946,-40 -40,-40 z M 211.465,74.714 c 8.422,0 15.25,6.827 15.25,15.25 0,8.423 -6.828,15.25 -15.25,15.25 -8.422,0 -15.25,-6.827 -15.25,-15.25 0,-8.423 6.828,-15.25 15.25,-15.25 z M 392.93,332.529 c 0,5.515 -4.486,10 -10,10 l -342.93,0 c -5.514,0 -10,-4.485 -10,-10 l 0,-192.297 c 0,-5.514 4.486,-10 10,-10 l 95.518,0 0,0.065 c 0,13.808 11.193,25 25,25 l 101.895,0 c 13.807,0 25,-11.192 25,-25 l 0,-0.065 95.518,0 c 5.515,0 10,4.486 10,10 l -10e-4,192.297 0,0 z"
|
||||
id="path7" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 353.165,184.131 -138.066,0 c -5.522,0 -10,4.477 -10,10 0,5.523 4.478,10 10,10 l 138.066,0 c 5.521,0 10,-4.477 10,-10 0,-5.523 -4.477,-10 -10,-10 z"
|
||||
id="path9" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 353.165,234.132 -138.066,0 c -5.522,0 -10,4.477 -10,10 0,5.522 4.478,10 10,10 l 138.066,0 c 5.521,0 10,-4.478 10,-10 0,-5.524 -4.477,-10 -10,-10 z"
|
||||
id="path11" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 353.165,284.132 -138.066,0 c -5.522,0 -10,4.477 -10,10 0,5.522 4.478,10 10,10 l 138.066,0 c 5.521,0 10,-4.478 10,-10 0,-5.524 -4.477,-10 -10,-10 z"
|
||||
id="path13" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 154.844,264.318 -17.537,-8.074 -8.424,-7.104 -13.059,12.988 6.01,40.172 c 0.021,0.146 -0.016,0.297 -0.104,0.418 l -6.716,9.189 c -0.106,0.146 -0.276,0.232 -0.458,0.232 -0.182,0 -0.352,-0.086 -0.459,-0.232 l -6.715,-9.189 c -0.088,-0.121 -0.125,-0.271 -0.104,-0.418 l 6.01,-40.174 -13.057,-12.986 -8.424,7.104 -17.538,8.074 c -2.595,1.063 -5.655,3.222 -6.441,5.496 0,0 -19.063,45.383 -8.724,45.383 l 110.903,0 c 10.339,0 -8.723,-45.383 -8.723,-45.383 -1.128,-2.701 -3.845,-4.43 -6.44,-5.496 z"
|
||||
id="path15" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 114.557,248.884 c 17.937,0 31.32,-16.711 31.625,-44.734 0.195,-19.447 -9.066,-31.084 -31.625,-31.084 -22.559,0 -31.822,11.637 -31.625,31.084 0.304,28.023 13.689,44.734 31.625,44.734 z"
|
||||
id="path17" /></g></g></g></svg>
|
After Width: | Height: | Size: 4.6 KiB |
60
retroshare-gui/src/gui/icons/settings/server.svg
Normal file
@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="server.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="7.2390057"
|
||||
inkscape:cx="31.470461"
|
||||
inkscape:cy="39.107427"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#000080;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(0.70189291,0,0,-0.68982547,10.833114,51.063122)"
|
||||
id="g3"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 0.835,22 C 0.314,22.74 0,23.635 0,24.608 L 0,36.391 C 0,38.933 2.067,41 4.608,41 L 29,41 29,49.101 C 27.044,49.5 25.5,51.044 25.101,53 L 1,53 c -0.552,0 -1,0.447 -1,1 0,0.553 0.448,1 1,1 l 24.101,0 c 0.465,2.279 2.484,4 4.899,4 2.415,0 4.434,-1.721 4.899,-4 L 59,55 c 0.552,0 1,-0.447 1,-1 0,-0.553 -0.448,-1 -1,-1 L 34.899,53 C 34.5,51.044 32.956,49.5 31,49.101 L 31,41 55.392,41 C 57.933,41 60,38.933 60,36.392 L 60,24.608 C 60,23.634 59.686,22.74 59.165,22 L 0.835,22 Z M 10.5,35 C 8.019,35 6,32.981 6,30.5 6,28.019 8.019,26 10.5,26 12.981,26 15,28.019 15,30.5 15,32.981 12.981,35 10.5,35 Z M 33,54 c 0,1.654 -1.346,3 -3,3 -1.654,0 -3,-1.346 -3,-3 0,-1.654 1.346,-3 3,-3 1.654,0 3,1.346 3,3 z m 1,-24 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,-3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,-3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,-3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,-3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path5" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 55.392,1 4.608,1 C 2.067,1 0,3.067 0,5.608 L 0,17.391 C 0,18.365 0.314,19.26 0.835,20 l 58.329,0 C 59.686,19.26 60,18.365 60,17.392 L 60,5.608 C 60,3.067 57.933,1 55.392,1 Z M 10.5,16 C 8.019,16 6,13.981 6,11.5 6,9.019 8.019,7 10.5,7 12.981,7 15,9.019 15,11.5 15,13.981 12.981,16 10.5,16 Z M 34,11 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,-3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,-3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,-3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,-3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z m 2,3 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path7" /></g></g></svg>
|
After Width: | Height: | Size: 5.1 KiB |
56
retroshare-gui/src/gui/icons/settings/sound.svg
Normal file
@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="settings.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.6195029"
|
||||
inkscape:cx="21.567023"
|
||||
inkscape:cy="32.204206"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#800080;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(0.5125329,0,0,-0.5125329,7.6614546,56.198137)"
|
||||
id="g3"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 46.547,75.521 c 0,1.639 -0.947,3.128 -2.429,3.823 -0.573,0.271 -1.187,0.402 -1.797,0.402 -0.966,0 -1.923,-0.332 -2.696,-0.973 l -23.098,-19.14 -12.302,0 C 1.892,59.635 0,57.742 0,55.409 L 0,38.576 C 0,36.242 1.892,34.35 4.225,34.35 l 12.303,0 23.098,-19.14 c 1.262,-1.046 3.012,-1.269 4.493,-0.569 1.481,0.695 2.429,2.185 2.429,3.823 l -0.001,57.057 0,0 z m 16.237,-6.602 c -0.103,0.007 -0.202,0.011 -0.304,0.011 -1.116,0 -2.192,-0.441 -2.987,-1.237 l -0.565,-0.567 c -1.482,-1.479 -1.656,-3.822 -0.408,-5.504 3.164,-4.266 4.834,-9.323 4.834,-14.628 0,-5.706 -1.896,-11.058 -5.484,-15.478 -1.366,-1.68 -1.24,-4.12 0.291,-5.65 l 0.564,-0.565 c 0.844,-0.844 1.975,-1.304 3.199,-1.231 1.192,0.06 2.305,0.621 3.061,1.545 4.977,6.09 7.606,13.484 7.606,21.38 0,7.354 -2.325,14.354 -6.725,20.24 -0.735,0.981 -1.859,1.597 -3.082,1.684 z m 17.468,13.057 c -0.764,0.903 -1.869,1.445 -3.052,1.495 -0.058,0.002 -0.117,0.004 -0.177,0.004 -1.119,0 -2.193,-0.442 -2.988,-1.237 L 73.48,81.683 c -1.551,-1.55 -1.656,-4.029 -0.246,-5.707 6.814,-8.104 10.568,-18.396 10.568,-28.982 0,-11.011 -4.019,-21.611 -11.314,-29.847 -1.479,-1.672 -1.404,-4.203 0.17,-5.783 l 0.554,-0.555 c 0.822,-0.826 1.89,-1.281 3.115,-1.242 1.163,0.033 2.263,0.547 3.036,1.417 8.818,9.928 13.675,22.718 13.675,36.01 0.002,12.789 -4.539,25.213 -12.786,34.982 z"
|
||||
id="path5" /></g></g></svg>
|
After Width: | Height: | Size: 3.3 KiB |
96
retroshare-gui/src/gui/icons/settings/webinterface.svg
Normal file
After Width: | Height: | Size: 9.7 KiB |
77
retroshare-gui/src/gui/icons/svg/circles.svg
Normal file
@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="circles.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.11875"
|
||||
inkscape:cx="12.911357"
|
||||
inkscape:cy="29.970313"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#039bd5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32"
|
||||
inkscape:export-filename="C:\Qt\RetroShare\RetroShare\retroshare-gui\src\gui\icons\png\circles.png"
|
||||
inkscape:export-xdpi="144"
|
||||
inkscape:export-ydpi="144" /><g
|
||||
transform="matrix(0.38197934,0,0,-0.38197934,-230.43126,-30.25739)"
|
||||
id="g3-7"><g
|
||||
id="circles"><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 374.85,357 c -20.399,58.65 -76.5,102 -145.35,102 -84.15,0 -153,-68.85 -153,-153 0,-66.3 43.35,-122.4 102,-145.35 0,-2.55 0,-5.1 0,-7.65 0,-25.5 5.1,-51 12.75,-73.95 C 84.15,96.9 0,191.25 0,306 0,433.5 102,535.5 229.5,535.5 344.25,535.5 438.6,451.35 456.45,344.25 433.5,351.9 408,357 382.5,357 c -2.55,0 -5.1,0 -7.65,0 z"
|
||||
id="path6-4" /><path
|
||||
style="fill:#ffffff"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 382.5,0 c -84.15,0 -153,68.85 -153,153 0,84.15 68.85,153 153,153 84.15,0 153,-68.85 153,-153 0,-84.15 -68.85,-153 -153,-153 z m 0,229.5 c -43.35,0 -76.5,-33.15 -76.5,-76.5 0,-43.35 33.15,-76.5 76.5,-76.5 43.35,0 76.5,33.15 76.5,76.5 0,43.35 -33.15,76.5 -76.5,76.5 z"
|
||||
id="path8" /></g></g><g
|
||||
transform="matrix(0.08545504,0,0,-0.08545504,8.3770531,55.388524)"
|
||||
id="g3"
|
||||
style="fill:#ffffff"><g
|
||||
id="circles-4"
|
||||
style="fill:#ffffff"><path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 374.85,357 c -20.399,58.65 -76.5,102 -145.35,102 -84.15,0 -153,-68.85 -153,-153 0,-66.3 43.35,-122.4 102,-145.35 0,-2.55 0,-5.1 0,-7.65 0,-25.5 5.1,-51 12.75,-73.95 C 84.15,96.9 0,191.25 0,306 0,433.5 102,535.5 229.5,535.5 344.25,535.5 438.6,451.35 456.45,344.25 433.5,351.9 408,357 382.5,357 c -2.55,0 -5.1,0 -7.65,0 z"
|
||||
id="path6"
|
||||
style="fill:#ffffff" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 382.5,0 c -84.15,0 -153,68.85 -153,153 0,84.15 68.85,153 153,153 84.15,0 153,-68.85 153,-153 0,-84.15 -68.85,-153 -153,-153 z m 0,229.5 c -43.35,0 -76.5,-33.15 -76.5,-76.5 0,-43.35 33.15,-76.5 76.5,-76.5 43.35,0 76.5,33.15 76.5,76.5 0,43.35 -33.15,76.5 -76.5,76.5 z"
|
||||
id="path8-6"
|
||||
style="fill:#ffffff" /></g></g></g></svg>
|
After Width: | Height: | Size: 3.9 KiB |
7
retroshare-gui/src/gui/icons/svg/keyring.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 44 44" enable-background="new 0 0 44 44" width="512px" height="512px">
|
||||
<g>
|
||||
<circle cx="18" cy="26" r="5" fill="#039bd5"/>
|
||||
<path d="m22,0c-12.2,0-22,9.8-22,22s9.8,22 22,22 22-9.8 22-22-9.8-22-22-22zm12.7,12.1l-8.8,8.8c-0.2,0.2-0.2,0.4-0.1,0.6 0.8,1.3 1.2,2.8 1.2,4.5 0,5-4,9-9,9s-9-4-9-9 4-9 9-9c1.6,0 3.1,0.4 4.5,1.2 0.2,0.1 0.4,0.1 0.6-0.1l.8-.8c0.2-0.2 0.2-0.5 0-0.7l-.5-.5c-0.4-0.4-0.4-1 0-1.4l1.4-1.4c0.4-0.4 1-0.4 1.4,0l.5,.5c0.2,0.2 0.5,0.2 0.7,0l.5-.5c0.2-0.2 0.2-0.5 0-0.7l-.5-.5c-0.4-0.4-0.4-1 0-1.4l1.4-1.4c0.2-0.2 0.5-0.3 0.7-0.3s0.5,0.1 0.7,0.3l.5,.5c0.2,0.2 0.5,0.2 0.7,0l.5-.5c0.2-0.2 0.5-0.3 0.7-0.3s0.5,0.1 0.7,0.3l1.4,1.4c0.2,0.2 0.3,0.5 0.3,0.7s-0.1,0.5-0.3,0.7z" fill="#039bd5"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 877 B |
54
retroshare-gui/src/gui/icons/svg/network-puplic.svg
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="network-puplic.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.6195029"
|
||||
inkscape:cx="32.25547"
|
||||
inkscape:cy="36.730796"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#039bd5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff"
|
||||
d="m 51.131021,19.893834 c -2.350751,4.752856 -5.490877,9.298491 -8.762646,13.357376 0.473425,1.843017 0.883961,3.593085 1.24087,5.232295 1.595336,0.146765 2.897477,1.311088 3.25568,2.836539 1.770699,0.236467 3.57667,0.40614 5.40962,0.494559 1.461413,-3.001818 2.282642,-6.370463 2.282642,-9.927293 0,-4.398725 -1.255978,-8.50895 -3.426166,-11.993476 z m -7.79791,31.601998 c -0.102848,-1.00033 -0.3335,-2.980526 -0.779786,-5.704267 -1.612074,-0.316918 -2.848078,-1.684234 -2.969972,-3.35693 -1.498303,-0.347647 -2.958254,-0.73185 -4.373683,-1.143691 -0.639371,0.655627 -1.264437,1.283137 -1.86838,1.877651 -1.299373,1.278897 -2.560561,2.467759 -3.750729,3.555211 0.198774,0.453274 0.310592,0.952718 0.310592,1.478644 0,0.627175 -0.157979,1.217951 -0.434917,1.736085 1.26833,1.662297 2.685378,3.219593 4.263653,4.61958 3.481591,-0.293194 6.742156,-1.373486 9.603222,-3.062283 z m -15.64148,0.08928 c -0.45604,0.20153 -0.958889,0.315457 -1.488562,0.315457 -0.70844,0 -1.368776,-0.203807 -1.931757,-0.55063 -0.63628,0.525434 -1.196338,0.978071 -1.66165,1.348135 2.371228,1.051858 4.954061,1.709262 7.665617,1.889993 -0.920213,-0.954994 -1.779157,-1.960692 -2.583648,-3.002955 z m -1.488562,-7.080856 c 0.629618,0 1.222347,0.158794 1.741778,0.437517 1.457519,-1.33432 3.028797,-2.828249 4.649651,-4.456735 -3.797214,-1.235837 -7.215748,-2.631428 -10.116961,-3.965592 0.930613,2.643624 2.08388,5.365579 3.508403,7.995868 0.07216,-0.0041 0.143674,-0.01107 0.217129,-0.01107 z M 17.953192,29.563413 c -0.141565,-0.608328 -0.273857,-1.208043 -0.397703,-1.798171 -0.477164,0.994003 -0.900865,1.953216 -1.278406,2.869857 0.706653,0.399971 1.456537,0.813274 2.250795,1.235347 -0.209663,-0.790197 -0.401117,-1.561691 -0.574686,-2.307033 z m 0.769712,-9.506524 c 0.130017,0.01169 0.258414,0.02955 0.384369,0.05439 2.326204,-3.555379 5.298774,-7.231347 9.088513,-10.6901851 -3.711887,0.5938571 -7.127174,2.0876171 -10.013278,4.2514681 0.03977,1.036093 0.163993,3.335149 0.540396,6.384265 z m 2.469062,1.275984 c 0.55632,0.64717 0.894862,1.486598 0.894862,2.405027 0,1.50627 -0.906398,2.80273 -2.201229,3.37871 0.132783,0.639694 0.275477,1.290278 0.429549,1.950124 0.316761,1.35724 0.694303,2.801593 1.138972,4.296169 0.180074,0.08813 0.360157,0.176178 0.543477,0.264429 3.387658,1.630439 7.643836,3.426 12.479908,4.925619 1.749085,-1.832785 3.524004,-3.804367 5.247089,-5.884352 C 37.917977,25.879645 35.261677,17.929614 31.387427,9.8320149 27.040555,13.498397 23.719702,17.487869 21.191966,21.332873 Z m 15.901682,17.98345 c 1.014644,0.278244 2.051061,0.541044 3.106491,0.784987 0.280677,-0.416383 0.645541,-0.770202 1.067615,-1.042911 -0.242647,-1.117838 -0.511138,-2.289158 -0.808553,-3.50809 -1.13019,1.322793 -2.260547,2.58203 -3.365553,3.766014 z M 50.958581,44.1558 c -1.466937,-0.09837 -2.915352,-0.245404 -4.341015,-0.434426 -0.349589,0.748912 -0.941345,1.361468 -1.675785,1.73641 0.306518,1.874393 0.513415,3.404386 0.647984,4.518174 2.109231,-1.611593 3.930154,-3.581713 5.368816,-5.820158 z M 20.25112,51.482228 c 0.535354,-0.416551 1.392022,-1.095253 2.48645,-2.001487 -0.147736,-0.398998 -0.232573,-0.828381 -0.232573,-1.278094 0,-1.096225 0.482051,-2.079649 1.242343,-2.757539 -1.843028,-3.443562 -3.239109,-7.016818 -4.29503,-10.380253 -1.472795,-0.739002 -2.827757,-1.46418 -4.055138,-2.152313 -2.025052,5.618137 -2.580724,10.010032 -2.708788,11.303067 1.921202,2.968509 4.514592,5.462432 7.562736,7.266619 z M 10.784086,40.595556 c 0.425165,-2.250807 1.177167,-5.344614 2.491983,-8.907625 -1.72861,-1.02797 -3.097388,-1.917298 -4.056923,-2.567068 -0.1106793,0.907048 -0.1687022,1.830017 -0.1687022,2.766488 0,3.083072 0.6175897,6.024277 1.7336422,8.708205 z M 9.6932293,26.513481 c 0.7983197,0.561687 2.3356327,1.605423 4.4801357,2.894563 0.429068,-1.024878 0.914522,-2.099322 1.461747,-3.210175 -0.585096,-0.654323 -0.944428,-1.514895 -0.944428,-2.459969 0,-1.289956 0.664879,-2.425993 1.66879,-3.088116 -0.255156,-2.006039 -0.403706,-3.708806 -0.489848,-4.988027 -2.979545,2.926566 -5.158671,6.664294 -6.1763967,10.851724 z M 33.768731,9.2197809 c 3.517352,7.4280021 6.0329,14.7219241 7.820985,21.1261851 3.087958,-3.973224 5.898813,-8.273453 7.942556,-12.703699 C 45.743995,12.937359 40.126026,9.7661919 33.768731,9.2197809 Z"
|
||||
id="path3" /></g></svg>
|
After Width: | Height: | Size: 6.1 KiB |
57
retroshare-gui/src/gui/icons/svg/person.svg
Normal file
@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg4155"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
xml:space="preserve"
|
||||
width="80"
|
||||
height="80"
|
||||
viewBox="0 0 80 80"
|
||||
sodipodi:docname="person.svg"><metadata
|
||||
id="metadata4161"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs4159" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="706"
|
||||
id="namedview4157"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.11875"
|
||||
inkscape:cx="39.496031"
|
||||
inkscape:cy="45.132469"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g4163" /><g
|
||||
id="g4163"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.25,0,0,-1.25,0,80)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
style="fill:#039bd5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /><g
|
||||
transform="matrix(3.3077817,0,0,-3.3077817,-7.5087657,74.88779)"
|
||||
id="g3"
|
||||
style="fill:#ffffff"><path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 9,9 c 0,-1.7 1.3,-3 3,-3 1.7,0 3,1.3 3,3 0,1.7 -1.3,3 -3,3 -1.7,0 -3,-1.3 -3,-3 z m 3,5 c -4.6,0 -6,3.3 -6,3.3 l 0,1.7 12,0 0,-1.7 c 0,0 -1.4,-3.3 -6,-3.3 z"
|
||||
id="path5"
|
||||
style="fill:#ffffff" /></g></g></svg>
|
After Width: | Height: | Size: 2.2 KiB |
@ -38,7 +38,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/looknfeel.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/appearance.svg") ; }
|
||||
virtual QString pageName() const { return tr("Appearance") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -38,7 +38,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/channels.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/channels.svg") ; }
|
||||
virtual QString pageName() const { return tr("Channels") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -40,7 +40,7 @@ class ChatPage : public ConfigPage
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/chat_24.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/chat.svg") ; }
|
||||
virtual QString pageName() const { return tr("Chat") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -39,7 +39,7 @@ class CryptoPage : public ConfigPage
|
||||
virtual bool save(QString &errmsg);
|
||||
/** Loads the settings for this page */
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/contact22.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/profile.svg") ; }
|
||||
virtual QString pageName() const { return tr("Node") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -37,7 +37,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/folder_doments.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/directories.svg") ; }
|
||||
virtual QString pageName() const { return tr("Directories") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -38,7 +38,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/konversation.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/forums.svg") ; }
|
||||
virtual QString pageName() const { return tr("Forum") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -41,7 +41,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/system_128.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/general.svg") ; }
|
||||
virtual QString pageName() const { return tr("General") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -42,7 +42,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/evolution.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/messages.svg") ; }
|
||||
virtual QString pageName() const { return tr("Message") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -36,7 +36,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/server_24x24.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/network.svg") ; }
|
||||
virtual QString pageName() const { return tr("Network") ; }
|
||||
|
||||
private:
|
||||
|
@ -81,7 +81,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/status_unknown.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/notify.svg") ; }
|
||||
virtual QString pageName() const { return tr("Notify") ; }
|
||||
virtual QString helpText() const ;
|
||||
|
||||
|
@ -38,7 +38,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/friends_128.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/people.svg") ; }
|
||||
virtual QString pageName() const { return tr("People") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -37,7 +37,7 @@ class PluginsPage : public ConfigPage
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/extension_32.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/plugins.svg") ; }
|
||||
virtual QString pageName() const { return tr("Plugins") ; }
|
||||
virtual QString helpText() const ;
|
||||
|
||||
|
@ -41,7 +41,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/posted_32.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/posted.svg") ; }
|
||||
virtual QString pageName() const { return tr("Posted") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -40,7 +40,7 @@ class RelayPage: public ConfigPage
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/server_24x24.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/server.svg") ; }
|
||||
virtual QString pageName() const { return tr("Relay") ; }
|
||||
virtual QString helpText() const ;
|
||||
|
||||
|
@ -45,7 +45,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/server_24x24.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/png/network.png") ; }
|
||||
virtual QString pageName() const { return tr("Network") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -40,7 +40,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load() {}
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/admin-24.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/permissions.svg") ; }
|
||||
virtual QString pageName() const { return tr("Permissions") ; }
|
||||
virtual QString helpText() const ;
|
||||
|
||||
|
@ -42,7 +42,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/sound.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/sound.svg") ; }
|
||||
virtual QString pageName() const { return tr("Sound") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -40,7 +40,7 @@ class TransferPage: public ConfigPage
|
||||
/** Loads the settings for this page */
|
||||
virtual void load() {}
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/ktorrent32.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/filesharing.svg") ; }
|
||||
virtual QString pageName() const { return tr("File transfer") ; }
|
||||
virtual QString helpText() const { return ""; }
|
||||
|
||||
|
@ -25,7 +25,7 @@ public:
|
||||
/** Loads the settings for this page */
|
||||
virtual void load();
|
||||
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/images/emblem-web.png") ; }
|
||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/webinterface.svg") ; }
|
||||
virtual QString pageName() const { return tr("Webinterface") ; }
|
||||
virtual QString helpText() const;
|
||||
|
||||
|
@ -120,6 +120,12 @@
|
||||
<property name="defaultDropAction">
|
||||
<enum>Qt::IgnoreAction</enum>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="textElideMode">
|
||||
<enum>Qt::ElideRight</enum>
|
||||
</property>
|
||||
|
@ -47,19 +47,19 @@ win32 {
|
||||
}
|
||||
|
||||
# Check for msys2
|
||||
isEmpty(MINGW_PREFIX) {
|
||||
PREFIX_MSYS2 = $$(MINGW_PREFIX)
|
||||
isEmpty(PREFIX_MSYS2) {
|
||||
exists(C:/msys32/mingw32/include) {
|
||||
message(MINGW_PREFIX is empty. Set it in your environment variables.)
|
||||
message(Found it here:C:\msys32\mingw32)
|
||||
MINGW_PREFIX = "C:\msys32\mingw32"
|
||||
PREFIX_MSYS2 = "C:\msys32\mingw32"
|
||||
}
|
||||
exists(C:/msys64/mingw32/include) {
|
||||
message(MINGW_PREFIX is empty. Set it in your environment variables.)
|
||||
message(Found it here:C:\msys64\mingw32)
|
||||
MINGW_PREFIX = "C:\msys64\mingw32"
|
||||
PREFIX_MSYS2 = "C:\msys64\mingw32"
|
||||
}
|
||||
}
|
||||
PREFIX_MSYS2 = $$(MINGW_PREFIX)
|
||||
!isEmpty(PREFIX_MSYS2) {
|
||||
message(msys2 is installed.)
|
||||
BIN_DIR += "$${PREFIX_MSYS2}/bin"
|
||||
|