removed clean up old icons, replaced some by svg

This commit is contained in:
defnax 2022-02-12 00:07:23 +01:00
parent 8105bfcbc8
commit dc0cddae7e
45 changed files with 652 additions and 62 deletions

View File

@ -75,7 +75,7 @@
#define IMAGE_COLLOPEN ":/icons/collections.png"
#define IMAGE_EDITSHARE ":/icons/png/pencil-edit-button.png"
#define IMAGE_MYFILES ":/icons/svg/folders1.svg"
#define IMAGE_UNSHAREEXTRA ":/images/button_cancel.png"
#define IMAGE_UNSHAREEXTRA ":/icons/cancel.svg"
/*define viewType_CB value */
#define VIEW_TYPE_TREE 0

View File

@ -2260,7 +2260,7 @@ void IdDialog::IdListCustomPopupMenu( QPoint )
contextMenu->addAction(QIcon(""),tr("Copy identity to clipboard"),this,SLOT(copyRetroshareLink())) ;
if(n_is_not_a_contact == 0)
contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/images/cancel.png"), tr("Remove from Contacts"), this, SLOT(removefromContacts()));
contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/icons/cancel.svg"), tr("Remove from Contacts"), this, SLOT(removefromContacts()));
contextMenu->addSeparator();
@ -2279,8 +2279,8 @@ void IdDialog::IdListCustomPopupMenu( QPoint )
contextMenu->addSeparator();
contextMenu->addAction(QIcon(""),tr("Copy identity to clipboard"),this,SLOT(copyRetroshareLink())) ;
contextMenu->addAction(ui->editIdentity);
contextMenu->addAction(ui->removeIdentity);
contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_EDIT),tr("Edit identity"),this,SLOT(editIdentity())) ;
contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/icons/cancel.svg"),tr("Delete identity"),this,SLOT(removeIdentity())) ;
}
}

View File

@ -302,7 +302,7 @@
<x>0</x>
<y>0</y>
<width>634</width>
<height>523</height>
<height>538</height>
</rect>
</property>
<layout class="QVBoxLayout" name="scrollAreaWidgetContentsVLayout">
@ -1091,10 +1091,6 @@ border-image: url(:/images/closepressed.png)
</item>
</layout>
<action name="editIdentity">
<property name="icon">
<iconset>
<normaloff>:/images/edit_16.png</normaloff>:/images/edit_16.png</iconset>
</property>
<property name="text">
<string>Edit identity</string>
</property>
@ -1103,19 +1099,11 @@ border-image: url(:/images/closepressed.png)
</property>
</action>
<action name="removeIdentity">
<property name="icon">
<iconset resource="../images.qrc">
<normaloff>:/images/delete.png</normaloff>:/images/delete.png</iconset>
</property>
<property name="text">
<string>Delete identity</string>
</property>
</action>
<action name="chatIdentity">
<property name="icon">
<iconset>
<normaloff>:/images/toaster/chat.png</normaloff>:/images/toaster/chat.png</iconset>
</property>
<property name="text">
<string>Chat with this peer</string>
</property>

View File

@ -141,7 +141,6 @@
#define IMAGE_OVERLAY ":/icons/star_overlay_128.png"
#define IMAGE_BWGRAPH ":/icons/png/bandwidth.png"
#define IMAGE_MESSENGER ":/images/rsmessenger48.png"
#define IMAGE_COLOR ":/images/highlight.png"
#define IMAGE_NEWRSCOLLECTION ":/images/library.png"
#define IMAGE_ADDSHARE ":/images/directoryadd_24x24_shadow.png"
@ -625,7 +624,7 @@ void MainWindow::createTrayIcon()
trayMenu->addSeparator();
#ifdef MESSENGER_WINDOW
trayMenu->addAction(QIcon(IMAGE_MESSENGER), tr("Open Messenger"), this, SLOT(showMessengerWindow()));
trayMenu->addAction(QIcon(), tr("Open Messenger"), this, SLOT(showMessengerWindow()));
#endif
trayMenu->addAction(QIcon(IMAGE_MESSAGES), tr("Open Messages"), this, SLOT(showMess()));
#ifdef RS_JSONAPI

View File

@ -42,7 +42,12 @@
#define IS_MESSAGE_UNREAD(flags) (flags & (RS_MSG_NEW | RS_MSG_UNREAD_BY_USER))
#define IMAGE_GROUP24 ":/images/user/group24.png"
#define IMAGE_COWORKERS ":/icons/groups/green.svg"
#define IMAGE_FRIENDS ":/icons/groups/blue.svg"
#define IMAGE_FAMILY ":/icons/groups/purple.svg"
#define IMAGE_FAVORITES ":/icons/groups/yellow.svg"
#define IMAGE_OTHERCONTACTS ":/icons/groups/pink.svg"
#define IMAGE_OTHERGROUPS ":/icons/groups/red.svg"
#define IMAGE_STAR_ON ":/images/star-on-16.png"
#define IMAGE_STAR_OFF ":/images/star-off-16.png"
@ -497,7 +502,7 @@ QVariant RsFriendListModel::sizeHintRole(const EntryIndex& e,int col) const
y_factor *= 3.0;
if(e.type == ENTRY_TYPE_GROUP)
y_factor = std::max(y_factor, 24.0f / 14.0f ); // allows to fit the 24 pixels icon for groups in the line
y_factor *= 1.5;
switch(col)
{
@ -871,8 +876,28 @@ QVariant RsFriendListModel::decorationRole(const EntryIndex& entry,int col) cons
switch(entry.type)
{
case ENTRY_TYPE_GROUP: return QVariant(FilesDefs::getIconFromQtResourcePath(IMAGE_GROUP24));
case ENTRY_TYPE_GROUP:
{
const HierarchicalGroupInformation *groupInfo = getGroupInfo(entry);
if (groupInfo->group_info.id.toStdString() == RS_GROUP_ID_FRIENDS.toStdString()) {
return QVariant(FilesDefs::getIconFromQtResourcePath(IMAGE_FRIENDS));
}
if (groupInfo->group_info.id.toStdString() == RS_GROUP_ID_FAMILY.toStdString()) {
return QVariant(FilesDefs::getIconFromQtResourcePath(IMAGE_FAMILY));
}
if (groupInfo->group_info.id.toStdString() == RS_GROUP_ID_COWORKERS.toStdString()) {
return QVariant(FilesDefs::getIconFromQtResourcePath(IMAGE_COWORKERS));
}
if (groupInfo->group_info.id.toStdString() == RS_GROUP_ID_OTHERS.toStdString()) {
return QVariant(FilesDefs::getIconFromQtResourcePath(IMAGE_OTHERCONTACTS));
}
if (groupInfo->group_info.id.toStdString() == RS_GROUP_ID_FAVORITES.toStdString()) {
return QVariant(FilesDefs::getIconFromQtResourcePath(IMAGE_FAVORITES));
}
return QVariant(FilesDefs::getIconFromQtResourcePath(IMAGE_OTHERGROUPS));
}
case ENTRY_TYPE_PROFILE:
{
if(!isProfileExpanded(entry))

View File

@ -53,7 +53,6 @@
#define ROLE_SORT_STATE Qt::UserRole + 4
#define ROLE_FILTER_REASON Qt::UserRole + 5
#define IMAGE_GROUP16 ":/images/user/group16.png"
#define IMAGE_FRIENDINFO ":/images/peerdetails_16x16.png"
static bool isSelected(FriendSelectionWidget::Modus modus, QTreeWidgetItem *item)
@ -382,10 +381,32 @@ void FriendSelectionWidget::secured_fillList()
// Add item to the list
ui->friendList->addTopLevelItem(groupItem);
QFontMetricsF fontMetrics(ui->friendList->font());
int avatarHeight = fontMetrics.height() * 1.5;
ui->friendList->setIconSize(QSize(avatarHeight, avatarHeight));
groupItem->setFlags(Qt::ItemIsUserCheckable | groupItem->flags());
groupItem->setChildIndicatorPolicy(QTreeWidgetItem::DontShowIndicatorWhenChildless);
groupItem->setTextAlignment(COLUMN_NAME, Qt::AlignLeft | Qt::AlignVCenter);
groupItem->setIcon(COLUMN_NAME, FilesDefs::getIconFromQtResourcePath(IMAGE_GROUP16));
if (groupInfo->id.toStdString() == RS_GROUP_ID_FRIENDS.toStdString()) {
groupItem->setIcon(COLUMN_NAME, FilesDefs::getIconFromQtResourcePath(":/icons/groups/blue.svg"));
}
else if (groupInfo->id.toStdString() == RS_GROUP_ID_FAMILY.toStdString()) {
groupItem->setIcon(COLUMN_NAME, FilesDefs::getIconFromQtResourcePath(":/icons/groups/purple.svg"));
}
else if (groupInfo->id.toStdString() == RS_GROUP_ID_COWORKERS.toStdString()) {
groupItem->setIcon(COLUMN_NAME, FilesDefs::getIconFromQtResourcePath(":/icons/groups/green.svg"));
}
else if (groupInfo->id.toStdString() == RS_GROUP_ID_OTHERS.toStdString()) {
groupItem->setIcon(COLUMN_NAME, FilesDefs::getIconFromQtResourcePath(":/icons/groups/pink.svg"));
}
else if (groupInfo->id.toStdString() == RS_GROUP_ID_FAVORITES.toStdString()) {
groupItem->setIcon(COLUMN_NAME, FilesDefs::getIconFromQtResourcePath(":/icons/groups/yellow.svg"));
}
else {
groupItem->setIcon(COLUMN_NAME, FilesDefs::getIconFromQtResourcePath(":/icons/groups/red.svg"));
}
groupItem->setData(COLUMN_DATA, ROLE_ID, QString::fromStdString(groupInfo->id.toStdString()));

View File

@ -38,6 +38,11 @@
<height>0</height>
</size>
</property>
<property name="font">
<font>
<pointsize>11</pointsize>
</font>
</property>
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>

View File

@ -68,15 +68,13 @@
#define IMAGE_MSG ":/icons/mail/write-mail.png"
#define IMAGE_CONNECT ":/images/connect_friend.png"
#define IMAGE_COPYLINK ":/images/copyrslink.png"
#define IMAGE_GROUP16 ":/images/user/group16.png"
#define IMAGE_GROUPS ":/icons/groups/colored.svg"
#define IMAGE_EDIT ":/icons/png/pencil-edit-button.png"
#define IMAGE_REMOVE ":/images/delete.png"
#define IMAGE_EXPAND ":/images/edit_add24.png"
#define IMAGE_COLLAPSE ":/images/edit_remove24.png"
#define IMAGE_REMOVE ":/icons/cancel.svg"
#define IMAGE_ADD ":/icons/png/add.png"
/* Images for Status icons */
#define IMAGE_AVAILABLE ":/images/user/identityavaiblecyan24.png"
#define IMAGE_PASTELINK ":/images/pasterslink.png"
#define IMAGE_GROUP24 ":/images/user/group24.png"
#define COLUMN_DATA 0 // column for storing the userdata id
@ -687,8 +685,8 @@ void NewFriendList::peerTreeWidgetCustomPopupMenu()
}
}
QMenu *groupsMenu = contextMenu.addMenu(FilesDefs::getIconFromQtResourcePath(IMAGE_GROUP16), tr("Groups"));
groupsMenu->addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_EXPAND), tr("Create new group"), this, SLOT(createNewGroup()));
QMenu *groupsMenu = contextMenu.addMenu(FilesDefs::getIconFromQtResourcePath(IMAGE_GROUPS), tr("Groups"));
groupsMenu->addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_ADD), tr("Create new group"), this, SLOT(createNewGroup()));
if (addToGroupMenu || moveToGroupMenu || foundGroup) {
if (addToGroupMenu) {
@ -763,8 +761,8 @@ void NewFriendList::peerTreeWidgetCustomPopupMenu()
if (RSLinkClipboard::empty(RetroShareLink::TYPE_CERTIFICATE))
action->setDisabled(true);
contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_EXPAND), tr("Expand all"), ui->peerTreeWidget, SLOT(expandAll()));
contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_COLLAPSE), tr("Collapse all"), ui->peerTreeWidget, SLOT(collapseAll()));
contextMenu.addAction(QIcon(""), tr("Expand all"), ui->peerTreeWidget, SLOT(expandAll()));
contextMenu.addAction(QIcon(""), tr("Collapse all"), ui->peerTreeWidget, SLOT(collapseAll()));
contextMenu.addSeparator();

View File

@ -264,7 +264,7 @@ QMenu *RSTreeWidget::createStandardContextMenu(QMenu *contextMenu)
QLabel *iconLabel = new QLabel(widget);
iconLabel->setObjectName("trans_Icon");
QPixmap pix = FilesDefs::getPixmapFromQtResourcePath(":/images/settings.png").scaledToHeight(QFontMetricsF(iconLabel->font()).height()*1.5);
QPixmap pix = FilesDefs::getPixmapFromQtResourcePath(":/icons/png/options2.png").scaledToHeight(QFontMetricsF(iconLabel->font()).height()*1.5);
iconLabel->setPixmap(pix);
iconLabel->setMaximumSize(iconLabel->frameSize().height() + pix.height(), pix.width());
hbox->addWidget(iconLabel);
@ -273,7 +273,7 @@ QMenu *RSTreeWidget::createStandardContextMenu(QMenu *contextMenu)
textLabel->setObjectName("trans_Text");
hbox->addWidget(textLabel);
QSpacerItem *spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
QSpacerItem *spacerItem = new QSpacerItem(40, 24, QSizePolicy::Expanding, QSizePolicy::Minimum);
hbox->addItem(spacerItem);
widget->setLayout(hbox);

View File

@ -41,7 +41,7 @@ CreateGroup::CreateGroup(const RsNodeGroupId &groupId, QWidget *parent)
mIsStandard = false;
ui.headerFrame->setHeaderImage(FilesDefs::getPixmapFromQtResourcePath(":/images/user/add_group256.png"));
ui.headerFrame->setHeaderImage(FilesDefs::getPixmapFromQtResourcePath(":/icons/groups/colored.svg"));
mGroupId = groupId;
@ -69,7 +69,7 @@ CreateGroup::CreateGroup(const RsNodeGroupId &groupId, QWidget *parent)
}
setWindowTitle(tr("Edit Group"));
ui.headerFrame->setHeaderImage(FilesDefs::getPixmapFromQtResourcePath(":/images/user/edit_group64.png"));
ui.headerFrame->setHeaderImage(FilesDefs::getPixmapFromQtResourcePath(":/icons/groups/colored.svg"));
ui.headerFrame->setHeaderText(tr("Edit Group"));
ui.groupName->setDisabled(mIsStandard);

View File

@ -42,13 +42,11 @@
/* Images for TreeWidget */
#define IMAGE_SUBSCRIBE ":/images/edit_add24.png"
#define IMAGE_UNSUBSCRIBE ":/images/cancel.png"
#define IMAGE_UNSUBSCRIBE ":/icons/cancel.svg"
#define IMAGE_INFO ":/images/info16.png"
//#define IMAGE_GROUPAUTHD ":/images/konv_message2.png"
#define IMAGE_COPYLINK ":/images/copyrslink.png"
#define IMAGE_EDIT ":/icons/png/pencil-edit-button.png"
#define IMAGE_SHARE ":/images/share-icon-16.png"
#define IMAGE_TABNEW ":/images/tab-new.png"
#define IMAGE_TABNEW ":/icons/newtab.svg"
#define IMAGE_DELETE ":/images/delete.png"
#define IMAGE_RETRIEVE ":/images/edit_add24.png"
#define IMAGE_COMMENT ""
@ -490,7 +488,7 @@ void GxsGroupFrameDialog::groupTreeCustomPopupMenu(QPoint point)
ctxMenu2->setEnabled(isSubscribed);
if (shareKeyType()) {
action = contextMnu.addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_SHARE), tr("Share publish permissions..."), this, SLOT(sharePublishKey()));
action = contextMnu.addAction(QIcon(""), tr("Share publish permissions..."), this, SLOT(sharePublishKey()));
action->setEnabled(!mGroupId.isNull() && isPublisher);
}

View File

@ -342,5 +342,16 @@
<file>icons/wire-circle.png</file>
<file>icons/folder-account.svg</file>
<file>icons/notification.svg</file>
<file>icons/groups/blue.svg</file>
<file>icons/groups/colored.svg</file>
<file>icons/groups/green.svg</file>
<file>icons/groups/indigo.svg</file>
<file>icons/groups/pink.svg</file>
<file>icons/groups/purple.svg</file>
<file>icons/groups/red.svg</file>
<file>icons/groups/yellow.svg</file>
<file>icons/newtab.svg</file>
<file>icons/newwindow.svg</file>
<file>icons/cancel.svg</file>
</qresource>
</RCC>

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0L11.34 .03L15.15 3.84L16.5 2.5C19.75 4.07 22.09 7.24 22.45 11H23.95C23.44 4.84 18.29 0 12 0M12 4C10.07 4 8.5 5.57 8.5 7.5C8.5 9.43 10.07 11 12 11C13.93 11 15.5 9.43 15.5 7.5C15.5 5.57 13.93 4 12 4M.05 13C.56 19.16 5.71 24 12 24L12.66 23.97L8.85 20.16L7.5 21.5C4.25 19.94 1.91 16.76 1.55 13H.05M12 13C8.13 13 5 14.57 5 16.5V18H19V16.5C19 14.57 15.87 13 12 13Z" /></svg>

After

Width:  |  Height:  |  Size: 658 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z" /></svg>

After

Width:  |  Height:  |  Size: 456 B

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
width="24"
height="24"
viewBox="0 0 24 24"
id="svg4"
sodipodi:docname="cancel.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="15.320647"
inkscape:cx="12.075208"
inkscape:cy="15.69777"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M 23.32884,4.886954 19.243587,0.80170168 12.097906,7.9473834 4.9522254,0.80170168 0.8669731,4.886954 l 7.1456817,7.145682 -7.1456817,7.145681 4.0852523,4.085253 7.1456806,-7.145681 7.145681,7.145681 4.085253,-4.085253 -7.145681,-7.145681 z"
id="path2"
style="fill:#d40000;fill-opacity:1;stroke-width:1.40386" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg9"
width="512"
height="512"
viewBox="0 0 512 512"
sodipodi:docname="blue.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs13" />
<sodipodi:namedview
id="namedview11"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.48535156"
inkscape:cx="181.31187"
inkscape:cy="174.1006"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g15">
<inkscape:grid
type="xygrid"
id="grid381" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g15">
<path
style="fill:#049bd5;stroke:none"
d="m 79.686042,62.328363 c -9.9424,1.4243 -19.5278,4.530101 -28,10.011501 -37.2555,24.104101 -37.3411,79.982206 -2,105.633206 14.2831,10.367 31.8671,13.384 49,10.793 8.134998,-1.231 16.089998,-4.524 22.999998,-8.956 54.83,-35.164 24.028,-126.940707 -41.999998,-117.481707 m 169.999998,-0.0031 c -14.465,1.969 -27.797,6.0094 -40,14.2461 -9.275,6.260399 -17.007,14.037999 -23.251,23.328702 -40.889,60.846995 12.639,140.498995 83.251,131.713995 11.703,-1.456 22.971,-5.589 33,-11.779 62.522,-38.59 47.838,-139.211098 -25,-155.509797 -9.079,-2.0317 -18.726,-3.262401 -28,-2 m 172,0 c -12.007,1.6343 -23.351,5.5022 -33,13.092599 -48.405,38.078198 -16.646,121.889198 46,114.196198 10.227,-1.256 20.411,-4.448 29,-10.234 53.089,-35.765 23.859,-126.019698 -42,-117.054797 M 86.686042,360.90007 c 0.1343,-48.672 26.609998,-101.819 69.999998,-126 -9.584,-20.55 -39.309,-24 -58.999998,-24 -30.318,0 -60.3191,-1.636 -81.6744,24 -14.4232099,17.315 -14.3255999,37.764 -14.3255999,59 0,26.227 -0.64791,53.856 28.9999999,64.301 16.8503,5.936 38.3818,2.699 56,2.699 m 271.999998,-126 c 43.407,24.19 69.866,77.31 70,126 17.618,0 39.15,3.237 56,-2.699 29.648,-10.445 29,-38.074 29,-64.301 0,-21.236 0.098,-41.685 -14.326,-59 -21.355,-25.636 -51.356,-24 -81.674,-24 -19.727,0 -49.4,3.416 -59,24 m -131,19.424 c -60.745,8 -98,54.247 -98,114.576 0,22.177 2.541,43.788 20.039,59.711 19.17,17.443 41.651,17.289 65.961,17.289 h 61 c 16.926,0 35.243,1.972 52,-0.428 66.485,-9.525 70.212,-96.046 40.302,-142.572 -30.398,-47.284 -89.396,-55.411 -141.302,-48.576 z"
id="path281" />
<path
style="fill:#000000"
id="path117"
d="" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg9"
width="512"
height="512"
viewBox="0 0 512 512"
sodipodi:docname="colored.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs13" />
<sodipodi:namedview
id="namedview11"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.48535156"
inkscape:cx="181.31187"
inkscape:cy="174.1006"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g15">
<inkscape:grid
type="xygrid"
id="grid381" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g15">
<path
style="fill:#049bd5;stroke:none;fill-opacity:1"
d="m 227.68604,254.32407 c -60.745,8 -98,54.247 -98,114.576 0,22.177 2.541,43.788 20.039,59.711 19.17,17.443 41.651,17.289 65.961,17.289 h 61 c 16.926,0 35.243,1.972 52,-0.428 66.485,-9.525 70.212,-96.046 40.302,-142.572 -30.398,-47.284 -89.396,-55.411 -141.302,-48.576 z"
id="path955" />
<path
style="fill:#d50421;stroke:none;fill-opacity:1"
d="m 358.68604,234.90007 c 43.407,24.19 69.866,77.31 70,126 17.618,0 39.15,3.237 56,-2.699 29.648,-10.445 29,-38.074 29,-64.301 0,-21.236 0.098,-41.685 -14.326,-59 -21.355,-25.636 -51.356,-24 -81.674,-24 -19.727,0 -49.4,3.416 -59,24"
id="path953" />
<path
style="fill:#00b400;stroke:none;fill-opacity:1"
d="m 86.686042,360.90007 c 0.1343,-48.672 26.609998,-101.819 69.999998,-126 -9.584,-20.55 -39.309,-24 -58.999998,-24 -30.318,0 -60.3191,-1.636 -81.6744,24 -14.4232099,17.315 -14.3255999,37.764 -14.3255999,59 0,26.227 -0.64791,53.856 28.9999999,64.301 16.8503,5.936 38.3818,2.699 56,2.699"
id="path951" />
<path
style="fill:#d50421;stroke:none;fill-opacity:1"
d="m 421.68604,62.325263 c -12.007,1.6343 -23.351,5.5022 -33,13.092599 -48.405,38.078198 -16.646,121.889198 46,114.196198 10.227,-1.256 20.411,-4.448 29,-10.234 53.089,-35.765 23.859,-126.019698 -42,-117.054797"
id="path949" />
<path
style="fill:#049bd5;stroke:none;fill-opacity:1"
d="m 249.68604,62.325263 c -14.465,1.969 -27.797,6.0094 -40,14.2461 -9.275,6.260399 -17.007,14.037999 -23.251,23.328702 -40.889,60.846995 12.639,140.498995 83.251,131.713995 11.703,-1.456 22.971,-5.589 33,-11.779 62.522,-38.59 47.838,-139.211098 -25,-155.509797 -9.079,-2.0317 -18.726,-3.262401 -28,-2"
id="path947" />
<path
style="fill:#00b400;stroke:none;fill-opacity:1"
d="m 79.686042,62.328363 c -9.9424,1.4243 -19.5278,4.530101 -28,10.011501 -37.2555,24.104101 -37.3411,79.982206 -2,105.633206 14.2831,10.367 31.8671,13.384 49,10.793 8.134998,-1.231 16.089998,-4.524 22.999998,-8.956 54.83,-35.164 24.028,-126.940707 -41.999998,-117.481707"
id="path281" />
<path
style="fill:#000000"
id="path117"
d="" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg9"
width="512"
height="512"
viewBox="0 0 512 512"
sodipodi:docname="green.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs13" />
<sodipodi:namedview
id="namedview11"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.48535156"
inkscape:cx="181.31187"
inkscape:cy="174.1006"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g15">
<inkscape:grid
type="xygrid"
id="grid381" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g15">
<path
style="fill:#00b400;stroke:none;fill-opacity:1"
d="m 79.686042,62.328363 c -9.9424,1.4243 -19.5278,4.530101 -28,10.011501 -37.2555,24.104101 -37.3411,79.982206 -2,105.633206 14.2831,10.367 31.8671,13.384 49,10.793 8.134998,-1.231 16.089998,-4.524 22.999998,-8.956 54.83,-35.164 24.028,-126.940707 -41.999998,-117.481707 m 169.999998,-0.0031 c -14.465,1.969 -27.797,6.0094 -40,14.2461 -9.275,6.260399 -17.007,14.037999 -23.251,23.328702 -40.889,60.846995 12.639,140.498995 83.251,131.713995 11.703,-1.456 22.971,-5.589 33,-11.779 62.522,-38.59 47.838,-139.211098 -25,-155.509797 -9.079,-2.0317 -18.726,-3.262401 -28,-2 m 172,0 c -12.007,1.6343 -23.351,5.5022 -33,13.092599 -48.405,38.078198 -16.646,121.889198 46,114.196198 10.227,-1.256 20.411,-4.448 29,-10.234 53.089,-35.765 23.859,-126.019698 -42,-117.054797 M 86.686042,360.90007 c 0.1343,-48.672 26.609998,-101.819 69.999998,-126 -9.584,-20.55 -39.309,-24 -58.999998,-24 -30.318,0 -60.3191,-1.636 -81.6744,24 -14.4232099,17.315 -14.3255999,37.764 -14.3255999,59 0,26.227 -0.64791,53.856 28.9999999,64.301 16.8503,5.936 38.3818,2.699 56,2.699 m 271.999998,-126 c 43.407,24.19 69.866,77.31 70,126 17.618,0 39.15,3.237 56,-2.699 29.648,-10.445 29,-38.074 29,-64.301 0,-21.236 0.098,-41.685 -14.326,-59 -21.355,-25.636 -51.356,-24 -81.674,-24 -19.727,0 -49.4,3.416 -59,24 m -131,19.424 c -60.745,8 -98,54.247 -98,114.576 0,22.177 2.541,43.788 20.039,59.711 19.17,17.443 41.651,17.289 65.961,17.289 h 61 c 16.926,0 35.243,1.972 52,-0.428 66.485,-9.525 70.212,-96.046 40.302,-142.572 -30.398,-47.284 -89.396,-55.411 -141.302,-48.576 z"
id="path281" />
<path
style="fill:#000000"
id="path117"
d="" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg9"
width="512"
height="512"
viewBox="0 0 512 512"
sodipodi:docname="indigo.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs13" />
<sodipodi:namedview
id="namedview11"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.48535156"
inkscape:cx="181.31187"
inkscape:cy="174.1006"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g15">
<inkscape:grid
type="xygrid"
id="grid381" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g15">
<path
style="fill:#5c6bc0;stroke:none;fill-opacity:1"
d="m 79.686042,62.328363 c -9.9424,1.4243 -19.5278,4.530101 -28,10.011501 -37.2555,24.104101 -37.3411,79.982206 -2,105.633206 14.2831,10.367 31.8671,13.384 49,10.793 8.134998,-1.231 16.089998,-4.524 22.999998,-8.956 54.83,-35.164 24.028,-126.940707 -41.999998,-117.481707 m 169.999998,-0.0031 c -14.465,1.969 -27.797,6.0094 -40,14.2461 -9.275,6.260399 -17.007,14.037999 -23.251,23.328702 -40.889,60.846995 12.639,140.498995 83.251,131.713995 11.703,-1.456 22.971,-5.589 33,-11.779 62.522,-38.59 47.838,-139.211098 -25,-155.509797 -9.079,-2.0317 -18.726,-3.262401 -28,-2 m 172,0 c -12.007,1.6343 -23.351,5.5022 -33,13.092599 -48.405,38.078198 -16.646,121.889198 46,114.196198 10.227,-1.256 20.411,-4.448 29,-10.234 53.089,-35.765 23.859,-126.019698 -42,-117.054797 M 86.686042,360.90007 c 0.1343,-48.672 26.609998,-101.819 69.999998,-126 -9.584,-20.55 -39.309,-24 -58.999998,-24 -30.318,0 -60.3191,-1.636 -81.6744,24 -14.4232099,17.315 -14.3255999,37.764 -14.3255999,59 0,26.227 -0.64791,53.856 28.9999999,64.301 16.8503,5.936 38.3818,2.699 56,2.699 m 271.999998,-126 c 43.407,24.19 69.866,77.31 70,126 17.618,0 39.15,3.237 56,-2.699 29.648,-10.445 29,-38.074 29,-64.301 0,-21.236 0.098,-41.685 -14.326,-59 -21.355,-25.636 -51.356,-24 -81.674,-24 -19.727,0 -49.4,3.416 -59,24 m -131,19.424 c -60.745,8 -98,54.247 -98,114.576 0,22.177 2.541,43.788 20.039,59.711 19.17,17.443 41.651,17.289 65.961,17.289 h 61 c 16.926,0 35.243,1.972 52,-0.428 66.485,-9.525 70.212,-96.046 40.302,-142.572 -30.398,-47.284 -89.396,-55.411 -141.302,-48.576 z"
id="path281" />
<path
style="fill:#000000"
id="path117"
d="" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg9"
width="512"
height="512"
viewBox="0 0 512 512"
sodipodi:docname="pink.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs13" />
<sodipodi:namedview
id="namedview11"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.48535156"
inkscape:cx="181.31187"
inkscape:cy="174.1006"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g15">
<inkscape:grid
type="xygrid"
id="grid381" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g15">
<path
style="fill:#e91e63;stroke:none;fill-opacity:1"
d="m 79.686042,62.328363 c -9.9424,1.4243 -19.5278,4.530101 -28,10.011501 -37.2555,24.104101 -37.3411,79.982206 -2,105.633206 14.2831,10.367 31.8671,13.384 49,10.793 8.134998,-1.231 16.089998,-4.524 22.999998,-8.956 54.83,-35.164 24.028,-126.940707 -41.999998,-117.481707 m 169.999998,-0.0031 c -14.465,1.969 -27.797,6.0094 -40,14.2461 -9.275,6.260399 -17.007,14.037999 -23.251,23.328702 -40.889,60.846995 12.639,140.498995 83.251,131.713995 11.703,-1.456 22.971,-5.589 33,-11.779 62.522,-38.59 47.838,-139.211098 -25,-155.509797 -9.079,-2.0317 -18.726,-3.262401 -28,-2 m 172,0 c -12.007,1.6343 -23.351,5.5022 -33,13.092599 -48.405,38.078198 -16.646,121.889198 46,114.196198 10.227,-1.256 20.411,-4.448 29,-10.234 53.089,-35.765 23.859,-126.019698 -42,-117.054797 M 86.686042,360.90007 c 0.1343,-48.672 26.609998,-101.819 69.999998,-126 -9.584,-20.55 -39.309,-24 -58.999998,-24 -30.318,0 -60.3191,-1.636 -81.6744,24 -14.4232099,17.315 -14.3255999,37.764 -14.3255999,59 0,26.227 -0.64791,53.856 28.9999999,64.301 16.8503,5.936 38.3818,2.699 56,2.699 m 271.999998,-126 c 43.407,24.19 69.866,77.31 70,126 17.618,0 39.15,3.237 56,-2.699 29.648,-10.445 29,-38.074 29,-64.301 0,-21.236 0.098,-41.685 -14.326,-59 -21.355,-25.636 -51.356,-24 -81.674,-24 -19.727,0 -49.4,3.416 -59,24 m -131,19.424 c -60.745,8 -98,54.247 -98,114.576 0,22.177 2.541,43.788 20.039,59.711 19.17,17.443 41.651,17.289 65.961,17.289 h 61 c 16.926,0 35.243,1.972 52,-0.428 66.485,-9.525 70.212,-96.046 40.302,-142.572 -30.398,-47.284 -89.396,-55.411 -141.302,-48.576 z"
id="path281" />
<path
style="fill:#000000"
id="path117"
d="" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg9"
width="512"
height="512"
viewBox="0 0 512 512"
sodipodi:docname="purple.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs13" />
<sodipodi:namedview
id="namedview11"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.48535156"
inkscape:cx="181.31187"
inkscape:cy="174.1006"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g15">
<inkscape:grid
type="xygrid"
id="grid381" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g15">
<path
style="fill:#9933cc;stroke:none;fill-opacity:1"
d="m 79.686042,62.328363 c -9.9424,1.4243 -19.5278,4.530101 -28,10.011501 -37.2555,24.104101 -37.3411,79.982206 -2,105.633206 14.2831,10.367 31.8671,13.384 49,10.793 8.134998,-1.231 16.089998,-4.524 22.999998,-8.956 54.83,-35.164 24.028,-126.940707 -41.999998,-117.481707 m 169.999998,-0.0031 c -14.465,1.969 -27.797,6.0094 -40,14.2461 -9.275,6.260399 -17.007,14.037999 -23.251,23.328702 -40.889,60.846995 12.639,140.498995 83.251,131.713995 11.703,-1.456 22.971,-5.589 33,-11.779 62.522,-38.59 47.838,-139.211098 -25,-155.509797 -9.079,-2.0317 -18.726,-3.262401 -28,-2 m 172,0 c -12.007,1.6343 -23.351,5.5022 -33,13.092599 -48.405,38.078198 -16.646,121.889198 46,114.196198 10.227,-1.256 20.411,-4.448 29,-10.234 53.089,-35.765 23.859,-126.019698 -42,-117.054797 M 86.686042,360.90007 c 0.1343,-48.672 26.609998,-101.819 69.999998,-126 -9.584,-20.55 -39.309,-24 -58.999998,-24 -30.318,0 -60.3191,-1.636 -81.6744,24 -14.4232099,17.315 -14.3255999,37.764 -14.3255999,59 0,26.227 -0.64791,53.856 28.9999999,64.301 16.8503,5.936 38.3818,2.699 56,2.699 m 271.999998,-126 c 43.407,24.19 69.866,77.31 70,126 17.618,0 39.15,3.237 56,-2.699 29.648,-10.445 29,-38.074 29,-64.301 0,-21.236 0.098,-41.685 -14.326,-59 -21.355,-25.636 -51.356,-24 -81.674,-24 -19.727,0 -49.4,3.416 -59,24 m -131,19.424 c -60.745,8 -98,54.247 -98,114.576 0,22.177 2.541,43.788 20.039,59.711 19.17,17.443 41.651,17.289 65.961,17.289 h 61 c 16.926,0 35.243,1.972 52,-0.428 66.485,-9.525 70.212,-96.046 40.302,-142.572 -30.398,-47.284 -89.396,-55.411 -141.302,-48.576 z"
id="path281" />
<path
style="fill:#000000"
id="path117"
d="" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg9"
width="512"
height="512"
viewBox="0 0 512 512"
sodipodi:docname="red.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs13" />
<sodipodi:namedview
id="namedview11"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.48535156"
inkscape:cx="181.31187"
inkscape:cy="174.1006"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g15">
<inkscape:grid
type="xygrid"
id="grid381" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g15">
<path
style="fill:#d00808;stroke:none;fill-opacity:1"
d="m 79.686042,62.328363 c -9.9424,1.4243 -19.5278,4.530101 -28,10.011501 -37.2555,24.104101 -37.3411,79.982206 -2,105.633206 14.2831,10.367 31.8671,13.384 49,10.793 8.134998,-1.231 16.089998,-4.524 22.999998,-8.956 54.83,-35.164 24.028,-126.940707 -41.999998,-117.481707 m 169.999998,-0.0031 c -14.465,1.969 -27.797,6.0094 -40,14.2461 -9.275,6.260399 -17.007,14.037999 -23.251,23.328702 -40.889,60.846995 12.639,140.498995 83.251,131.713995 11.703,-1.456 22.971,-5.589 33,-11.779 62.522,-38.59 47.838,-139.211098 -25,-155.509797 -9.079,-2.0317 -18.726,-3.262401 -28,-2 m 172,0 c -12.007,1.6343 -23.351,5.5022 -33,13.092599 -48.405,38.078198 -16.646,121.889198 46,114.196198 10.227,-1.256 20.411,-4.448 29,-10.234 53.089,-35.765 23.859,-126.019698 -42,-117.054797 M 86.686042,360.90007 c 0.1343,-48.672 26.609998,-101.819 69.999998,-126 -9.584,-20.55 -39.309,-24 -58.999998,-24 -30.318,0 -60.3191,-1.636 -81.6744,24 -14.4232099,17.315 -14.3255999,37.764 -14.3255999,59 0,26.227 -0.64791,53.856 28.9999999,64.301 16.8503,5.936 38.3818,2.699 56,2.699 m 271.999998,-126 c 43.407,24.19 69.866,77.31 70,126 17.618,0 39.15,3.237 56,-2.699 29.648,-10.445 29,-38.074 29,-64.301 0,-21.236 0.098,-41.685 -14.326,-59 -21.355,-25.636 -51.356,-24 -81.674,-24 -19.727,0 -49.4,3.416 -59,24 m -131,19.424 c -60.745,8 -98,54.247 -98,114.576 0,22.177 2.541,43.788 20.039,59.711 19.17,17.443 41.651,17.289 65.961,17.289 h 61 c 16.926,0 35.243,1.972 52,-0.428 66.485,-9.525 70.212,-96.046 40.302,-142.572 -30.398,-47.284 -89.396,-55.411 -141.302,-48.576 z"
id="path281" />
<path
style="fill:#000000"
id="path117"
d="" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg9"
width="512"
height="512"
viewBox="0 0 512 512"
sodipodi:docname="yellow.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs13" />
<sodipodi:namedview
id="namedview11"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.48535156"
inkscape:cx="181.31187"
inkscape:cy="174.1006"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g15">
<inkscape:grid
type="xygrid"
id="grid381" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g15">
<path
style="fill:#f3dd1d;stroke:none;fill-opacity:1"
d="m 79.686042,62.328363 c -9.9424,1.4243 -19.5278,4.530101 -28,10.011501 -37.2555,24.104101 -37.3411,79.982206 -2,105.633206 14.2831,10.367 31.8671,13.384 49,10.793 8.134998,-1.231 16.089998,-4.524 22.999998,-8.956 54.83,-35.164 24.028,-126.940707 -41.999998,-117.481707 m 169.999998,-0.0031 c -14.465,1.969 -27.797,6.0094 -40,14.2461 -9.275,6.260399 -17.007,14.037999 -23.251,23.328702 -40.889,60.846995 12.639,140.498995 83.251,131.713995 11.703,-1.456 22.971,-5.589 33,-11.779 62.522,-38.59 47.838,-139.211098 -25,-155.509797 -9.079,-2.0317 -18.726,-3.262401 -28,-2 m 172,0 c -12.007,1.6343 -23.351,5.5022 -33,13.092599 -48.405,38.078198 -16.646,121.889198 46,114.196198 10.227,-1.256 20.411,-4.448 29,-10.234 53.089,-35.765 23.859,-126.019698 -42,-117.054797 M 86.686042,360.90007 c 0.1343,-48.672 26.609998,-101.819 69.999998,-126 -9.584,-20.55 -39.309,-24 -58.999998,-24 -30.318,0 -60.3191,-1.636 -81.6744,24 -14.4232099,17.315 -14.3255999,37.764 -14.3255999,59 0,26.227 -0.64791,53.856 28.9999999,64.301 16.8503,5.936 38.3818,2.699 56,2.699 m 271.999998,-126 c 43.407,24.19 69.866,77.31 70,126 17.618,0 39.15,3.237 56,-2.699 29.648,-10.445 29,-38.074 29,-64.301 0,-21.236 0.098,-41.685 -14.326,-59 -21.355,-25.636 -51.356,-24 -81.674,-24 -19.727,0 -49.4,3.416 -59,24 m -131,19.424 c -60.745,8 -98,54.247 -98,114.576 0,22.177 2.541,43.788 20.039,59.711 19.17,17.443 41.651,17.289 65.961,17.289 h 61 c 16.926,0 35.243,1.972 52,-0.428 66.485,-9.525 70.212,-96.046 40.302,-142.572 -30.398,-47.284 -89.396,-55.411 -141.302,-48.576 z"
id="path281" />
<path
style="fill:#000000"
id="path117"
d="" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
width="24"
height="24"
viewBox="0 0 24 24"
id="svg4"
sodipodi:docname="tab-plus.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="21.666667"
inkscape:cx="12"
inkscape:cy="12.023077"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M3,3A2,2 0 0,0 1,5V19A2,2 0 0,0 3,21H21A2,2 0 0,0 23,19V5A2,2 0 0,0 21,3H3M3,5H13V9H21V19H3V5M10,10V13H7V15H10V18H12V15H15V13H12V10H10Z"
id="path2"
style="fill:#039bd5;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
width="24"
height="24"
viewBox="0 0 24 24"
id="svg4"
sodipodi:docname="dock-window.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="21.666667"
inkscape:cx="12"
inkscape:cy="12.023077"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="M18 18V20H4A2 2 0 0 1 2 18V8H4V18M22 6V14A2 2 0 0 1 20 16H8A2 2 0 0 1 6 14V6A2 2 0 0 1 8 4H20A2 2 0 0 1 22 6M20 6H8V14H20Z"
id="path2"
style="fill:#039bd5;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -22,10 +22,6 @@
<file>images/streaming.png</file>
<file>images/white-bubble-64.png</file>
<file>images/orange-bubble-64.png</file>
<file>images/stock_signature_bad.png</file>
<file>images/stock_signature_ok.png</file>
<file>images/stock_signature_missing.png</file>
<file>images/stock_signature_unverified.png</file>
<file>images/anonymous_128_blue.png</file>
<file>images/browsable_128_green.png</file>
<file>images/browsable_128_blue.png</file>
@ -107,7 +103,6 @@
<file>images/graph-checking.png</file>
<file>images/graph-blue.png</file>
<file>images/avatar_background.png</file>
<file>images/button_cancel.png</file>
<file>images/chat.png</file>
<file>images/cancel.png</file>
<file>images/close-down.png</file>
@ -295,9 +290,6 @@
<file>images/sort_incr.png</file>
<file>images/sort_decrease.png</file>
<file>images/sound.png</file>
<file>images/tab-dock.png</file>
<file>images/tab-undock.png</file>
<file>images/tab-new.png</file>
<file>images/transferupdown.png</file>
<file>images/tools_wizard.png</file>
<file>images/uploads.png</file>
@ -356,11 +348,6 @@
<file>images/up1down0.png</file>
<file>images/underconstruction.png</file>
<file>images/user.png</file>
<file>images/view_calendar_day.png</file>
<file>images/view_calendar_week.png</file>
<file>images/view_calendar_month.png</file>
<file>images/view_calendar_list.png</file>
<file>images/view_split_top_bottom.png</file>
<file>qss/chat/standard/private/info.xml</file>
<file>qss/chat/standard/private/incoming.htm</file>
<file>qss/chat/standard/private/outgoing.htm</file>
@ -427,11 +414,9 @@
<file>images/tags/dev-translator.png</file>
<file>images/tags/dev-patcher.png</file>
<file>images/tags/developer.png</file>
<file>images/share-icon-16.png</file>
<file>images/toasterEnable.png</file>
<file>images/toasterDisable.png</file>
<file>images/emblem-web.png</file>
<file>images/rsmessenger48.png</file>
<file>images/SmileyText.png</file>
<file>images/SimpleText.png</file>
<file>images/ColoredText.png</file>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 691 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 265 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 435 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 319 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 696 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 662 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 652 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 677 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 422 B

View File

@ -544,8 +544,8 @@ QVariant RsMessageModel::decorationRole(const Rs::Msgs::MsgInfoSummary& fmpe,int
case COLUMN_THREAD_SUBJECT:
{
if(fmpe.msgflags & RS_MSG_NEW ) return FilesDefs::getIconFromQtResourcePath(":/images/message-state-new.png");
if(fmpe.msgflags & RS_MSG_USER_REQUEST) return FilesDefs::getIconFromQtResourcePath(":/images/user/user_request16.png");
if(fmpe.msgflags & RS_MSG_FRIEND_RECOMMENDATION) return FilesDefs::getIconFromQtResourcePath(":/images/user/friend_suggestion16.png");
if(fmpe.msgflags & RS_MSG_USER_REQUEST) return FilesDefs::getIconFromQtResourcePath(":/images/user/user_request48.png");
if(fmpe.msgflags & RS_MSG_FRIEND_RECOMMENDATION) return FilesDefs::getIconFromQtResourcePath(":/images/user/invite24.png");
if(fmpe.msgflags & RS_MSG_PUBLISH_KEY) return FilesDefs::getIconFromQtResourcePath(":/images/share-icon-16.png");
if(fmpe.msgflags & RS_MSG_UNREAD_BY_USER)

View File

@ -663,13 +663,13 @@ void MessagesDialog::messageTreeWidgetCustomPopupMenu(QPoint /*point*/)
QMenu contextMnu( this );
QAction *action = contextMnu.addAction(FilesDefs::getIconFromQtResourcePath(":/images/view_split_top_bottom.png"), tr("Open in a new window"), this, SLOT(openAsWindow()));
QAction *action = contextMnu.addAction(FilesDefs::getIconFromQtResourcePath(":/icons/newwindow.svg"), tr("Open in a new window"), this, SLOT(openAsWindow()));
if (nCount != 1) {
action->setDisabled(true);
}
action = contextMnu.addAction(FilesDefs::getIconFromQtResourcePath(":/images/tab-dock.png"), tr("Open in a new tab"), this, SLOT(openAsTab()));
action = contextMnu.addAction(FilesDefs::getIconFromQtResourcePath(":/icons/newtab.svg"), tr("Open in a new tab"), this, SLOT(openAsTab()));
if (nCount != 1) {
action->setDisabled(true);
}