diff options
Diffstat (limited to 'data/icons')
62 files changed, 5293 insertions, 0 deletions
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am new file mode 100644 index 000000000..95a62027d --- /dev/null +++ b/data/icons/Makefile.am @@ -0,0 +1,136 @@ +NULL = + +public_icons_themes = \ + hicolor \ + $(NULL) + +public_icons = \ + hicolor_apps_16x16_empathy.png \ + hicolor_apps_22x22_empathy.png \ + hicolor_apps_24x24_empathy.png \ + hicolor_apps_32x32_empathy.png \ + hicolor_apps_48x48_empathy.png \ + hicolor_apps_scalable_empathy.svg \ + $(NULL) + +private_icons = \ + hicolor_actions_16x16_im-message-new.png \ + hicolor_actions_22x22_im-message-new.png \ + hicolor_actions_24x24_im-message-new.png \ + hicolor_apps_16x16_im-ekiga.png \ + hicolor_apps_16x16_im-gizmo.png \ + hicolor_apps_16x16_im-google-talk.png \ + hicolor_apps_16x16_im-irc.png \ + hicolor_apps_16x16_im-xmpp.png \ + hicolor_apps_16x16_im-msn.png \ + hicolor_apps_16x16_im-local-xmpp.png \ + hicolor_apps_22x22_im-ekiga.png \ + hicolor_apps_22x22_im-gizmo.png \ + hicolor_apps_22x22_im-google-talk.png \ + hicolor_apps_22x22_im-irc.png \ + hicolor_apps_22x22_im-xmpp.png \ + hicolor_apps_22x22_im-msn.png \ + hicolor_apps_22x22_im-local-xmpp.png \ + hicolor_apps_24x24_im-ekiga.png \ + hicolor_apps_24x24_im-gizmo.png \ + hicolor_apps_24x24_im-google-talk.png \ + hicolor_apps_24x24_im-irc.png \ + hicolor_apps_24x24_im-xmpp.png \ + hicolor_apps_24x24_im-msn.png \ + hicolor_apps_24x24_im-local-xmpp.png \ + hicolor_apps_32x32_im-ekiga.png \ + hicolor_apps_32x32_im-gizmo.png \ + hicolor_apps_32x32_im-google-talk.png \ + hicolor_apps_32x32_im-irc.png \ + hicolor_apps_32x32_im-xmpp.png \ + hicolor_apps_32x32_im-msn.png \ + hicolor_apps_32x32_im-local-xmpp.png \ + hicolor_apps_scalable_im-ekiga.svg \ + hicolor_apps_scalable_im-gizmo.svg \ + hicolor_apps_scalable_im-google-talk.svg \ + hicolor_apps_scalable_im-irc.svg \ + hicolor_apps_scalable_im-xmpp.svg \ + hicolor_apps_scalable_im-msn.svg \ + hicolor_apps_scalable_im-local-xmpp.svg \ + hicolor_status_16x16_im-message.png \ + hicolor_status_16x16_empathy-available.png \ + hicolor_status_16x16_empathy-away.png \ + hicolor_status_16x16_empathy-busy.png \ + hicolor_status_16x16_empathy-extended-away.png \ + hicolor_status_16x16_empathy-offline.png \ + hicolor_status_16x16_empathy-pending.png \ + hicolor_status_16x16_user-typing.png \ + $(NULL) + +noinst_DATA = \ + hicolor_apps_16x16_im-xmpp.svg \ + hicolor_apps_22x22_im-xmpp.svg \ + hicolor_apps_32x32_im-xmpp.svg \ + hicolor_status_16x16_empathy-available.svg \ + hicolor_status_16x16_empathy-away.svg \ + hicolor_status_16x16_empathy-busy.svg \ + hicolor_status_16x16_empathy-extended-away.svg \ + hicolor_status_16x16_empathy-offline.svg \ + hicolor_status_16x16_empathy-pending.svg \ + $(NULL) + +EXTRA_DIST = \ + $(public_icons) \ + $(private_icons) \ + $(noinst_DATA) \ + $(NULL) + +############################################################################### + +gtk_update_icon_cache = gtk-update-icon-cache -f -t + +update-icon-cache: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + for theme in $(public_icons_themes); do \ + $(gtk_update_icon_cache) $(datadir)/icons/$$theme; \ + done; \ + else \ + echo "*** Icon cache not updated. After (un)install, run this:"; \ + for theme in $(public_icons_themes); do \ + echo "*** $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \ + done; \ + fi + +install-icons: + for icon in $(public_icons); do \ + THEME=`echo $$icon | cut -d_ -f1`; \ + CONTEXT=`echo $$icon | cut -d_ -f2`; \ + SIZE=`echo $$icon | cut -d_ -f3`; \ + ICONFILE=`echo $$icon | cut -d_ -f4`; \ + mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \ + $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ + done; \ + for icon in $(private_icons); do \ + THEME=`echo $$icon | cut -d_ -f1`; \ + CONTEXT=`echo $$icon | cut -d_ -f2`; \ + SIZE=`echo $$icon | cut -d_ -f3`; \ + ICONFILE=`echo $$icon | cut -d_ -f4`; \ + mkdir -p $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \ + $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ + done + +uninstall-icons: + -for icon in $(public_icons); do \ + THEME=`echo $$icon | cut -d_ -f1`; \ + CONTEXT=`echo $$icon | cut -d_ -f2`; \ + SIZE=`echo $$icon | cut -d_ -f3`; \ + ICONFILE=`echo $$icon | cut -d_ -f4`; \ + rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ + done; \ + for icon in $(private_icons); do \ + THEME=`echo $$icon | cut -d_ -f1`; \ + CONTEXT=`echo $$icon | cut -d_ -f2`; \ + SIZE=`echo $$icon | cut -d_ -f3`; \ + ICONFILE=`echo $$icon | cut -d_ -f4`; \ + rm -f $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ + done + +install-data-local: install-icons update-icon-cache + +uninstall-local: uninstall-icons update-icon-cache diff --git a/data/icons/hicolor_actions_16x16_im-message-new.png b/data/icons/hicolor_actions_16x16_im-message-new.png Binary files differnew file mode 100644 index 000000000..da01aff75 --- /dev/null +++ b/data/icons/hicolor_actions_16x16_im-message-new.png diff --git a/data/icons/hicolor_actions_22x22_im-message-new.png b/data/icons/hicolor_actions_22x22_im-message-new.png Binary files differnew file mode 100644 index 000000000..f75737ff2 --- /dev/null +++ b/data/icons/hicolor_actions_22x22_im-message-new.png diff --git a/data/icons/hicolor_actions_24x24_im-message-new.png b/data/icons/hicolor_actions_24x24_im-message-new.png Binary files differnew file mode 100644 index 000000000..70f7a6622 --- /dev/null +++ b/data/icons/hicolor_actions_24x24_im-message-new.png diff --git a/data/icons/hicolor_apps_16x16_empathy.png b/data/icons/hicolor_apps_16x16_empathy.png Binary files differnew file mode 100644 index 000000000..3d400d8ef --- /dev/null +++ b/data/icons/hicolor_apps_16x16_empathy.png diff --git a/data/icons/hicolor_apps_16x16_im-ekiga.png b/data/icons/hicolor_apps_16x16_im-ekiga.png Binary files differnew file mode 100644 index 000000000..74d097d38 --- /dev/null +++ b/data/icons/hicolor_apps_16x16_im-ekiga.png diff --git a/data/icons/hicolor_apps_16x16_im-gizmo.png b/data/icons/hicolor_apps_16x16_im-gizmo.png Binary files differnew file mode 100644 index 000000000..6cfbef5de --- /dev/null +++ b/data/icons/hicolor_apps_16x16_im-gizmo.png diff --git a/data/icons/hicolor_apps_16x16_im-google-talk.png b/data/icons/hicolor_apps_16x16_im-google-talk.png Binary files differnew file mode 100644 index 000000000..e80b03b16 --- /dev/null +++ b/data/icons/hicolor_apps_16x16_im-google-talk.png diff --git a/data/icons/hicolor_apps_16x16_im-irc.png b/data/icons/hicolor_apps_16x16_im-irc.png Binary files differnew file mode 100644 index 000000000..00647bba6 --- /dev/null +++ b/data/icons/hicolor_apps_16x16_im-irc.png diff --git a/data/icons/hicolor_apps_16x16_im-local-xmpp.png b/data/icons/hicolor_apps_16x16_im-local-xmpp.png Binary files differnew file mode 100644 index 000000000..8ff47406e --- /dev/null +++ b/data/icons/hicolor_apps_16x16_im-local-xmpp.png diff --git a/data/icons/hicolor_apps_16x16_im-msn.png b/data/icons/hicolor_apps_16x16_im-msn.png Binary files differnew file mode 100644 index 000000000..779c9e106 --- /dev/null +++ b/data/icons/hicolor_apps_16x16_im-msn.png diff --git a/data/icons/hicolor_apps_16x16_im-xmpp.png b/data/icons/hicolor_apps_16x16_im-xmpp.png Binary files differnew file mode 100644 index 000000000..542cd7293 --- /dev/null +++ b/data/icons/hicolor_apps_16x16_im-xmpp.png diff --git a/data/icons/hicolor_apps_16x16_im-xmpp.svg b/data/icons/hicolor_apps_16x16_im-xmpp.svg new file mode 100644 index 000000000..33cc3429e --- /dev/null +++ b/data/icons/hicolor_apps_16x16_im-xmpp.svg @@ -0,0 +1,285 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16" + height="16" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + sodipodi:docbase="/home/baze/Desktop/jabber/16x16" + sodipodi:docname="jabber.svg" + version="1.0" + inkscape:export-filename="jabber.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + id="linearGradient6340"> + <stop + style="stop-color:#cc0000;stop-opacity:0" + offset="0" + id="stop6342" /> + <stop + style="stop-color:#cc0000;stop-opacity:0.61261261" + offset="1" + id="stop6344" /> + </linearGradient> + <linearGradient + id="linearGradient6334"> + <stop + style="stop-color:#cc0000;stop-opacity:0" + offset="0" + id="stop6336" /> + <stop + style="stop-color:#cc0000;stop-opacity:0.61261261" + offset="1" + id="stop6338" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6326"> + <stop + style="stop-color:#cc0000;stop-opacity:1;" + offset="0" + id="stop6328" /> + <stop + style="stop-color:#cc0000;stop-opacity:0;" + offset="1" + id="stop6330" /> + </linearGradient> + <linearGradient + id="linearGradient5320"> + <stop + id="stop5322" + offset="0" + style="stop-color:#cc0000;stop-opacity:0" /> + <stop + id="stop5324" + offset="1" + style="stop-color:#cc0000;stop-opacity:0.61261261" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1311"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop1313" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop1315" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient4643" + gradientUnits="userSpaceOnUse" + x1="27.943266" + y1="1.5" + x2="27.943266" + y2="25.500046" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient4671" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.3682956,0,0,0.3366652,358.39867,236.17834)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5154" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3674509,0,0,0.4730594,247.74432,355.33958)" + x1="28.032001" + y1="3.8257253" + x2="28.032001" + y2="29.140774" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5320" + id="linearGradient7108" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3998744,0,0,0.2535754,147.84036,268.76548)" + x1="273.50909" + y1="392.74289" + x2="278.50909" + y2="392.74289" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6340" + id="linearGradient5330" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3998744,0,0,0.2535754,147.84036,267.76548)" + x1="273.50909" + y1="392.74289" + x2="278.50909" + y2="392.74289" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5332" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.3682956,0,0,0.3366652,358.39867,235.17834)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6334" + id="linearGradient5338" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3998744,0,0,0.2535754,147.84036,266.76548)" + x1="273.50909" + y1="392.74289" + x2="278.50909" + y2="392.74289" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5340" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.3682956,0,0,0.3366652,358.39867,234.17834)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6326" + id="linearGradient6332" + x1="259.10699" + y1="360.96402" + x2="254.3775" + y2="364.53989" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + gridtolerance="1" + guidetolerance="0.4" + objecttolerance="0.4" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="35.859591" + inkscape:cx="12.350488" + inkscape:cy="7.9710926" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="true" + inkscape:grid-points="false" + inkscape:window-width="1016" + inkscape:window-height="714" + inkscape:window-x="0" + inkscape:window-y="25" + width="16px" + height="16px" + gridspacingx="1px" + gridspacingy="1px" + inkscape:grid-bbox="true" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Layer1" + style="display:inline" + transform="translate(-249.5091,-355.7429)"> + <path + style="fill:#2e3436;fill-rule:evenodd;stroke:none;stroke-width:1.00000036px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 255.55179,370.40958 C 255.878,370.18736 259.14023,370.18736 259.46644,370.40958 C 259.79268,370.6318 258.16157,371.7429 257.50912,371.7429 C 256.8567,371.7429 255.22555,370.6318 255.55179,370.40958 z " + id="path5592" + sodipodi:nodetypes="czzz" /> + <rect + style="opacity:1;color:#000000;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect6127" + width="4.9833822" + height="4" + x="255.00909" + y="366.24289" + rx="1.5000054" + ry="1.5000054" /> + <path + style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6332);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="M 262.00915,360.69293 C 262.00915,363.26532 260.28267,363.54021 259.40277,365.45056 C 259.10519,366.09656 258.18999,366.24288 257.49233,366.24288 C 256.79047,366.24288 255.9089,366.1017 255.61164,365.45056 C 254.74188,363.54542 253.0091,363.51994 253.0091,360.69293 C 253.0091,357.86593 255.12586,356.24294 257.50923,356.24294 C 259.88855,356.24294 262.00915,358.12054 262.00915,360.69293 z " + id="path4659" + sodipodi:nodetypes="cssszsz" /> + <path + style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5154);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline" + d="M 254.02752,361.13004 C 254.22662,363.02316 256.03078,363.49395 256.38384,364.94029 C 257.2014,365.37387 257.82294,365.32582 258.6121,364.89658 C 259.46522,363.05654 260.81076,362.55223 261.00435,361.08781 C 261.11764,358.70362 259.17725,357.24291 257.62239,357.24291 C 255.45311,357.24291 253.81566,358.87625 254.02752,361.13004 z " + id="path5564" + sodipodi:nodetypes="ccccsc" /> + <path + sodipodi:type="arc" + style="fill:url(#linearGradient4643);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.3233397;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + id="path5556" + sodipodi:cx="26.5" + sodipodi:cy="13.5" + sodipodi:rx="11.5" + sodipodi:ry="11.5" + d="M 38 13.5 A 11.5 11.5 0 1 1 15,13.5 A 11.5 11.5 0 1 1 38 13.5 z" + transform="matrix(0.2608695,0,0,0.130435,250.59606,356.48203)" /> + <path + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7108);stroke-width:1.00000083px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 257.5613,369.49648 C 258.64715,369.49648 259.0091,369.2429 259.0091,369.2429" + id="path6623" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient4671);stroke-width:1.0000006px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 257.48228,369.2429 C 256.3774,369.2429 256.0091,368.90624 256.0091,368.90624" + id="path6656" + sodipodi:nodetypes="cc" /> + <path + style="fill:#fed12d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 254.5091,359.7429 L 256.47583,365.7635 L 256.43969,360.78122 L 258.50112,360.78122 L 258.52928,365.74633 L 260.5091,359.7429 L 254.5091,359.7429 z " + id="path6155" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:nodetypes="cc" + id="path5326" + d="M 257.5613,368.49648 C 258.64715,368.49648 259.0091,368.2429 259.0091,368.2429" + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5330);stroke-width:1.00000083px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:nodetypes="cc" + id="path5328" + d="M 257.48228,368.2429 C 256.3774,368.2429 256.0091,367.90624 256.0091,367.90624" + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5332);stroke-width:1.0000006px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" /> + <path + style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5338);stroke-width:1.00000083px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 257.5613,367.49648 C 258.64715,367.49648 259.0091,367.2429 259.0091,367.2429" + id="path5334" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5340);stroke-width:1.0000006px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 257.48228,367.2429 C 256.3774,367.2429 256.0091,366.90624 256.0091,366.90624" + id="path5336" + sodipodi:nodetypes="cc" /> + </g> +</svg> diff --git a/data/icons/hicolor_apps_22x22_empathy.png b/data/icons/hicolor_apps_22x22_empathy.png Binary files differnew file mode 100644 index 000000000..d3e89c919 --- /dev/null +++ b/data/icons/hicolor_apps_22x22_empathy.png diff --git a/data/icons/hicolor_apps_22x22_im-ekiga.png b/data/icons/hicolor_apps_22x22_im-ekiga.png Binary files differnew file mode 100644 index 000000000..62ecc446a --- /dev/null +++ b/data/icons/hicolor_apps_22x22_im-ekiga.png diff --git a/data/icons/hicolor_apps_22x22_im-gizmo.png b/data/icons/hicolor_apps_22x22_im-gizmo.png Binary files differnew file mode 100644 index 000000000..a47b462d0 --- /dev/null +++ b/data/icons/hicolor_apps_22x22_im-gizmo.png diff --git a/data/icons/hicolor_apps_22x22_im-google-talk.png b/data/icons/hicolor_apps_22x22_im-google-talk.png Binary files differnew file mode 100644 index 000000000..e1997891e --- /dev/null +++ b/data/icons/hicolor_apps_22x22_im-google-talk.png diff --git a/data/icons/hicolor_apps_22x22_im-irc.png b/data/icons/hicolor_apps_22x22_im-irc.png Binary files differnew file mode 100644 index 000000000..fefb85130 --- /dev/null +++ b/data/icons/hicolor_apps_22x22_im-irc.png diff --git a/data/icons/hicolor_apps_22x22_im-local-xmpp.png b/data/icons/hicolor_apps_22x22_im-local-xmpp.png Binary files differnew file mode 100644 index 000000000..447e59cb5 --- /dev/null +++ b/data/icons/hicolor_apps_22x22_im-local-xmpp.png diff --git a/data/icons/hicolor_apps_22x22_im-msn.png b/data/icons/hicolor_apps_22x22_im-msn.png Binary files differnew file mode 100644 index 000000000..ec32ee71e --- /dev/null +++ b/data/icons/hicolor_apps_22x22_im-msn.png diff --git a/data/icons/hicolor_apps_22x22_im-xmpp.png b/data/icons/hicolor_apps_22x22_im-xmpp.png Binary files differnew file mode 100644 index 000000000..6f3d30934 --- /dev/null +++ b/data/icons/hicolor_apps_22x22_im-xmpp.png diff --git a/data/icons/hicolor_apps_22x22_im-xmpp.svg b/data/icons/hicolor_apps_22x22_im-xmpp.svg new file mode 100644 index 000000000..a00d82301 --- /dev/null +++ b/data/icons/hicolor_apps_22x22_im-xmpp.svg @@ -0,0 +1,541 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + sodipodi:docbase="/home/baze/Desktop/jabber/22x22" + sodipodi:docname="jabber.svg" + version="1.0" + inkscape:export-filename="/home/baze/Desktop/jabber/22x22/jabber.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient6339"> + <stop + style="stop-color:#cc0000;stop-opacity:1;" + offset="0" + id="stop6341" /> + <stop + style="stop-color:#cc0000;stop-opacity:0;" + offset="1" + id="stop6343" /> + </linearGradient> + <linearGradient + id="linearGradient6305"> + <stop + id="stop6307" + offset="0" + style="stop-color:#cc0000;stop-opacity:0;" /> + <stop + id="stop6309" + offset="1" + style="stop-color:#cc0000;stop-opacity:0.61176473;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1311"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop1313" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop1315" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient4643" + gradientUnits="userSpaceOnUse" + x1="27.943266" + y1="1.5" + x2="27.943266" + y2="25.500046" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient4665" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5209928,0,0,0.4713316,402.81863,188.54569)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient4671" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5209928,0,0,0.4713316,402.81863,187.54068)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient4674" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5209928,0,0,0.4713316,402.81863,187.4783)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient4677" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5209928,0,0,0.4713316,402.81863,187.41591)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient4686" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.74927,232.70441)" + x1="273.45337" + y1="396.87036" + x2="278.89301" + y2="396.87036" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5154" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5774209,0,0,0.6836298,245.16453,354.49229)" + x1="28.032001" + y1="3.8257253" + x2="28.032001" + y2="29.140774" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient7106" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.74926,232.45275)" + x1="273.4534" + y1="397.57925" + x2="278.89304" + y2="397.57925" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient7108" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.74925,232.58446)" + x1="273.4534" + y1="397.20825" + x2="278.89304" + y2="397.20825" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient7110" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.74925,232.59447)" + x1="273.4534" + y1="397.18005" + x2="278.89304" + y2="397.18005" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6128" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.25316,233.4578)" + x1="274.33041" + y1="394.74817" + x2="279.77005" + y2="394.74817" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6339" + id="linearGradient6345" + x1="262.54434" + y1="363.74292" + x2="256.31683" + y2="368.26056" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9705397,0,0,1,7.4831989,-4.0208616e-5)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6339" + id="linearGradient5096" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9705397,0,0,1,7.4831989,-4.0208616e-5)" + x1="262.54434" + y1="363.74292" + x2="256.31683" + y2="368.26056" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5098" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5774209,0,0,0.6836298,245.16453,354.49229)" + x1="28.032001" + y1="3.8257253" + x2="28.032001" + y2="29.140774" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5100" + gradientUnits="userSpaceOnUse" + x1="27.943266" + y1="1.5" + x2="27.943266" + y2="25.500046" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5102" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.74927,232.70441)" + x1="273.45337" + y1="396.87036" + x2="278.89301" + y2="396.87036" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5104" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.74925,232.59447)" + x1="273.4534" + y1="397.18005" + x2="278.89304" + y2="397.18005" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5106" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.74925,232.58446)" + x1="273.4534" + y1="397.20825" + x2="278.89304" + y2="397.20825" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5108" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5209928,0,0,0.4713316,402.81863,187.41591)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5110" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5209928,0,0,0.4713316,402.81863,187.4783)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5112" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5209928,0,0,0.4713316,402.81863,187.54068)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5114" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.74926,232.45275)" + x1="273.4534" + y1="397.57925" + x2="278.89304" + y2="397.57925" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5116" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5209928,0,0,0.4713316,402.81863,188.54569)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5118" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5656643,0,0,0.3550058,105.25316,233.4578)" + x1="274.33041" + y1="394.74817" + x2="279.77005" + y2="394.74817" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5121" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,67.476312,197.10085)" + x1="274.33041" + y1="394.74817" + x2="279.77005" + y2="394.74817" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5125" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,134.89766)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5128" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.20175,195.70886)" + x1="273.4534" + y1="397.57925" + x2="278.89304" + y2="397.57925" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5131" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.50572)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5134" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.41933)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5137" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.33292)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5140" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201735,195.89128)" + x1="273.4534" + y1="397.20825" + x2="278.89304" + y2="397.20825" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5143" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201735,195.90514)" + x1="273.4534" + y1="397.18005" + x2="278.89304" + y2="397.18005" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5146" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201764,196.05741)" + x1="273.45337" + y1="396.87036" + x2="278.89301" + y2="396.87036" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5150" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8923776,0,0,0.9986827,270.78512,364.22471)" + x1="28.032001" + y1="3.8257253" + x2="28.032001" + y2="29.140774" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6339" + id="linearGradient5153" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4184829,0,0,1.4000056,-75.308126,-131.49921)" + x1="262.54434" + y1="363.74292" + x2="256.31683" + y2="368.26056" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + gridtolerance="1" + guidetolerance="0.4" + objecttolerance="0.4" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="23.906394" + inkscape:cx="19.895856" + inkscape:cy="10.134648" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="true" + inkscape:grid-points="false" + inkscape:window-width="1024" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="25" + width="32px" + height="32px" + gridspacingx="1px" + gridspacingy="1px" + inkscape:grid-bbox="true" + showguides="true" + inkscape:guide-bbox="true"> + <sodipodi:guide + orientation="vertical" + position="11.001241" + id="guide6343" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Layer1" + style="display:inline" + transform="translate(-278.49946,-366.7429)"> + <path + style="fill:#555753;fill-rule:evenodd;stroke:#2f312e;stroke-width:1.00000036px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 291.0741,394.46512 C 291.64501,394.16883 297.35393,394.16883 297.92479,394.46512 C 298.4957,394.76143 295.64124,396.24291 294.49946,396.24291 C 293.3577,396.24291 290.50323,394.76143 291.0741,394.46512 z " + id="path5592" + sodipodi:nodetypes="czzz" /> + <path + style="fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + d="M 290.00423,387.09223 C 289.38108,387.37125 288.99945,387.70514 288.99945,388.07115 C 288.99945,388.31821 289.9423,388.53461 290.24228,388.74704 C 289.9423,388.9595 288.99945,389.1992 288.99945,389.44629 C 288.99945,389.69334 289.9423,389.90975 290.24228,390.12218 C 289.9423,390.33462 288.99945,390.57435 288.99945,390.82141 C 288.99945,391.06847 289.9423,391.30818 290.24228,391.52063 C 289.9423,391.73307 288.99945,391.94948 288.99945,392.19656 C 288.99945,392.53374 290.10272,392.8632 290.63892,393.12886 C 290.53071,393.27212 289.85211,393.28276 289.85211,393.43821 C 289.85211,394.38832 291.84287,394.85793 294.49943,394.85793 C 297.15594,394.85793 299.21752,394.38832 299.21752,393.43821 C 299.21752,393.28276 298.53293,393.27212 298.42475,393.12886 C 298.96091,392.8632 299.99944,392.53374 299.99944,392.19656 C 299.99944,391.94948 299.09488,391.73307 298.79492,391.52063 C 299.09488,391.30818 299.99944,391.06847 299.99944,390.82141 C 299.99944,390.57435 299.09488,390.33462 298.79492,390.12218 C 299.09488,389.90975 299.99944,389.69334 299.99944,389.44629 C 299.99944,389.1992 299.09488,388.9595 298.79492,388.74704 C 299.09488,388.53461 299.99944,388.31821 299.99944,388.07115 C 299.99944,387.70914 299.63186,387.36952 299.02106,387.09223 C 297.86094,387.74955 296.14444,387.96658 294.55692,388.00966 C 292.98553,388.0523 291.53429,387.8637 290.00423,387.09223 z " + id="path5590" + sodipodi:nodetypes="cscscscscssscscscscscsc" /> + <path + style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5153);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="M 303.99946,375.73838 C 303.99946,380.64933 300.3547,383.08322 298.49712,386.73028 C 297.86889,387.96356 295.93681,388.24291 294.464,388.24291 C 292.98229,388.24291 291.12123,387.97337 290.49368,386.73028 C 288.65755,383.09319 284.99946,381.13543 284.99946,375.73838 C 284.99946,370.34133 289.46817,367.2429 294.49966,367.2429 C 299.52265,367.2429 303.99946,370.82741 303.99946,375.73838 z " + id="path4659" + sodipodi:nodetypes="cssszsz" /> + <path + style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5150);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline" + d="M 286.04427,376.44906 C 286.19466,380.8123 290.66851,383.55065 291.52596,386.60404 C 293.51142,387.51938 295.5326,387.41794 297.44912,386.51176 C 299.52094,382.62725 302.55945,380.18476 302.98794,376.35992 C 303.26305,371.32661 298.5507,368.24289 294.77461,368.24289 C 289.50641,368.24289 285.52974,371.69105 286.04427,376.44906 z " + id="path5564" + sodipodi:nodetypes="ccccsc" /> + <path + sodipodi:type="arc" + style="fill:url(#linearGradient5100);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.3233397;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + id="path5556" + sodipodi:cx="26.5" + sodipodi:cy="13.5" + sodipodi:rx="11.5" + sodipodi:ry="11.5" + d="M 38 13.5 A 11.5 11.5 0 1 1 15,13.5 A 11.5 11.5 0 1 1 38 13.5 z" + transform="matrix(0.5086197,0,0,0.2408691,281.02583,368.7537)" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5146);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 294.85131,388.42459 C 297.3328,388.42459 298.15995,387.93291 298.15995,387.93291" + id="path6619" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5143);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 295.16511,389.74737 C 297.41124,389.74737 298.15995,389.32489 298.15995,389.32489" + id="path6621" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5140);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 295.16511,391.20857 C 297.41124,391.20857 298.15995,390.71688 298.15995,390.71688" + id="path6623" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5137);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 293.85021,388.73379 C 291.5647,388.73379 290.80286,388.081 290.80286,388.081" + id="path6652" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5134);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 293.85021,390.12578 C 291.5647,390.12578 290.80286,389.47299 290.80286,389.47299" + id="path6654" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5131);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 293.85021,391.51776 C 291.5647,391.51776 290.80286,390.86497 290.80286,390.86497" + id="path6656" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5128);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 295.16511,392.5012 C 297.41124,392.5012 298.15995,392.10888 298.15995,392.10888" + id="path6695" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5125);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 293.85021,392.90975 C 291.5647,392.90975 290.80286,392.25696 290.80286,392.25696" + id="path6708" + sodipodi:nodetypes="cc" /> + <path + style="fill:#fed12d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 288.49946,374.7429 L 291.54055,385.72372 L 291.52401,377.55099 L 297.54318,377.55099 L 297.48796,385.7429 L 300.49946,374.7429 L 297.92416,376.15171 L 291.05881,376.15171 L 288.49946,374.7429 z " + id="path6155" + sodipodi:nodetypes="ccccccccc" /> + <path + sodipodi:nodetypes="cc" + id="path6126" + d="M 294.43967,393.89318 C 296.6858,393.89318 297.43451,393.50085 297.43451,393.50085" + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5121);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + </g> +</svg> diff --git a/data/icons/hicolor_apps_24x24_empathy.png b/data/icons/hicolor_apps_24x24_empathy.png Binary files differnew file mode 100644 index 000000000..c23641b3c --- /dev/null +++ b/data/icons/hicolor_apps_24x24_empathy.png diff --git a/data/icons/hicolor_apps_24x24_im-ekiga.png b/data/icons/hicolor_apps_24x24_im-ekiga.png Binary files differnew file mode 100644 index 000000000..622aee84b --- /dev/null +++ b/data/icons/hicolor_apps_24x24_im-ekiga.png diff --git a/data/icons/hicolor_apps_24x24_im-gizmo.png b/data/icons/hicolor_apps_24x24_im-gizmo.png Binary files differnew file mode 100644 index 000000000..487879ede --- /dev/null +++ b/data/icons/hicolor_apps_24x24_im-gizmo.png diff --git a/data/icons/hicolor_apps_24x24_im-google-talk.png b/data/icons/hicolor_apps_24x24_im-google-talk.png Binary files differnew file mode 100644 index 000000000..5b93e368c --- /dev/null +++ b/data/icons/hicolor_apps_24x24_im-google-talk.png diff --git a/data/icons/hicolor_apps_24x24_im-irc.png b/data/icons/hicolor_apps_24x24_im-irc.png Binary files differnew file mode 100644 index 000000000..91adfafef --- /dev/null +++ b/data/icons/hicolor_apps_24x24_im-irc.png diff --git a/data/icons/hicolor_apps_24x24_im-local-xmpp.png b/data/icons/hicolor_apps_24x24_im-local-xmpp.png Binary files differnew file mode 100644 index 000000000..db47eae62 --- /dev/null +++ b/data/icons/hicolor_apps_24x24_im-local-xmpp.png diff --git a/data/icons/hicolor_apps_24x24_im-msn.png b/data/icons/hicolor_apps_24x24_im-msn.png Binary files differnew file mode 100644 index 000000000..21e4e2576 --- /dev/null +++ b/data/icons/hicolor_apps_24x24_im-msn.png diff --git a/data/icons/hicolor_apps_24x24_im-xmpp.png b/data/icons/hicolor_apps_24x24_im-xmpp.png Binary files differnew file mode 100644 index 000000000..9334ce4ed --- /dev/null +++ b/data/icons/hicolor_apps_24x24_im-xmpp.png diff --git a/data/icons/hicolor_apps_32x32_empathy.png b/data/icons/hicolor_apps_32x32_empathy.png Binary files differnew file mode 100644 index 000000000..9e29d7f42 --- /dev/null +++ b/data/icons/hicolor_apps_32x32_empathy.png diff --git a/data/icons/hicolor_apps_32x32_im-ekiga.png b/data/icons/hicolor_apps_32x32_im-ekiga.png Binary files differnew file mode 100644 index 000000000..639e118e6 --- /dev/null +++ b/data/icons/hicolor_apps_32x32_im-ekiga.png diff --git a/data/icons/hicolor_apps_32x32_im-gizmo.png b/data/icons/hicolor_apps_32x32_im-gizmo.png Binary files differnew file mode 100644 index 000000000..83fa95458 --- /dev/null +++ b/data/icons/hicolor_apps_32x32_im-gizmo.png diff --git a/data/icons/hicolor_apps_32x32_im-google-talk.png b/data/icons/hicolor_apps_32x32_im-google-talk.png Binary files differnew file mode 100644 index 000000000..25e8aae67 --- /dev/null +++ b/data/icons/hicolor_apps_32x32_im-google-talk.png diff --git a/data/icons/hicolor_apps_32x32_im-irc.png b/data/icons/hicolor_apps_32x32_im-irc.png Binary files differnew file mode 100644 index 000000000..471742a86 --- /dev/null +++ b/data/icons/hicolor_apps_32x32_im-irc.png diff --git a/data/icons/hicolor_apps_32x32_im-local-xmpp.png b/data/icons/hicolor_apps_32x32_im-local-xmpp.png Binary files differnew file mode 100644 index 000000000..a128bdb6b --- /dev/null +++ b/data/icons/hicolor_apps_32x32_im-local-xmpp.png diff --git a/data/icons/hicolor_apps_32x32_im-msn.png b/data/icons/hicolor_apps_32x32_im-msn.png Binary files differnew file mode 100644 index 000000000..50c4c7ad0 --- /dev/null +++ b/data/icons/hicolor_apps_32x32_im-msn.png diff --git a/data/icons/hicolor_apps_32x32_im-xmpp.png b/data/icons/hicolor_apps_32x32_im-xmpp.png Binary files differnew file mode 100644 index 000000000..d43a374ce --- /dev/null +++ b/data/icons/hicolor_apps_32x32_im-xmpp.png diff --git a/data/icons/hicolor_apps_32x32_im-xmpp.svg b/data/icons/hicolor_apps_32x32_im-xmpp.svg new file mode 100644 index 000000000..2039bf299 --- /dev/null +++ b/data/icons/hicolor_apps_32x32_im-xmpp.svg @@ -0,0 +1,357 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="32" + height="32" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + sodipodi:docbase="/home/baze/Desktop/jabber/32x32" + sodipodi:docname="jabber.svg" + version="1.0" + inkscape:export-filename="/home/baze/Desktop/jabber/22x22/jabber.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient6156"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop6158" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop6160" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6339"> + <stop + style="stop-color:#cc0000;stop-opacity:1;" + offset="0" + id="stop6341" /> + <stop + style="stop-color:#cc0000;stop-opacity:0;" + offset="1" + id="stop6343" /> + </linearGradient> + <linearGradient + id="linearGradient6305"> + <stop + id="stop6307" + offset="0" + style="stop-color:#cc0000;stop-opacity:0;" /> + <stop + id="stop6309" + offset="1" + style="stop-color:#cc0000;stop-opacity:0.61176473;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1311"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop1313" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop1315" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5100" + gradientUnits="userSpaceOnUse" + x1="27.943266" + y1="1.5" + x2="27.943266" + y2="25.500046" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5121" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,67.476312,197.10085)" + x1="274.33041" + y1="394.74817" + x2="279.77005" + y2="394.74817" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5125" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,134.89766)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5128" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.20175,195.70886)" + x1="273.4534" + y1="397.57925" + x2="278.89304" + y2="397.57925" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5131" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.50572)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5134" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.41933)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5137" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.33292)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5140" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201735,195.89128)" + x1="273.4534" + y1="397.20825" + x2="278.89304" + y2="397.20825" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5143" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201735,195.90514)" + x1="273.4534" + y1="397.18005" + x2="278.89304" + y2="397.18005" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5146" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201764,196.05741)" + x1="273.45337" + y1="396.87036" + x2="278.89301" + y2="396.87036" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5150" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8923776,0,0,0.9986827,270.78512,364.22471)" + x1="28.032001" + y1="3.8257253" + x2="28.032001" + y2="29.140774" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6339" + id="linearGradient5153" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4184829,0,0,1.4000056,-75.308126,-131.49921)" + x1="262.54434" + y1="363.74292" + x2="256.31683" + y2="368.26056" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6156" + id="radialGradient6162" + cx="13.992072" + cy="29.030083" + fx="13.992072" + fy="29.030083" + r="6.9228339" + gradientTransform="matrix(1,0,0,0.2960725,0,20.435073)" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + x="-0.030158492" + width="1.060317" + y="-0.10186184" + height="1.2037237" + id="filter6184"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.17398519" + id="feGaussianBlur6186" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + gridtolerance="1" + guidetolerance="0.4" + objecttolerance="0.4" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="23.906394" + inkscape:cx="21.401729" + inkscape:cy="10.594776" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="true" + inkscape:grid-points="false" + inkscape:window-width="1024" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="25" + width="32px" + height="32px" + gridspacingx="1px" + gridspacingy="1px" + inkscape:grid-bbox="true" + showguides="true" + inkscape:guide-bbox="true"> + <sodipodi:guide + orientation="vertical" + position="11.001241" + id="guide6343" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Layer1" + style="display:inline" + transform="translate(-278.49946,-366.7429)"> + <path + sodipodi:type="arc" + style="opacity:0.2;fill:url(#radialGradient6162);fill-opacity:1;stroke:none;stroke-width:16.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6184)" + id="path5161" + sodipodi:cx="13.992072" + sodipodi:cy="29.030083" + sodipodi:rx="6.9228339" + sodipodi:ry="2.0496609" + d="M 20.914906 29.030083 A 6.9228339 2.0496609 0 1 1 7.0692382,29.030083 A 6.9228339 2.0496609 0 1 1 20.914906 29.030083 z" + transform="matrix(0.8666968,0,0,0.9757712,282.37257,368.41618)" /> + <path + style="fill:#555753;fill-rule:evenodd;stroke:#2f312e;stroke-width:1.00000036px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 291.0741,394.46512 C 291.64501,394.16883 297.35393,394.16883 297.92479,394.46512 C 298.4957,394.76143 295.64124,396.24291 294.49946,396.24291 C 293.3577,396.24291 290.50323,394.76143 291.0741,394.46512 z " + id="path5592" + sodipodi:nodetypes="czzz" /> + <path + style="fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + d="M 290.00423,387.09223 C 289.38108,387.37125 288.99945,387.70514 288.99945,388.07115 C 288.99945,388.31821 289.9423,388.53461 290.24228,388.74704 C 289.9423,388.9595 288.99945,389.1992 288.99945,389.44629 C 288.99945,389.69334 289.9423,389.90975 290.24228,390.12218 C 289.9423,390.33462 288.99945,390.57435 288.99945,390.82141 C 288.99945,391.06847 289.9423,391.30818 290.24228,391.52063 C 289.9423,391.73307 288.99945,391.94948 288.99945,392.19656 C 288.99945,392.53374 290.10272,392.8632 290.63892,393.12886 C 290.53071,393.27212 289.85211,393.28276 289.85211,393.43821 C 289.85211,394.38832 291.84287,394.85793 294.49943,394.85793 C 297.15594,394.85793 299.21752,394.38832 299.21752,393.43821 C 299.21752,393.28276 298.53293,393.27212 298.42475,393.12886 C 298.96091,392.8632 299.99944,392.53374 299.99944,392.19656 C 299.99944,391.94948 299.09488,391.73307 298.79492,391.52063 C 299.09488,391.30818 299.99944,391.06847 299.99944,390.82141 C 299.99944,390.57435 299.09488,390.33462 298.79492,390.12218 C 299.09488,389.90975 299.99944,389.69334 299.99944,389.44629 C 299.99944,389.1992 299.09488,388.9595 298.79492,388.74704 C 299.09488,388.53461 299.99944,388.31821 299.99944,388.07115 C 299.99944,387.70914 299.63186,387.36952 299.02106,387.09223 C 297.86094,387.74955 296.14444,387.96658 294.55692,388.00966 C 292.98553,388.0523 291.53429,387.8637 290.00423,387.09223 z " + id="path5590" + sodipodi:nodetypes="cscscscscssscscscscscsc" /> + <path + style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5153);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="M 303.99946,375.73838 C 303.99946,380.64933 300.3547,383.08322 298.49712,386.73028 C 297.86889,387.96356 295.93681,388.24291 294.464,388.24291 C 292.98229,388.24291 291.12123,387.97337 290.49368,386.73028 C 288.65755,383.09319 284.99946,381.13543 284.99946,375.73838 C 284.99946,370.34133 289.46817,367.2429 294.49966,367.2429 C 299.52265,367.2429 303.99946,370.82741 303.99946,375.73838 z " + id="path4659" + sodipodi:nodetypes="cssszsz" /> + <path + style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5150);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline" + d="M 286.04427,376.44906 C 286.19466,380.8123 290.66851,383.55065 291.52596,386.60404 C 293.51142,387.51938 295.5326,387.41794 297.44912,386.51176 C 299.52094,382.62725 302.55945,380.18476 302.98794,376.35992 C 303.26305,371.32661 298.5507,368.24289 294.77461,368.24289 C 289.50641,368.24289 285.52974,371.69105 286.04427,376.44906 z " + id="path5564" + sodipodi:nodetypes="ccccsc" /> + <path + sodipodi:type="arc" + style="fill:url(#linearGradient5100);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.3233397;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + id="path5556" + sodipodi:cx="26.5" + sodipodi:cy="13.5" + sodipodi:rx="11.5" + sodipodi:ry="11.5" + d="M 38 13.5 A 11.5 11.5 0 1 1 15,13.5 A 11.5 11.5 0 1 1 38 13.5 z" + transform="matrix(0.5086197,0,0,0.2408691,281.02583,368.7537)" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5146);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 294.85131,388.42459 C 297.3328,388.42459 298.15995,387.93291 298.15995,387.93291" + id="path6619" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5143);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 295.16511,389.74737 C 297.41124,389.74737 298.15995,389.32489 298.15995,389.32489" + id="path6621" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5140);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 295.16511,391.20857 C 297.41124,391.20857 298.15995,390.71688 298.15995,390.71688" + id="path6623" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5137);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 293.85021,388.73379 C 291.5647,388.73379 290.80286,388.081 290.80286,388.081" + id="path6652" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5134);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 293.85021,390.12578 C 291.5647,390.12578 290.80286,389.47299 290.80286,389.47299" + id="path6654" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5131);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 293.85021,391.51776 C 291.5647,391.51776 290.80286,390.86497 290.80286,390.86497" + id="path6656" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5128);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 295.16511,392.5012 C 297.41124,392.5012 298.15995,392.10888 298.15995,392.10888" + id="path6695" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5125);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 293.85021,392.90975 C 291.5647,392.90975 290.80286,392.25696 290.80286,392.25696" + id="path6708" + sodipodi:nodetypes="cc" /> + <path + style="fill:#fed12d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 288.49946,374.7429 L 291.54055,385.72372 L 291.52401,377.55099 L 297.54318,377.55099 L 297.48796,385.7429 L 300.49946,374.7429 L 297.92416,376.15171 L 291.05881,376.15171 L 288.49946,374.7429 z " + id="path6155" + sodipodi:nodetypes="ccccccccc" /> + <path + sodipodi:nodetypes="cc" + id="path6126" + d="M 294.43967,393.89318 C 296.6858,393.89318 297.43451,393.50085 297.43451,393.50085" + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5121);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + </g> +</svg> diff --git a/data/icons/hicolor_apps_48x48_empathy.png b/data/icons/hicolor_apps_48x48_empathy.png Binary files differnew file mode 100644 index 000000000..753779a9c --- /dev/null +++ b/data/icons/hicolor_apps_48x48_empathy.png diff --git a/data/icons/hicolor_apps_scalable_empathy.svg b/data/icons/hicolor_apps_scalable_empathy.svg new file mode 100644 index 000000000..875c0ef0a --- /dev/null +++ b/data/icons/hicolor_apps_scalable_empathy.svg @@ -0,0 +1,261 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="120" + height="120" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.43" + sodipodi:docbase="/home/kikidonk" + sodipodi:docname="telepathy.svg" + version="1.0"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2299"> + <stop + style="stop-color:#729fcf" + offset="0" + id="stop2301" /> + <stop + style="stop-color:#204a87" + offset="1" + id="stop2303" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2277"> + <stop + style="stop-color:#729fcf" + offset="0" + id="stop2279" /> + <stop + style="stop-color:#204a87" + offset="1" + id="stop2281" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2248"> + <stop + style="stop-color:#729fcf" + offset="0" + id="stop2250" /> + <stop + style="stop-color:#204a87" + offset="1" + id="stop2252" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2316"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop2318" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop2320" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2316" + id="radialGradient1455" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.446154,-9.531266e-14,218.1391)" + cx="37.5" + cy="393.86218" + fx="37.5" + fy="393.86218" + r="32.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2316" + id="radialGradient1457" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.446154,3.441346e-14,218.1391)" + cx="37.5" + cy="393.86218" + fx="37.5" + fy="393.86218" + r="32.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2248" + id="radialGradient1459" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.868658,-0.148746,0.168018,2.110777,-257.031,-963.2931)" + cx="152.6485" + cy="532.39001" + fx="152.6485" + fy="532.39001" + r="29.863501" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2248" + id="radialGradient1461" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.550415,-4.746643e-6,6.036308e-6,1.971663,-152.6655,-900.8159)" + cx="209.66589" + cy="518.98993" + fx="209.66589" + fy="518.98993" + r="21.839567" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2277" + id="linearGradient1463" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-35,-392)" + x1="156.27637" + y1="519.47235" + x2="168.11945" + y2="588.41528" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2299" + id="linearGradient1465" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-35,-392)" + x1="210.31523" + y1="513.20483" + x2="218.00374" + y2="561.11133" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="391.86649" + inkscape:cy="58.28661" + inkscape:document-units="px" + inkscape:current-layer="layer1" + fill="#edd400" + stroke="#edd400" + inkscape:window-width="1014" + inkscape:window-height="693" + inkscape:window-x="0" + inkscape:window-y="25" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g1350" + transform="translate(-86.71068,-84.05382)"> + <path + sodipodi:type="arc" + style="opacity:0.34302326;fill:url(#radialGradient1455);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2324" + sodipodi:cx="37.5" + sodipodi:cy="393.86218" + sodipodi:rx="32.5" + sodipodi:ry="14.5" + d="M 70 393.86218 A 32.5 14.5 0 1 1 5,393.86218 A 32.5 14.5 0 1 1 70 393.86218 z" + transform="matrix(0.553846,0,0,0.769231,155.2308,-139.4549)" /> + <path + transform="matrix(0.753846,0,0,1,103.2308,-206)" + d="M 70 393.86218 A 32.5 14.5 0 1 1 5,393.86218 A 32.5 14.5 0 1 1 70 393.86218 z" + sodipodi:ry="14.5" + sodipodi:rx="32.5" + sodipodi:cy="393.86218" + sodipodi:cx="37.5" + id="path2314" + style="opacity:0.34883722;fill:url(#radialGradient1457);fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#babdb6;stroke:none;stroke-width:3.83500004;stroke-miterlimit:4;stroke-dasharray:none" + id="path2284" + sodipodi:cx="466.5" + sodipodi:cy="225.86218" + sodipodi:rx="13.5" + sodipodi:ry="13.5" + d="M 480 225.86218 A 13.5 13.5 0 1 1 453,225.86218 A 13.5 13.5 0 1 1 480 225.86218 z" + transform="matrix(0.239488,0,0,0.239488,6.4093,56.699)" /> + <path + style="fill:url(#radialGradient1459);fill-opacity:1;stroke:#204a87;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 150.2161,142.69583 C 144.93306,149.11959 157.74053,160.99323 155.32886,164.76875 C 151.71258,170.43013 145.72673,166.37911 146.5107,170.91369 C 147.10639,174.35931 146.90129,177.59442 143.94504,179.55357 C 146.05169,185.93861 138.60199,192.13547 135.06149,192.88614 C 120.89943,195.8888 101.90698,167.7371 98.90432,153.57504 C 95.90165,139.41298 104.95855,125.4822 119.1206,122.47955 C 133.28265,119.47688 147.21343,128.53378 150.2161,142.69583 z " + id="path2286" + sodipodi:nodetypes="csscsssc" /> + <path + sodipodi:nodetypes="csscsssc" + id="path2288" + d="M 161.93542,131.68159 C 165.74994,136.31974 156.62403,144.65072 158.36534,147.37677 C 160.97641,151.46447 165.17688,148.78167 164.61083,152.05578 C 164.18072,154.54363 164.32882,156.87948 166.46332,158.29405 C 164.94226,162.90425 170.26698,167.13724 172.82334,167.67925 C 183.04881,169.84727 196.81615,149.76218 198.98416,139.53672 C 201.15218,129.31126 194.61282,119.25279 184.38736,117.08478 C 174.16191,114.91676 164.10344,121.45613 161.93542,131.68159 z " + style="fill:url(#radialGradient1461);fill-opacity:1;stroke:#204a87;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + transform="matrix(0.448469,0,0,0.448469,-80.909,-3.4852)" + d="M 480 225.86218 A 13.5 13.5 0 1 1 453,225.86218 A 13.5 13.5 0 1 1 480 225.86218 z" + sodipodi:ry="13.5" + sodipodi:rx="13.5" + sodipodi:cy="225.86218" + sodipodi:cx="466.5" + id="path2290" + style="fill:#babdb6;stroke:none;stroke-width:3.83500004;stroke-miterlimit:4;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#babdb6;stroke:none;stroke-width:3.83500004;stroke-miterlimit:4;stroke-dasharray:none" + id="path2292" + sodipodi:cx="466.5" + sodipodi:cy="225.86218" + sodipodi:rx="13.5" + sodipodi:ry="13.5" + d="M 480 225.86218 A 13.5 13.5 0 1 1 453,225.86218 A 13.5 13.5 0 1 1 480 225.86218 z" + transform="matrix(0.376714,0,0,0.376714,-29.9988,8.3624)" /> + <path + transform="matrix(0.269082,0,0,0.269082,35.2264,38.422)" + d="M 480 225.86218 A 13.5 13.5 0 1 1 453,225.86218 A 13.5 13.5 0 1 1 480 225.86218 z" + sodipodi:ry="13.5" + sodipodi:rx="13.5" + sodipodi:cy="225.86218" + sodipodi:cx="466.5" + id="path2294" + style="fill:#babdb6;stroke:none;stroke-width:3.83500004;stroke-miterlimit:4;stroke-dasharray:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#babdb6;stroke:none;stroke-width:3.83500004;stroke-miterlimit:4;stroke-dasharray:none" + id="path2296" + sodipodi:cx="466.5" + sodipodi:cy="225.86218" + sodipodi:rx="13.5" + sodipodi:ry="13.5" + d="M 480 225.86218 A 13.5 13.5 0 1 1 453,225.86218 A 13.5 13.5 0 1 1 480 225.86218 z" + transform="matrix(0.197327,0,0,0.197327,75.481,66.2218)" /> + <path + id="path2268" + d="M 123.28125,123.9375 C 108.01533,124.16246 96.09738,141.26171 101.5625,155.78125 C 106.70498,169.34648 115.09976,183.17694 128.25,190.0625 C 135.00162,194.17566 144.81961,185.96654 141.5625,178.71875 C 146.27103,177.08945 143.82074,171.72239 144.9375,168.21875 C 146.8342,165.06946 153.71771,167.38783 153.46875,162.65625 C 150.74411,156.2047 144.57132,149.09618 147.96875,141.84375 C 145.2653,131.11182 134.46054,123.15696 123.28125,123.9375 z " + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient1463);stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path2291" + d="M 179.75,118.6875 C 172.45096,118.90303 164.83544,124.65883 164.375,131.90625 C 166.6736,137.32257 160.94739,141.95547 160.375,146.71875 C 162.45612,148.7109 167.71064,148.079 166.59375,152.46875 C 165.32221,155.0163 168.12471,156.86409 168.52359,158.40373 C 166.89871,163.94225 174.72741,168.088 178.96875,164.46875 C 188.37541,158.20668 195.59314,147.55282 197.375,136.46875 C 198.06704,126.67227 189.35755,118.04285 179.75,118.6875 z " + style="fill:none;fill-opacity:1;stroke:url(#linearGradient1465);stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/data/icons/hicolor_apps_scalable_im-ekiga.svg b/data/icons/hicolor_apps_scalable_im-ekiga.svg new file mode 100644 index 000000000..78a9e7344 --- /dev/null +++ b/data/icons/hicolor_apps_scalable_im-ekiga.svg @@ -0,0 +1,441 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.43" + width="48" + height="48" + version="1.0" + sodipodi:docbase="/home/vinicius/tango-icon-theme-code/protocols/scalable" + sodipodi:docname="ekiga.svg" + inkscape:export-filename="/home/vinicius/tango-icon-theme-code/protocols/48x48/ekiga.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Ekiga Icon</dc:title> + <dc:date>2006-12-05</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Vinicius Scopel Depizzol</dc:title> + </cc:Agent> + </dc:creator> + <dc:subject> + <rdf:Bag> + <rdf:li>Ekiga</rdf:li> + <rdf:li>VOIP</rdf:li> + <rdf:li>protocol</rdf:li> + </rdf:Bag> + </dc:subject> + <dc:source>vdepizzol@gmail.com</dc:source> + <cc:license + rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> + <dc:contributor> + <cc:Agent> + <dc:title>Original Artwork by Jakub Steiner <jimmac_at_ximian.com> and Andreas Kwiatkowski <post_at_kwiat.org></dc:title> + </cc:Agent> + </dc:contributor> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs5"> + <linearGradient + id="linearGradient4182"> + <stop + style="stop-color:#c03b00;stop-opacity:1;" + offset="0" + id="stop4184" /> + <stop + style="stop-color:#e74700;stop-opacity:1;" + offset="1" + id="stop4186" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9234"> + <stop + style="stop-color:#f57900;stop-opacity:1;" + offset="0" + id="stop9236" /> + <stop + style="stop-color:#f57900;stop-opacity:0;" + offset="1" + id="stop9238" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9208"> + <stop + style="stop-color:#ffe000;stop-opacity:1;" + offset="0" + id="stop9210" /> + <stop + style="stop-color:#ffe000;stop-opacity:0;" + offset="1" + id="stop9212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9200"> + <stop + style="stop-color:#ffe84a;stop-opacity:1;" + offset="0" + id="stop9202" /> + <stop + style="stop-color:#ffe84a;stop-opacity:0;" + offset="1" + id="stop9204" /> + </linearGradient> + <linearGradient + id="linearGradient6839"> + <stop + style="stop-color:#000000;stop-opacity:0.40170941;" + offset="0" + id="stop6841" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop6843" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6839" + id="radialGradient6845" + cx="14.980188" + cy="24.437885" + fx="14.980188" + fy="24.437885" + r="10.15484" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient4175"> + <stop + style="stop-color:#fff6b8;stop-opacity:1;" + offset="0" + id="stop4177" /> + <stop + style="stop-color:#ffef81;stop-opacity:1;" + offset="1" + id="stop4179" /> + </linearGradient> + <linearGradient + id="linearGradient4201"> + <stop + style="stop-color:#fcaf3e;stop-opacity:1;" + offset="0" + id="stop4203" /> + <stop + style="stop-color:#fce94f;stop-opacity:1;" + offset="1" + id="stop4205" /> + </linearGradient> + <linearGradient + id="linearGradient4189"> + <stop + style="stop-color:#e26f00;stop-opacity:1;" + offset="0" + id="stop4191" /> + <stop + style="stop-color:#ffae19;stop-opacity:1;" + offset="1" + id="stop4193" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4189" + id="linearGradient4195" + x1="1.9788086" + y1="7.5118856" + x2="14.918759" + y2="7.5118856" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4201" + id="linearGradient4207" + x1="7.2169476" + y1="13.272759" + x2="7.2169476" + y2="4.5926571" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4175" + id="linearGradient4181" + x1="3.0193484" + y1="10.118958" + x2="18.965513" + y2="10.118958" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.386673,0,0,1.476386,40.03261,-0.243111)" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="9.3426504" + x2="7.2169476" + y1="15.416203" + x1="7.2169476" + id="linearGradient6051" + xlink:href="#linearGradient4201" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="7.5118856" + x2="14.918759" + y1="7.5118856" + x1="-0.48486361" + id="linearGradient6049" + xlink:href="#linearGradient4189" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6043"> + <stop + id="stop6045" + offset="0" + style="stop-color:#f57900;stop-opacity:1;" /> + <stop + id="stop6047" + offset="1" + style="stop-color:#edd400;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient6037"> + <stop + id="stop6039" + offset="0" + style="stop-color:#fcaf3e;stop-opacity:1;" /> + <stop + id="stop6041" + offset="1" + style="stop-color:#fce94f;stop-opacity:1;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4189" + id="linearGradient7026" + gradientUnits="userSpaceOnUse" + x1="1.9788086" + y1="7.5118856" + x2="14.918759" + y2="7.5118856" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4201" + id="linearGradient7028" + gradientUnits="userSpaceOnUse" + x1="7.2169476" + y1="13.272759" + x2="7.2169476" + y2="4.5926571" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4175" + id="linearGradient7030" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.834083,0,0,1.952742,2.880761,0.516054)" + x1="3.0193484" + y1="10.118958" + x2="18.965513" + y2="10.118958" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9200" + id="radialGradient9206" + cx="18.627844" + cy="11.901631" + fx="18.627844" + fy="11.901631" + r="0.75130093" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9208" + id="linearGradient9214" + x1="22" + y1="4.8000002" + x2="22" + y2="14.141901" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9234" + id="linearGradient9240" + x1="20.4" + y1="38.666668" + x2="20.4" + y2="27.292307" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6839" + id="radialGradient10116" + gradientUnits="userSpaceOnUse" + cx="14.980188" + cy="24.437885" + fx="14.980188" + fy="24.437885" + r="10.15484" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4182" + id="linearGradient4188" + x1="6.4635968" + y1="13.196473" + x2="6.4635968" + y2="2.4294622" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + inkscape:window-height="714" + inkscape:window-width="1014" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + showgrid="false" + fill="#fce94f" + showborder="false" + inkscape:zoom="8.6290323" + inkscape:cx="23.5" + inkscape:cy="25" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:current-layer="svg2" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient10116);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path5964" + sodipodi:cx="14.980188" + sodipodi:cy="24.437885" + sodipodi:rx="10.15484" + sodipodi:ry="10.15484" + d="M 25.135029,24.437885 A 10.15484,10.15484 0 1 1 25.134977,24.405482" + sodipodi:start="0" + sodipodi:end="6.2799944" + sodipodi:open="true" + transform="matrix(2.067979,0,0,0.608807,-6.97872,24.95253)" /> + <path + transform="matrix(2.840536,0,0,2.792929,3.5,1.019835)" + sodipodi:open="true" + sodipodi:end="6.2799944" + sodipodi:start="0" + d="M 14.433895,7.5118856 A 7.2169476,7.3399639 0 1 1 14.433858,7.4884645" + sodipodi:ry="7.3399639" + sodipodi:rx="7.2169476" + sodipodi:cy="7.5118856" + sodipodi:cx="7.2169476" + id="path7012" + style="opacity:1;fill:url(#linearGradient7026);fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:0.35503393;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient7028);stroke-width:0.37376186;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path7014" + sodipodi:cx="7.2169476" + sodipodi:cy="7.5118856" + sodipodi:rx="7.2169476" + sodipodi:ry="7.3399639" + d="M 14.433895,7.5118856 A 7.2169476,7.3399639 0 1 1 14.433858,7.4884645" + sodipodi:start="0" + sodipodi:end="6.2799944" + sodipodi:open="true" + transform="matrix(2.697833,0,0,2.653355,4.547512,2.079533)" /> + <path + sodipodi:nodetypes="cccc" + id="path7016" + d="M 8.190342,20.708311 C 8.1703537,6.3038993 26.116033,6.5569734 32.543918,12.445493 C 34.538426,14.694763 39.001539,13.044543 36.468666,10.166093 C 26.135035,-1.3618941 6.8962804,7.319666 8.190342,20.708311 z " + style="fill:url(#linearGradient9214);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient9240);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 39.50447,27.299343 C 34.800073,42.327963 18.308682,36.589906 13.714704,29.331934 C 12.405002,26.672122 7.6414067,27.175936 9.2985796,30.574998 C 16.11864,44.234304 37.082702,40.547881 39.50447,27.299343 z " + id="path7018" + sodipodi:nodetypes="cccc" /> + <g + id="g9460" + transform="matrix(2.817613,0,0,2.817614,5.536697,-0.485289)" + style="fill:url(#linearGradient4188);fill-opacity:1.0"> + <path + sodipodi:nodetypes="ccczccz" + id="path7707" + d="M 9.4516821,8.5573773 C 8.0906341,14.152458 5.7954321,13.026127 5.7954321,13.026127 C 5.4199681,12.717591 5.5573131,10.821517 5.9204321,10.338627 C 6.4032901,10.359871 6.8077121,10.615882 7.5766821,8.2448773 C 8.3364881,5.9021301 7.7927181,5.5778374 7.2641821,5.3073773 C 7.2333031,4.3181647 7.9730301,3.1933083 8.5141821,2.9323773 C 8.5141821,2.9323773 10.805552,2.9918052 9.4516821,8.5573773 z " + style="fill:url(#linearGradient4188);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cczc" + id="path8582" + d="M 7.6134826,2.5599675 C 7.0256447,3.2228687 6.6494921,4.0864896 6.3947326,4.9974675 C 6.3947326,4.9974675 5.3695628,4.2706896 5.9122078,3.1548276 C 6.4668958,2.0142026 7.6134826,2.5599675 7.6134826,2.5599675 z " + style="fill:url(#linearGradient4188);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient4188);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 5.1155026,10.157887 C 4.6936596,10.9488 4.6380996,11.855502 4.9488216,12.877993 C 4.9488216,12.877993 3.8683676,12.975254 3.8070878,11.427205 C 3.7458441,9.8800695 5.1155026,10.157887 5.1155026,10.157887 z " + id="path9458" + sodipodi:nodetypes="cczc" /> + </g> + <path + sodipodi:nodetypes="czzzzzzzzzzzzz" + id="path7020" + d="M 9.0604191,23.857192 C 9.4543105,22.162722 9.4344575,16.50586 10.635981,17.079314 C 11.837503,17.652767 12.731187,25.407262 13.866507,26.151005 C 15.001827,26.894747 14.438966,21.832866 15.177262,20.054285 C 15.915553,18.275704 15.88434,20.392276 16.819675,19.036687 C 17.755007,17.681096 17.884277,12.955766 18.918593,14.631925 C 19.952902,16.308085 19.832506,23.646286 20.956926,25.741328 C 22.081347,27.836373 22.25529,23.090771 23.416275,23.012099 C 24.577258,22.933426 24.929877,26.000093 25.600857,25.426642 C 26.271839,24.853188 25.668633,23.149805 26.100195,20.718288 C 26.531758,18.286769 26.152362,14.544639 27.327114,15.700572 C 28.501863,16.856505 29.420674,23.876311 30.799196,25.342011 C 32.177721,26.807713 31.28522,21.96476 32.841205,21.563372 C 34.397188,21.161984 35.977646,23.193191 37.02313,23.736462" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7030);stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccccccccccccccccccccc" + id="path7022" + d="M 37.354566,22.429081 L 35.878767,15.933146 L 36.999491,22.549082 L 35.244302,17.836985 L 36.640127,22.723508 L 31.971965,19.448256 L 36.21416,23.113311 L 29.851342,23.675425 L 35.99771,23.515425 L 32.274504,24.939635 L 36.094205,23.981004 L 32.162301,26.240773 L 36.265875,24.585235 L 36.83261,24.952157 L 35.63968,29.523554 L 37.467078,24.881774 L 38.860759,29.323486 L 38.035952,24.944655 L 40.463772,27.383077 L 38.487522,24.373507 L 42.36968,25.221191 L 38.647464,23.785811 L 41.969642,21.32736 L 38.607989,23.439655 L 42.891947,17.680662 L 38.365424,22.939468 L 40.066242,19.55044 L 37.893045,22.553891 L 38.035952,19.486981 L 37.354566,22.429081 z " + style="fill:#ffea53;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient9206);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path8325" + sodipodi:cx="18.627844" + sodipodi:cy="11.901631" + sodipodi:rx="0.75130093" + sodipodi:ry="0.75130093" + d="M 19.379145,11.901631 A 0.75130093,0.75130093 0 1 1 19.379141,11.899234" + sodipodi:start="0" + sodipodi:end="6.2799944" + sodipodi:open="true" + transform="matrix(4.922224,0,0,4.923363,-54.3699,-34.85069)" /> + <path + transform="matrix(1.952289,0,0,1.952741,0.95358,0.504567)" + sodipodi:open="true" + sodipodi:end="6.2799944" + sodipodi:start="0" + d="M 19.379145,11.901631 A 0.75130093,0.75130093 0 1 1 19.379141,11.899234" + sodipodi:ry="0.75130093" + sodipodi:rx="0.75130093" + sodipodi:cy="11.901631" + sodipodi:cx="18.627844" + id="path7024" + style="opacity:1;fill:#fcf5c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> +</svg> diff --git a/data/icons/hicolor_apps_scalable_im-gizmo.svg b/data/icons/hicolor_apps_scalable_im-gizmo.svg new file mode 100644 index 000000000..0c6aa4a56 --- /dev/null +++ b/data/icons/hicolor_apps_scalable_im-gizmo.svg @@ -0,0 +1,269 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.43" + width="48" + height="48" + version="1.0" + sodipodi:docbase="/home/vinicius/tango-icon-theme-code/protocols/scalable" + sodipodi:docname="gizmo.svg" + inkscape:export-filename="/home/vinicius/tango-icon-theme-code/protocols/48x48/gizmo.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Gizmo Icon</dc:title> + <dc:date>2006-12-03</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Vinicius Scopel Depizzol</dc:title> + </cc:Agent> + </dc:creator> + <dc:source>vdepizzol@gmail.com</dc:source> + <dc:subject> + <rdf:Bag> + <rdf:li>Gizmo</rdf:li> + <rdf:li>VOIP</rdf:li> + <rdf:li>Protocol</rdf:li> + </rdf:Bag> + </dc:subject> + <cc:license + rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs5"> + <linearGradient + id="linearGradient3297"> + <stop + style="stop-color:#77d916;stop-opacity:1;" + offset="0" + id="stop3299" /> + <stop + style="stop-color:#5eae12;stop-opacity:1;" + offset="1" + id="stop3301" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3289"> + <stop + style="stop-color:#a9ea6a;stop-opacity:1;" + offset="0" + id="stop3291" /> + <stop + style="stop-color:#a9ea6a;stop-opacity:0;" + offset="1" + id="stop3293" /> + </linearGradient> + <linearGradient + id="linearGradient3281"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop3283" /> + <stop + style="stop-color:#3f7e04;stop-opacity:1;" + offset="1" + id="stop3285" /> + </linearGradient> + <linearGradient + id="linearGradient6839"> + <stop + style="stop-color:#000000;stop-opacity:0.44444445;" + offset="0" + id="stop6841" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop6843" /> + </linearGradient> + <linearGradient + id="linearGradient5083"> + <stop + style="stop-color:#ffffff;stop-opacity:0.12820514;" + offset="0" + id="stop5085" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5087" /> + </linearGradient> + <linearGradient + id="linearGradient3306"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3308" /> + <stop + style="stop-color:#6a6c67;stop-opacity:1;" + offset="1" + id="stop3310" /> + </linearGradient> + <linearGradient + id="linearGradient3298"> + <stop + style="stop-color:#8c9d24;stop-opacity:1;" + offset="0" + id="stop3300" /> + <stop + style="stop-color:#bed341;stop-opacity:1;" + offset="1" + id="stop3302" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6839" + id="radialGradient6845" + cx="14.980188" + cy="24.437885" + fx="14.980188" + fy="24.437885" + r="10.15484" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3306" + id="linearGradient7738" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.990582,0,0,1.956825,2.169514,0.111554)" + x1="12.148149" + y1="18.03125" + x2="9.9537039" + y2="4.03125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5083" + id="linearGradient7742" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.999449,0,0,1.932483,2.134045,0.270066)" + x1="6.7731481" + y1="11.25" + x2="6.7407408" + y2="5.0682869" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3281" + id="linearGradient3287" + x1="2.7307715" + y1="1.6338818" + x2="13.049995" + y2="14.486959" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3289" + id="linearGradient3295" + x1="3.371383" + y1="1.314895" + x2="12.589786" + y2="14.155007" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3297" + id="linearGradient3303" + x1="2.2912731" + y1="2.4371991" + x2="12.330816" + y2="14.125467" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + inkscape:window-height="714" + inkscape:window-width="1014" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + showgrid="false" + fill="#3465a4" + showborder="false" + inkscape:zoom="1" + inkscape:cx="36.161682" + inkscape:cy="23.420561" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:current-layer="svg2" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient6845);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path5964" + sodipodi:cx="14.980188" + sodipodi:cy="24.437885" + sodipodi:rx="10.15484" + sodipodi:ry="10.15484" + d="M 25.135029,24.437885 A 10.15484,10.15484 0 1 1 25.134977,24.405482" + sodipodi:start="0" + sodipodi:end="6.2799944" + sodipodi:open="true" + transform="matrix(2.051199,0,0,0.608807,-6.897747,25.47255)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient3303);fill-opacity:1.0;fill-rule:nonzero;stroke:url(#linearGradient3287);stroke-width:0.37600183;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path2396" + sodipodi:cx="7.7705202" + sodipodi:cy="7.8194256" + sodipodi:rx="7.6885095" + sodipodi:ry="7.7295151" + d="M 15.45903,7.8194256 A 7.6885095,7.7295151 0 1 1 15.458991,7.7947615" + sodipodi:start="0" + sodipodi:end="6.2799944" + sodipodi:open="true" + transform="matrix(2.666592,0,0,2.652552,3.27862,1.260023)" /> + <path + transform="matrix(2.535942,0,0,2.522469,4.288207,2.275743)" + sodipodi:open="true" + sodipodi:end="6.2799944" + sodipodi:start="0" + d="M 15.45903,7.8194256 A 7.6885095,7.7295151 0 1 1 15.458991,7.7947615" + sodipodi:ry="7.7295151" + sodipodi:rx="7.6885095" + sodipodi:cy="7.8194256" + sodipodi:cx="7.7705202" + id="path3283" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3295);stroke-width:0.39538249;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + id="path7736" + d="M 21.080049,8 L 21.080049,14.543129 L 16.29021,9.8956732 L 12.06022,14.053922 L 16.787857,18.701379 L 10.131844,18.701379 L 10.131844,24.571849 L 16.850061,24.571849 L 12.06022,29.280455 L 16.29021,33.438705 L 21.080049,28.7301 L 21.080049,35.39553 L 27.051797,35.39553 L 27.051797,28.7301 L 31.77943,33.438705 L 36.009418,29.280455 L 31.219579,24.571849 L 38,24.571849 L 38,18.701379 L 31.281785,18.701379 L 36.009418,14.053922 L 31.77943,9.8956732 L 27.051797,14.543129 L 27.051797,8 L 21.080049,8 z M 23.257248,15.827294 C 23.505421,15.796251 23.809218,15.827294 24.065922,15.827294 C 27.345091,15.827294 29.964999,18.413075 29.975465,21.636614 C 29.975465,24.866732 27.351765,27.507084 24.065922,27.507084 C 20.780079,27.507084 18.094175,24.866732 18.094175,21.636614 C 18.094174,18.658849 20.328807,16.193583 23.257248,15.827294 z " + style="opacity:1;fill:url(#linearGradient7738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + id="path7740" + d="M 21.128819,8.06039 L 21.128819,14.522131 L 16.317642,9.9324832 L 12.068812,14.03901 L 16.817504,18.628659 L 10.131844,18.628659 L 10.131844,22.010504 C 12.983457,21.92907 15.635553,21.59813 18.129644,21.044263 C 18.357342,18.321118 20.535092,16.132273 23.315717,15.790324 C 23.346875,15.786492 23.407977,15.792419 23.440683,15.790324 C 23.657296,15.781469 23.91849,15.790324 24.127992,15.790324 C 25.70283,15.790324 27.131406,16.403207 28.189376,17.360466 C 28.203204,17.372979 28.238154,17.347826 28.251859,17.360466 C 30.661586,16.090491 32.883787,14.549219 35,12.951988 L 31.87586,9.9324832 L 27.127167,14.522131 L 27.127167,8.06039 L 21.128819,8.06039 z " + style="fill:url(#linearGradient7742);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> +</svg> diff --git a/data/icons/hicolor_apps_scalable_im-google-talk.svg b/data/icons/hicolor_apps_scalable_im-google-talk.svg new file mode 100644 index 000000000..53d543309 --- /dev/null +++ b/data/icons/hicolor_apps_scalable_im-google-talk.svg @@ -0,0 +1,301 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + id="svg2417" + sodipodi:version="0.32" + inkscape:version="0.43" + width="48" + height="48" + version="1.0" + sodipodi:docbase="/home/vinicius/tango-icon-theme-code/protocols/scalable" + sodipodi:docname="google-talk.svg" + inkscape:export-filename="/home/vinicius/tango-icon-theme-code/protocols/48x48/google-talk.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <metadata + id="metadata2422"> + <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>Google Talk Icon</dc:title> + <dc:date>2006-12-03</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Vinicius Scopel Depizzol</dc:title> + </cc:Agent> + </dc:creator> + <dc:source>vdepizzol@gmail.com</dc:source> + <dc:subject> + <rdf:Bag> + <rdf:li>Google Talk</rdf:li> + <rdf:li>GTalk</rdf:li> + <rdf:li>VOIP</rdf:li> + <rdf:li>Protocol</rdf:li> + </rdf:Bag> + </dc:subject> + <cc:license + rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs2420"> + <linearGradient + inkscape:collect="always" + id="linearGradient6020"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop6022" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop6024" /> + </linearGradient> + <linearGradient + id="linearGradient3299"> + <stop + style="stop-color:#000000;stop-opacity:0.11764706;" + offset="0" + id="stop3301" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3303" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3299" + id="radialGradient3305" + cx="15.993708" + cy="26.722889" + fx="15.993708" + fy="26.722889" + r="15.912521" + gradientTransform="matrix(1,0,0,0.295918,-3.769888e-16,18.8151)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3527"> + <stop + style="stop-color:#90ba1f;stop-opacity:1;" + offset="0" + id="stop3529" /> + <stop + style="stop-color:#638205;stop-opacity:1;" + offset="1" + id="stop3531" /> + </linearGradient> + <linearGradient + id="linearGradient3518"> + <stop + style="stop-color:#e7d000;stop-opacity:1;" + offset="0" + id="stop3520" /> + <stop + style="stop-color:#c4a000;stop-opacity:1;" + offset="1" + id="stop3522" /> + </linearGradient> + <linearGradient + id="linearGradient3486"> + <stop + style="stop-color:#ef2929;stop-opacity:1;" + offset="0" + id="stop3488" /> + <stop + style="stop-color:#cc0000;stop-opacity:1;" + offset="1" + id="stop3490" /> + </linearGradient> + <linearGradient + id="linearGradient3510"> + <stop + style="stop-color:#3465a4;stop-opacity:1;" + offset="0" + id="stop3512" /> + <stop + style="stop-color:#204a87;stop-opacity:1;" + offset="1" + id="stop3514" /> + </linearGradient> + <linearGradient + id="linearGradient3286"> + <stop + style="stop-color:#d1d1d1;stop-opacity:1;" + offset="0" + id="stop3288" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop3290" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3527" + id="linearGradient4249" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.465389,0,0,2.513895,-105.5963,47.11115)" + x1="55.483334" + y1="-14.40625" + x2="55.483334" + y2="-7.9999866" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3518" + id="linearGradient4252" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.901968,0,0,2.518653,-127.7063,47.25387)" + x1="53.162479" + y1="-14.322747" + x2="53.162479" + y2="-9.9868765" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3486" + id="linearGradient4255" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.48585,0,0,2.48585,-103.0483,47.16833)" + x1="49.45462" + y1="-12.934268" + x2="49.45462" + y2="-8.0529032" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3510" + id="linearGradient4258" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.48585,0,0,2.48585,-100.3774,47.19573)" + x1="45.5" + y1="-14" + x2="45.5" + y2="-8.1156492" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3286" + id="linearGradient4262" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.99378,0,0,2.99378,9.552849e-2,-0.965622)" + x1="8" + y1="15" + x2="8" + y2="0.9916327" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6020" + id="linearGradient6026" + x1="11.466431" + y1="11.008693" + x2="11.466431" + y2="15.000141" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6020" + id="linearGradient6030" + gradientUnits="userSpaceOnUse" + x1="11.466431" + y1="11.008693" + x2="11.466431" + y2="15.000141" + gradientTransform="matrix(1,0,0,1.75,0,-1.25)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3286" + id="linearGradient6052" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.99378,0,0,2.99378,-59.90447,-0.965622)" + x1="8" + y1="15" + x2="8" + y2="0.9916327" /> + </defs> + <sodipodi:namedview + inkscape:window-height="714" + inkscape:window-width="1014" + inkscape:pageshadow="2" + inkscape:pageopacity="0" + borderopacity="1" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + showgrid="false" + showguides="true" + inkscape:guide-bbox="true" + inkscape:zoom="1" + inkscape:cx="27.558407" + inkscape:cy="20.353863" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:current-layer="svg2417" + showborder="false" + inkscape:showpageshadow="false" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient3305);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path2424" + sodipodi:cx="15.993708" + sodipodi:cy="26.722889" + sodipodi:rx="15.912521" + sodipodi:ry="4.7088075" + d="M 31.906229,26.722889 A 15.912521,4.7088075 0 1 1 31.906148,26.707864" + sodipodi:start="0" + sodipodi:end="6.2799944" + sodipodi:open="true" + transform="matrix(1.45896,0,0,1.538545,0.742037,-1.869655)" /> + <path + id="path3264" + d="M 21.80045,3.5250496 C 10.471905,4.3704822 1.592428,11.452408 1.592428,19.990844 C 1.592428,26.29506 6.3896918,31.807945 13.473996,34.585527 C 13.301077,37.113716 12.611393,40.274075 10.57377,42.444203 C 16.402876,42.263357 20.689781,39.28536 23.484452,36.456639 C 23.677129,36.460226 23.851935,36.456639 24.045787,36.456639 C 36.451938,36.456639 46.499142,29.098509 46.499142,19.990844 L 46.499142,19.897289 C 46.459634,10.808172 36.426737,3.5250496 24.045787,3.5250496 C 23.270404,3.5250496 22.555687,3.4686875 21.80045,3.5250496 z " + style="fill:url(#linearGradient4262);fill-opacity:1;fill-rule:nonzero;stroke:#797979;stroke-width:0.99999946;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + <path + sodipodi:nodetypes="ccccccccccccccccc" + id="path3552" + d="M 14.063569,10.992619 L 10.975162,10.992619 L 10.975162,15.008301 L 9,15.008301 L 9,18.010155 L 10.975162,18.010155 L 10.975162,24.823081 C 10.975162,28.316382 16.413217,26.749332 16.906897,25.946127 L 16.765885,23.742745 C 16.14428,24.364355 14.063569,24.882059 14.063569,24.09267 L 14.063569,18.010155 L 16.089796,18.010155 L 16.089796,15.008301 L 14.063569,15.008301 L 14.063569,11.090553 L 14.063569,11.090553 L 14.063569,10.992619 z " + style="fill:url(#linearGradient4258);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient4255);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 20.513467,15.031036 C 20.138171,15.089956 19.656414,15.165467 19.228078,15.318859 C 17.702481,15.865192 16.671718,16.778263 16.671718,16.778263 L 17.928902,19.157272 C 19.392632,18.022338 22.111019,16.595753 21.828421,20.24551 C 16.134551,19.714196 14.746648,23.348506 16.160515,25.369297 C 17.612211,27.444158 20.173876,27.641863 21.329645,26.185476 C 21.514145,25.952987 21.740964,25.678231 21.873764,25.369297 C 22.016347,25.75349 22.226874,26.072865 22.417883,26.321505 C 22.574471,26.517581 23.312178,27.152657 24.004897,27.137684 C 24.806193,27.120365 25.583813,26.58185 26,25.958759 C 25.645136,26.22137 24.252362,25.650216 24.231613,24.779835 L 24.231613,18.29575 C 24.142462,16.667478 22.425687,14.730825 20.513467,15.031036 z M 21.193616,23.328851 C 21.034551,24.122851 19.396586,24.681233 18.790423,24.326402 C 17.894487,23.801947 19.229645,22.393776 20.377437,22.376643 C 21.417389,22.361119 21.33274,22.634384 21.193616,23.328851 z " + id="path3554" + sodipodi:nodetypes="cscccsscsscccccsss" /> + <path + id="path3558" + d="M 29,11 L 26.098032,11 L 26.098032,27.104637 L 29,27.104637 L 29,11 z " + style="fill:url(#linearGradient4252);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccc" + id="path3560" + d="M 30,10.895363 L 30,19.851112 L 30,27 L 32.963722,27 L 32.963722,22.924045 L 36.561805,27.064163 L 38.705904,25.193137 L 34.676855,20.715264 L 38.705904,16.23739 L 36.754295,14.238037 L 32.968278,18.187047 C 32.968278,18.187047 32.963722,10.895363 32.963722,10.895363 L 30,10.895363 z " + style="fill:url(#linearGradient4249);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" + d="M 21.84375,4.03125 C 16.273135,4.4469767 11.295199,6.3799921 7.75,9.25 C 4.204801,12.120008 2.09375,15.904106 2.09375,20 C 2.093752,26.050562 6.709849,31.401486 13.65625,34.125 C 13.889662,34.247612 13.966606,34.430582 13.96875,34.625 C 13.8154,36.867085 13.233839,39.586592 11.6875,41.78125 C 16.756159,41.27394 20.580438,38.669315 23.125,36.09375 C 23.324492,35.928053 23.831229,35.96875 24.03125,35.96875 C 30.135475,35.96875 35.660367,34.1562 39.625,31.25 C 43.589633,28.3438 46,24.369973 46,20 L 46,19.90625 C 45.981043,15.545078 43.55655,11.604324 39.59375,8.71875 C 35.63095,5.8331761 30.123683,4.03125 24.03125,4.03125 C 23.381564,4.0312499 22.681539,3.982177 21.84375,4.03125 z M 24.03125,5.03125 C 29.927599,5.03125 35.264412,6.757119 39.03125,9.5 C 42.798088,12.242881 44.982638,15.911852 45,19.90625 L 45,20 C 45,24.002253 42.800008,27.674883 39.03125,30.4375 C 35.262492,33.200117 29.937773,34.96875 24.03125,34.96875 C 23.079654,34.946683 22.695929,35.117383 22.40625,35.40625 C 20.316957,37.520999 17.387178,39.593629 13.59375,40.46875 C 14.470139,38.520138 14.848653,36.443413 14.96875,34.6875 C 15.010593,33.903846 14.715478,33.607465 14.03125,33.1875 C 7.360656,30.572123 3.093751,25.543254 3.09375,20 C 3.09375,16.250753 5.042528,12.754344 8.40625,10.03125 C 11.769972,7.3081563 16.52295,5.4329977 21.90625,5.03125 C 22.667268,4.9737265 23.342191,5.0312499 24.03125,5.03125 z " + id="path6054" + sodipodi:nodetypes="csscccccsccssccsccscscccsscs" /> +</svg> diff --git a/data/icons/hicolor_apps_scalable_im-irc.svg b/data/icons/hicolor_apps_scalable_im-irc.svg new file mode 100644 index 000000000..a4ee660e3 --- /dev/null +++ b/data/icons/hicolor_apps_scalable_im-irc.svg @@ -0,0 +1,785 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="48" + height="48" + id="svg2" + inkscape:label="PozadÃ" + sodipodi:version="0.32" + inkscape:version="0.44+devel" + version="1.0" + sodipodi:docname="online.svg" + sodipodi:docbase="/home/cornelius/GFX/ikony/gajim/sources/iconsets/transports/irc/48x48" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs3"> + <linearGradient + inkscape:collect="always" + id="linearGradient5702"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop5704" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop5706" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4726"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop4728" /> + <stop + style="stop-color:#3465a4;stop-opacity:1" + offset="1" + id="stop4730" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4726" + id="linearGradient4732" + x1="3.7946429" + y1="7.0267859" + x2="13.392858" + y2="20.10984" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.8668106,0,0,2.8602375,1.0644378,6.9881155e-2)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5702" + id="radialGradient5708" + cx="15.625" + cy="29.767857" + fx="15.625" + fy="29.767857" + r="13.839286" + gradientTransform="matrix(1,0,0,7.0967742e-2,0,27.655299)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + r="21.035482" + fy="14.618562" + fx="24.687721" + cy="14.618562" + cx="24.687721" + gradientTransform="matrix(1.0297263,0,0,1.1788768,1.0605466,-1.8584828)" + gradientUnits="userSpaceOnUse" + id="radialGradient4947" + xlink:href="#linearGradient5816" + inkscape:collect="always" /> + <radialGradient + r="19" + fy="23.537582" + fx="16.488304" + cy="23.537582" + cx="16.488304" + gradientTransform="matrix(1.451479,0,0,1.326922,19.216439,-40.879303)" + gradientUnits="userSpaceOnUse" + id="radialGradient4944" + xlink:href="#linearGradient3103" + inkscape:collect="always" /> + <linearGradient + y2="42.285942" + x2="15.571428" + y1="29.99917" + x1="15.571428" + gradientTransform="matrix(0.721659,0,0,0.722208,31.336441,-26.878246)" + gradientUnits="userSpaceOnUse" + id="linearGradient4941" + xlink:href="#linearGradient3106" + inkscape:collect="always" /> + <linearGradient + y2="42.285942" + x2="15.571428" + y1="29.99917" + x1="15.571428" + gradientTransform="matrix(0.721659,0,0,0.722208,32.779758,-26.878246)" + gradientUnits="userSpaceOnUse" + id="linearGradient4938" + xlink:href="#linearGradient3106" + inkscape:collect="always" /> + <linearGradient + y2="42.405006" + x2="38.465416" + y1="2" + x1="16" + gradientTransform="matrix(0.909689,0,0,0.916448,27.52517,-27.353841)" + gradientUnits="userSpaceOnUse" + id="linearGradient4935" + xlink:href="#linearGradient3951" + inkscape:collect="always" /> + <radialGradient + r="9" + fy="22.17857" + fx="21.142859" + cy="22.17857" + cx="21.142859" + gradientTransform="matrix(0.764705,0,0,0.71453,30.987315,-32.88594)" + gradientUnits="userSpaceOnUse" + id="radialGradient4931" + xlink:href="#linearGradient3128" + inkscape:collect="always" /> + <linearGradient + y2="31.587952" + x2="32.927006" + y1="2" + x1="16" + gradientTransform="matrix(0.725295,0,0,0.682879,31.90823,-22.96952)" + gradientUnits="userSpaceOnUse" + id="linearGradient4927" + xlink:href="#linearGradient3951" + inkscape:collect="always" /> + <linearGradient + y2="38.499996" + x2="30.00001" + y1="31.785711" + x1="24.000008" + gradientTransform="matrix(0.514307,0,0,0.531053,37.022732,-26.679004)" + gradientUnits="userSpaceOnUse" + id="linearGradient4924" + xlink:href="#linearGradient3223" + inkscape:collect="always" /> + <linearGradient + y2="24.431168" + x2="27.055439" + y1="3.860764" + x1="17.725422" + gradientTransform="matrix(0.587733,0,0,0.453793,35.234662,-18.026032)" + gradientUnits="userSpaceOnUse" + id="linearGradient4921" + xlink:href="#linearGradient3951" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3106"> + <stop + style="stop-color:black;stop-opacity:1;" + offset="0" + id="stop3108" /> + <stop + style="stop-color:black;stop-opacity:0;" + offset="1" + id="stop3110" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3121"> + <stop + style="stop-color:black;stop-opacity:1;" + offset="0" + id="stop3123" /> + <stop + style="stop-color:black;stop-opacity:0;" + offset="1" + id="stop3125" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3103"> + <stop + style="stop-color:#73d216;stop-opacity:1" + offset="0" + id="stop3105" /> + <stop + style="stop-color:#4e9a06;stop-opacity:1" + offset="1" + id="stop3107" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3223"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop3225" /> + <stop + style="stop-color:#396ea7;stop-opacity:1" + offset="1" + id="stop3227" /> + </linearGradient> + <linearGradient + id="linearGradient3128" + inkscape:collect="always"> + <stop + id="stop3130" + offset="0" + style="stop-color:#fef291;stop-opacity:1" /> + <stop + id="stop3132" + offset="1" + style="stop-color:#edd400;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3112"> + <stop + style="stop-color:white;stop-opacity:1;" + offset="0" + id="stop3114" /> + <stop + style="stop-color:white;stop-opacity:0;" + offset="1" + id="stop3116" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3096"> + <stop + style="stop-color:black;stop-opacity:1;" + offset="0" + id="stop3098" /> + <stop + style="stop-color:black;stop-opacity:0;" + offset="1" + id="stop3100" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3080"> + <stop + style="stop-color:#ad7fa8;stop-opacity:1" + offset="0" + id="stop3082" /> + <stop + style="stop-color:#75507b;stop-opacity:1" + offset="1" + id="stop3084" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient3957" + x1="16" + y1="2" + x2="32.927006" + y2="31.587952" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.725295,0,0,0.682879,-1.432029,1.826073)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3951"> + <stop + style="stop-color:white;stop-opacity:1;" + offset="0" + id="stop3953" /> + <stop + style="stop-color:white;stop-opacity:0;" + offset="1" + id="stop3955" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient3092" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1,3)" + x1="18.107143" + y1="53.76825" + x2="8.4828358" + y2="3.3976703" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3096" + id="radialGradient3102" + cx="23.081985" + cy="42.747208" + fx="23.081985" + fy="42.747208" + r="16.010918" + gradientTransform="matrix(1,0,0,0.119874,0,37.62294)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3080" + id="radialGradient3104" + cx="17.309582" + cy="24.508204" + fx="17.309582" + fy="24.508204" + r="17.031612" + gradientTransform="matrix(2.13216,1.122823e-2,-1.1822e-2,2.244913,-18.75993,-30.16344)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3112" + id="linearGradient3118" + x1="24.260687" + y1="2.5335035" + x2="24.832115" + y2="22.012075" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3128" + id="radialGradient3120" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.705883,0,0,1.667238,-17.94118,-19.21085)" + cx="21.142859" + cy="22.17857" + fx="21.142859" + fy="22.17857" + r="9" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3128" + id="radialGradient3221" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.764705,0,0,0.71453,-2.352944,-8.090347)" + cx="21.142859" + cy="22.17857" + fx="21.142859" + fy="22.17857" + r="9" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3223" + id="linearGradient3229" + x1="24.000008" + y1="31.785711" + x2="30.00001" + y2="38.499996" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.514307,0,0,0.531053,3.682473,-1.883411)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3103" + id="radialGradient3109" + cx="15.269456" + cy="24.907877" + fx="15.269456" + fy="24.907877" + r="19" + gradientTransform="matrix(1.989063,0,0,1.427178,-17.28077,-7.054682)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient3111" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.258493,0,0,1.2607,-6.203794,1.409664)" + x1="16" + y1="2" + x2="38.465416" + y2="42.405006" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient3115" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.909689,0,0,0.916448,-5.815089,-2.558248)" + x1="16" + y1="2" + x2="38.465416" + y2="42.405006" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3103" + id="radialGradient3117" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.451479,0,0,1.326922,-14.12382,-16.08371)" + cx="16.488304" + cy="23.537582" + fx="16.488304" + fy="23.537582" + r="19" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3121" + id="radialGradient3127" + cx="23.991123" + cy="44.514973" + fx="23.991123" + fy="44.514973" + r="20.85965" + gradientTransform="matrix(1,0,0,0.16707,0,37.07785)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3106" + id="linearGradient3113" + x1="15.571428" + y1="29.99917" + x2="15.571428" + y2="42.285942" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.721659,0,0,0.722208,-0.560501,-2.082653)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3106" + id="linearGradient3116" + x1="15.571428" + y1="29.99917" + x2="15.571428" + y2="42.285942" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.721659,0,0,0.722208,-2.003818,-2.082653)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient3122" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.587733,0,0,0.453793,1.894403,6.769561)" + x1="17.725422" + y1="3.860764" + x2="27.055439" + y2="24.431168" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0297263,0,0,1.1788768,1.0605466,-1.8584828)" + r="21.035482" + fy="14.618562" + fx="24.687721" + cy="14.618562" + cx="24.687721" + id="radialGradient5822" + xlink:href="#linearGradient5816" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient7539" + x1="16" + y1="2" + x2="32.927006" + y2="31.587952" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.993546,0,0,0.998054,0.154891,5.053486)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient7531" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1,3)" + x1="18.107143" + y1="53.76825" + x2="8.4828358" + y2="3.3976703" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3096" + id="radialGradient7529" + cx="23.081985" + cy="42.747208" + fx="23.081985" + fy="42.747208" + r="16.010918" + gradientTransform="matrix(1,0,0,0.119874,0,37.62294)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3080" + id="radialGradient7527" + cx="17.309582" + cy="24.508204" + fx="17.309582" + fy="24.508204" + r="17.031612" + gradientTransform="matrix(2.13216,1.122823e-2,-1.1822e-2,2.244913,-18.75993,-30.16344)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3112" + id="linearGradient7525" + x1="24.260687" + y1="2.5335035" + x2="24.832115" + y2="22.012075" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3128" + id="radialGradient7523" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.705883,0,0,1.667238,-17.94118,-19.21085)" + cx="21.142859" + cy="22.17857" + fx="21.142859" + fy="22.17857" + r="9" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3128" + id="radialGradient7521" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.999999,0,0,1.000342,1.223408e-6,-8.326495)" + cx="21.142859" + cy="22.17857" + fx="21.142859" + fy="22.17857" + r="9" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3223" + id="linearGradient7519" + x1="24.000008" + y1="31.785711" + x2="30.00001" + y2="38.499996" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.679906,0,0,0.709362,7.683475,1.608315)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3103" + id="radialGradient7517" + cx="15.269456" + cy="24.907877" + fx="15.269456" + fy="24.907877" + r="19" + gradientTransform="matrix(1.989063,0,0,1.427178,-17.28077,-7.054682)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient7515" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.258493,0,0,1.2607,-6.203794,1.409664)" + x1="16" + y1="2" + x2="38.465416" + y2="42.405006" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient7513" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.258493,0,0,1.260118,-6.203794,-0.58013)" + x1="16" + y1="2" + x2="38.465416" + y2="42.405006" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3103" + id="radialGradient7511" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.989063,0,0,1.76923,-17.28077,-17.61162)" + cx="16.488304" + cy="23.537582" + fx="16.488304" + fy="23.537582" + r="19" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3121" + id="radialGradient7509" + cx="23.991123" + cy="44.514973" + fx="23.991123" + fy="44.514973" + r="20.85965" + gradientTransform="matrix(1,0,0,0.16707,0,37.07785)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3106" + id="linearGradient7507" + x1="15.571428" + y1="29.99917" + x2="15.571428" + y2="42.285942" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3106" + id="linearGradient7505" + x1="15.571428" + y1="29.99917" + x2="15.571428" + y2="42.285942" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3951" + id="linearGradient7503" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.993546,0,0,0.998054,0.154891,5.053486)" + x1="17.725422" + y1="3.860764" + x2="27.055439" + y2="24.431168" /> + <linearGradient + id="linearGradient5816"> + <stop + id="stop5818" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0.39655173" + id="stop5856" /> + <stop + id="stop5820" + offset="1" + style="stop-color:#eeeeec;stop-opacity:1" /> + </linearGradient> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.309375,0,18.245309)" + r="14.288518" + fy="26.418547" + fx="15.538764" + cy="26.418547" + cx="15.538764" + id="radialGradient6773" + xlink:href="#linearGradient6767" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + r="6.1172719" + fy="6.093667" + fx="13.980121" + cy="6.093667" + cx="13.980121" + id="radialGradient6743" + xlink:href="#linearGradient6737" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0,-1)" + gradientUnits="userSpaceOnUse" + y2="32.797932" + x2="21.490084" + y1="14.441401" + x1="13.751941" + id="linearGradient6733" + xlink:href="#linearGradient6725" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6725" + inkscape:collect="always"> + <stop + id="stop6727" + offset="0" + style="stop-color:#89afd7;stop-opacity:1" /> + <stop + id="stop6729" + offset="1" + style="stop-color:#3465a4;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient6737" + inkscape:collect="always"> + <stop + id="stop6739" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop6741" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient6767" + inkscape:collect="always"> + <stop + id="stop6769" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop6771" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5816" + id="radialGradient4949" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0297263,0,0,1.1788768,1.0605466,-1.8584828)" + cx="24.687721" + cy="14.618562" + fx="24.687721" + fy="14.618562" + r="21.035482" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5816" + id="radialGradient4957" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0297263,0,0,1.1788768,1.0605466,-1.8584828)" + cx="24.687721" + cy="14.618562" + fx="24.687721" + fy="14.618562" + r="21.035482" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5816" + id="radialGradient4965" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0297263,0,0,1.1788768,1.0605466,-1.8584828)" + cx="24.687721" + cy="14.618562" + fx="24.687721" + fy="14.618562" + r="21.035482" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="7.5424727" + inkscape:cx="8.4772054" + inkscape:cy="23.21386" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="48px" + height="48px" + showgrid="true" + inkscape:window-width="872" + inkscape:window-height="832" + inkscape:window-x="0" + inkscape:window-y="26" /> + <metadata + id="metadata6"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Vrstva 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.15283843;color:#000000;fill:url(#radialGradient5708);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000083;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path4731" + sodipodi:cx="15.625" + sodipodi:cy="29.767857" + sodipodi:rx="13.839286" + sodipodi:ry="0.98214287" + d="M 29.464286 29.767857 A 13.839286 0.98214287 0 1 1 1.7857141,29.767857 A 13.839286 0.98214287 0 1 1 29.464286 29.767857 z" + transform="matrix(1.5927335,0,0,2.1126475,-0.928756,-17.814065)" /> + <path + style="color:#000000;fill:url(#linearGradient4732);fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 11.710498,1.5000001 L 11.335402,7.5101883 L 4.5662103,7.5101883 L 3.5695431,16.50653 L 10.772758,16.50653 L 9.6988854,30.506095 L 3.4468149,30.506095 L 2.5909602,38.50606 L 9.1779384,38.50606 L 8.7097247,44.489767 L 17.934439,44.489767 L 18.402655,38.50606 L 26.102306,38.50606 L 25.634091,44.499999 L 36.497679,44.499999 L 36.965895,38.50606 L 42.592344,38.50606 L 43.496352,30.506095 L 37.48684,30.506095 L 38.560714,16.50653 L 44.535561,16.50653 L 45.500001,7.5101883 L 39.123357,7.5101883 L 39.498452,1.5000001 L 28.634867,1.5000001 L 28.25977,7.5101883 L 20.560118,7.5101883 L 20.935214,1.5000001 L 11.710498,1.5000001 z M 19.997472,16.50653 L 27.697124,16.50653 L 26.623253,30.506095 L 18.923602,30.506095 L 19.997472,16.50653 z " + id="rect4737" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" /> + <path + style="opacity:0.26200873;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 12.662293,2.5180902 L 12.290327,8.5240213 L 5.4649928,8.5155529 L 4.6994408,15.495028 L 11.859082,15.495028 L 10.637401,31.50383 L 4.3121668,31.50383 L 3.7128969,37.498846 L 10.249669,37.498846 L 9.8112881,43.482303 L 17.022528,43.482303 L 17.491948,37.497074 L 27.200365,37.497074 L 26.738481,43.505582 L 35.56437,43.505582 L 36.026255,37.503304 L 41.699959,37.503304 L 42.364358,31.518008 L 36.406999,31.518008 L 37.604901,15.487939 L 43.665365,15.487939 L 44.377785,8.5141728 L 38.03532,8.5141728 L 38.44715,2.501924 L 29.615827,2.5368429 L 29.186539,8.4967134 L 19.465706,8.5141728 L 19.831433,2.5077438 L 12.662293,2.5180902 z M 19.077577,15.487939 L 28.791039,15.487939 L 27.56016,31.518008 L 17.840881,31.518008 L 19.077577,15.487939 z " + id="rect5703" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" /> + </g> +</svg> diff --git a/data/icons/hicolor_apps_scalable_im-local-xmpp.svg b/data/icons/hicolor_apps_scalable_im-local-xmpp.svg new file mode 100644 index 000000000..cd9827459 --- /dev/null +++ b/data/icons/hicolor_apps_scalable_im-local-xmpp.svg @@ -0,0 +1,322 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.43" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable" + sodipodi:docname="bonjour.svg" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/bonjour.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient2314"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2316" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2318" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2302"> + <stop + style="stop-color:#f57900;stop-opacity:1;" + offset="0" + id="stop2304" /> + <stop + style="stop-color:#f57900;stop-opacity:0;" + offset="1" + id="stop2306" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2250"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2252" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2254" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2242"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2244" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2246" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2190"> + <stop + style="stop-color:#d3d7cf;stop-opacity:1;" + offset="0" + id="stop2192" /> + <stop + style="stop-color:#d3d7cf;stop-opacity:0;" + offset="1" + id="stop2194" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2238"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop2240" /> + <stop + style="stop-color:#eeeeec;stop-opacity:0;" + offset="1" + id="stop2242" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3150"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop3152" /> + <stop + style="stop-color:#2e3436;stop-opacity:0;" + offset="1" + id="stop3154" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3150" + id="radialGradient3156" + cx="10.748654" + cy="10.457643" + fx="10.748654" + fy="10.457643" + r="6.6449099" + gradientTransform="matrix(-0.934099,4.045903e-17,-5.060684e-9,-0.395926,20.78896,14.59809)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2238" + id="linearGradient2244" + x1="11.76915" + y1="3.4633243" + x2="11.76915" + y2="11.990735" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2190" + id="radialGradient2196" + cx="8.5215425" + cy="15.320235" + fx="8.5215425" + fy="15.320235" + r="8.5" + gradientTransform="matrix(-1.028411,1.186085,-1.192589,-1.03405,37.81647,10.91422)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2242" + id="linearGradient2248" + x1="11.237947" + y1="4.3039637" + x2="11.237947" + y2="12.430923" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2250" + id="linearGradient2256" + x1="11.237947" + y1="4.3039637" + x2="11.237947" + y2="12.601541" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2302" + id="linearGradient2308" + x1="7.6309624" + y1="7.9095716" + x2="14.844932" + y2="7.9095716" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2302" + id="linearGradient2310" + x1="7.6309624" + y1="7.9095716" + x2="14.844932" + y2="7.9095716" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="linearGradient2320" + x1="11.237947" + y1="2.7057509" + x2="11.237947" + y2="10.98068" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="linearGradient2324" + gradientUnits="userSpaceOnUse" + x1="11.237947" + y1="2.6204424" + x2="11.237947" + y2="10.810062" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="linearGradient2328" + gradientUnits="userSpaceOnUse" + x1="11.237947" + y1="2.876368" + x2="11.237947" + y2="10.89537" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.003863" + inkscape:cx="41.170813" + inkscape:cy="23.799748" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#f57900" + inkscape:window-width="1268" + inkscape:window-height="972" + inkscape:window-x="6" + inkscape:window-y="21" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + sodipodi:type="arc" + style="opacity:0.35;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path3140" + sodipodi:cx="10.748654" + sodipodi:cy="10.457643" + sodipodi:rx="6.6449099" + sodipodi:ry="2.3675451" + d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1 17.393564 10.457643 z" + transform="matrix(3.611787,0,0,2.323081,-14.82185,18.20605)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path1341" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(1.290432,0,0,1.297381,-3.009737,-2.680289)" /> + <path + style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#7d7f7a;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1" + d="M 35.46875,4.5366208 C 31.635379,4.6522391 27.705058,6.4906706 25.53125,9.7866208 C 26.103022,9.4743488 35.303923,4.6093611 38.34375,12.599121 C 39.472527,11.34018 43.22049,11.040461 45.5,12.224121 C 44.713989,6.8257933 40.179035,4.3945539 35.46875,4.5366208 z M 17.46875,4.5678708 C 18.127573,6.5529792 17.95859,8.1732436 17.53125,9.1616208 C 21.771815,8.0014671 29.858933,21.430311 30.5,22.505371 C 25.376692,11.592709 20.897066,5.8681195 17.46875,4.5678708 z M 5.34375,7.5678708 C -3.2027906,14.070713 3.9432311,26.177264 13.4375,26.536621 C 12.842607,26.198616 3.4390694,20.691845 9.4375,13.724121 C 7.6531589,13.401091 5.4098365,10.216725 5.34375,7.5678708 z M 21.46875,14.599121 C 14.518079,24.752705 11.892887,31.742633 12.65625,35.567871 C 14.072321,33.976734 15.618903,33.346912 16.75,33.255371 C 13.282151,29.863924 20.985214,15.493469 21.46875,14.599121 z M 37.40625,21.630371 C 36.029184,26.189083 21.006896,27.252123 18.78125,27.380371 C 31.047662,28.025568 38.491655,26.618231 41.5,23.942871 C 39.411924,23.554843 38.044876,22.56197 37.40625,21.630371 z M 33.125,28.599121 C 33.123038,29.265224 33.537967,40.230123 24.458146,38.651097 C 25.058081,40.306995 23.321409,43.5863 21.031089,44.953234 C 30.971079,48.901331 37.527529,36.737136 33.125,28.599121 z " + id="rect2206" + sodipodi:nodetypes="ccccccccccccccccccccccccc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-0.97818917" + inkscape:original="M 35.46875 4.53125 C 31.635379 4.6468685 27.705058 6.4852998 25.53125 9.78125 C 26.103022 9.4689777 35.303923 4.6039901 38.34375 12.59375 C 39.472527 11.334809 43.22049 11.03509 45.5 12.21875 C 44.713989 6.8204222 40.179035 4.3891831 35.46875 4.53125 z M 17.46875 4.5625 C 18.127573 6.5476086 17.95859 8.1678728 17.53125 9.15625 C 21.771815 7.996096 29.858933 21.42494 30.5 22.5 C 25.376692 11.587338 20.897066 5.8627487 17.46875 4.5625 z M 5.34375 7.5625 C -3.2027906 14.065342 3.9432311 26.171893 13.4375 26.53125 C 12.842607 26.193245 3.4390694 20.686474 9.4375 13.71875 C 7.6531589 13.39572 5.4098365 10.211354 5.34375 7.5625 z M 21.46875 14.59375 C 14.518079 24.747334 11.892887 31.737262 12.65625 35.5625 C 14.072321 33.971363 15.618903 33.341541 16.75 33.25 C 13.282151 29.858553 20.985214 15.488098 21.46875 14.59375 z M 37.40625 21.625 C 36.029184 26.183712 21.006896 27.246752 18.78125 27.375 C 31.047662 28.020197 38.491655 26.61286 41.5 23.9375 C 39.411924 23.549472 38.044876 22.556599 37.40625 21.625 z M 33.125 28.59375 C 33.123038 29.259853 33.548571 40.235276 24.46875 38.65625 C 25.068686 40.312149 23.32157 43.601816 21.03125 44.96875 C 30.971239 48.916845 37.527529 36.731765 33.125 28.59375 z " + xlink:href="#rect2206" + style="opacity:0.4;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1" + id="path2265" + d="M 35.5,6.4375 C 33.368939,6.5017749 31.254587,7.2183109 29.4375,8.375 C 29.955273,8.2616185 30.342793,8.0837857 30.90625,8.03125 C 32.406836,7.8913382 34.078294,8.0394993 35.59375,8.8125 C 36.831972,9.4440897 37.86888,10.628822 38.6875,12.1875 C 39.489624,11.770011 40.411361,11.500994 41.4375,11.4375 C 42.258666,11.386689 43.10461,11.462473 43.9375,11.625 C 43.379009,10.119471 42.589365,8.8531272 41.40625,8.03125 C 39.790488,6.908825 37.677617,6.3718209 35.5,6.4375 z M 18.78125,7.53125 C 18.821476,8.1885616 18.763233,8.7406401 18.65625,9.28125 C 19.760339,9.4560073 20.842148,9.9390765 21.875,10.78125 C 22.166416,11.018866 22.428639,11.416981 22.71875,11.6875 C 22.66814,11.618108 22.612837,11.505519 22.5625,11.4375 C 21.155108,9.5357202 19.912201,8.3834952 18.78125,7.53125 z M 4.78125,10.5 C 2.1367338,13.32142 1.9732812,16.73063 3.5,19.84375 C 4.6796069,22.249077 6.8918614,24.272293 9.5,25.4375 C 9.0508422,24.984485 8.5946267,24.68144 8.1875,24.125 C 7.2714393,22.872975 6.524154,21.350596 6.46875,19.59375 C 6.4232564,18.151162 7.0064835,16.584718 8.0625,15.03125 C 7.2533732,14.545104 6.5354947,13.881423 5.9375,13 C 5.4271977,12.247833 5.0629652,11.390597 4.78125,10.5 z M 37.5625,24 C 36.85358,24.922553 35.872279,25.684009 34.625,26.25 C 33.981881,26.541835 33.133881,26.670217 32.40625,26.90625 C 35.442669,26.486299 37.633021,25.855821 39.1875,25.0625 C 38.533201,24.753288 38.014785,24.406514 37.5625,24 z M 15.59375,27.6875 C 15.447519,28.018151 15.191854,28.433804 15.0625,28.75 C 14.093097,31.119641 13.782747,32.928132 13.6875,34.4375 C 14.296929,34.034852 14.855783,33.77311 15.4375,33.59375 C 14.976511,32.494336 14.815677,31.243494 15,29.84375 C 15.08934,29.165305 15.417606,28.406637 15.59375,27.6875 z M 33.3125,33.78125 C 33.133192,34.418356 33.085183,34.999527 32.78125,35.65625 C 32.13654,37.049308 31.160565,38.398872 29.65625,39.3125 C 28.414521,40.06665 26.766693,40.371954 24.875,40.25 C 24.843897,41.165669 24.622124,42.10692 24.15625,43.03125 C 23.766181,43.805178 23.234663,44.527693 22.625,45.1875 C 26.385249,45.969725 29.45049,44.399 31.40625,41.59375 C 32.935546,39.400201 33.59997,36.546168 33.3125,33.78125 z " + inkscape:href="#rect2206" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77265418;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2216" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(-0.645216,1.118132,-1.123564,-0.649031,58.6294,10.13592)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2222" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(-0.645216,-1.117547,1.123565,-0.64869,15.8724,57.25531)" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#linearGradient2320);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2228" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(0.971301,0,0,0.976532,0.576636,-0.142509)" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#linearGradient2324);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2322" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(0.971301,0,0,0.976532,31.58938,9.755058)" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:url(#linearGradient2328);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2326" + sodipodi:cx="11.237947" + sodipodi:cy="7.9095716" + sodipodi:rx="3.0935922" + sodipodi:ry="3.0935922" + d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1 8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1 14.33154 7.9095716 z" + transform="matrix(0.971301,0,0,0.976532,6.579761,31.79704)" /> + </g> +</svg> diff --git a/data/icons/hicolor_apps_scalable_im-msn.svg b/data/icons/hicolor_apps_scalable_im-msn.svg new file mode 100644 index 000000000..eb6511638 --- /dev/null +++ b/data/icons/hicolor_apps_scalable_im-msn.svg @@ -0,0 +1,302 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.43" + width="48" + height="48" + version="1.0" + inkscape:export-filename="/home/vinicius/tango-icon-theme-code/protocols/msn-48.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docbase="/home/vinicius/tango-icon-theme-code/protocols/scalable" + sodipodi:docname="msn.svg"> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>MSN Protocol</dc:title> + <dc:date>2006-11-29</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Vinicius Scopel Depizzol</dc:title> + </cc:Agent> + </dc:creator> + <dc:source>vdepizzol@gmail.com</dc:source> + <dc:subject> + <rdf:Bag> + <rdf:li>MSN</rdf:li> + <rdf:li>Protocol</rdf:li> + </rdf:Bag> + </dc:subject> + <cc:license + rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs5"> + <linearGradient + id="linearGradient3286"> + <stop + id="stop3288" + offset="0" + style="stop-color:#c7d9ec;stop-opacity:1;" /> + <stop + id="stop3290" + offset="1" + style="stop-color:#dfe9f4;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient7013"> + <stop + style="stop-color:#c7d9ec;stop-opacity:1;" + offset="0" + id="stop7015" /> + <stop + style="stop-color:#dfe9f4;stop-opacity:1;" + offset="1" + id="stop7017" /> + </linearGradient> + <linearGradient + id="linearGradient4380"> + <stop + style="stop-color:#000000;stop-opacity:0.60344827;" + offset="0" + id="stop4382" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop4384" /> + </linearGradient> + <linearGradient + id="linearGradient16408"> + <stop + style="stop-color:#87b2e0;stop-opacity:1;" + offset="0" + id="stop16410" /> + <stop + style="stop-color:#3f7ab9;stop-opacity:1;" + offset="1" + id="stop16412" /> + </linearGradient> + <linearGradient + id="linearGradient14652"> + <stop + style="stop-color:#badcff;stop-opacity:1;" + offset="0" + id="stop14654" /> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="1" + id="stop14656" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient14652" + id="radialGradient14658" + cx="24.80966" + cy="3.1118734" + fx="24.80966" + fy="3.1118734" + r="4.045774" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.143376,-1.546375e-15,1.755727e-15,1.33519,-3.557111,-1.043069)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient16408" + id="linearGradient2630" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.56247,0,0,2.753017,3.471512,0.653917)" + x1="7.3585782" + y1="10.033006" + x2="7.4242849" + y2="15.283006" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4380" + id="radialGradient4386" + cx="11.403918" + cy="11.820429" + fx="11.403918" + fy="11.820429" + r="3.9179103" + gradientTransform="matrix(1,0,0,0.4375,-9.43595e-18,6.648991)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4380" + id="radialGradient4390" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.4375,4.14469e-15,6.648991)" + cx="11.403918" + cy="11.820429" + fx="11.403918" + fy="11.820429" + r="3.9179103" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7013" + id="linearGradient7019" + x1="27.18845" + y1="8.5750885" + x2="23.755941" + y2="1.5480845" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3286" + id="linearGradient7027" + x1="14.197828" + y1="20.762081" + x2="5.7143059" + y2="8.1650333" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.045145,0,0,2.025318,0.739154,0.465862)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient16408" + id="linearGradient7946" + x1="7.0555573" + y1="33.672562" + x2="11.832954" + y2="35.06567" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.927935,0,0,1,1.147813,0)" /> + </defs> + <sodipodi:namedview + inkscape:window-height="714" + inkscape:window-width="1014" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + showgrid="false" + fill="#729fcf" + showborder="false" + inkscape:zoom="1" + inkscape:cx="37.5" + inkscape:cy="19" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:current-layer="svg2" + showguides="true" + inkscape:guide-bbox="true" /> + <path + transform="matrix(4.526985,0,0,3.006648,-28.23745,5.709214)" + sodipodi:open="true" + sodipodi:end="6.2799944" + sodipodi:start="0" + d="M 15.321829,11.820429 A 3.9179103,1.7140858 0 1 1 15.321809,11.814959" + sodipodi:ry="1.7140858" + sodipodi:rx="3.9179103" + sodipodi:cy="11.820429" + sodipodi:cx="11.403918" + id="path4388" + style="opacity:1;fill:url(#radialGradient4390);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.48917751" + sodipodi:type="arc" /> + <path + style="fill:url(#linearGradient7946);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.00000048px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" + d="M 15.46346,24.414244 C 10.785493,28.476792 1.6101807,34.975993 7.2307622,38.679967 C 12.779079,42.336318 14.894624,28.872343 14.894624,28.872343" + id="path8525" + sodipodi:nodetypes="czc" /> + <path + sodipodi:nodetypes="czc" + id="path7071" + d="M 15.353246,25.591713 C 11.734612,29.238525 3.2531464,35.09652 7.7417982,37.899128 C 12.001173,40.558581 14.043096,28.138937 14.043096,28.138937" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c7d9ec;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient2630);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.00000048px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 24.292455,17.301321 C 16.935857,17.428878 -2.1890432,43.377295 23.394922,43.377293 C 28.775671,43.377293 32.295389,42.22196 34.344814,40.402607 C 34.359882,40.38923 34.389733,40.416057 34.404649,40.402607 C 35.545703,40.890781 38.571551,39.598037 39.909512,38.693744 C 45.082133,35.19771 36.500579,26.909532 31.532546,22.301325 C 31.401541,22.179808 26.294466,17.48873 24.531797,17.364612 C 24.447957,17.358794 24.379687,17.299808 24.292455,17.301321 z " + id="path5023" + sodipodi:nodetypes="cssssssc" /> + <path + style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient7027);stroke-width:1.00000083px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 23.624857,42.414249 C -0.59814104,42.64502 18.255106,18.509032 24.039065,18.512059 C 26.410046,18.588582 38.20781,29.175081 40.119099,34.372181 C 41.916319,37.111847 36.635193,40.539824 34.716977,38.456356 C 33.320614,40.39141 29.993406,42.401612 23.624857,42.414249 z " + id="path5900" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#000000;fill-opacity:0.12987013;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 30.401802,32.658992 C 30.401802,32.658992 29.835279,40.428683 33.786549,40.24678 C 36.824985,40.104721 30.583172,32.660882 30.401802,32.658992 z " + id="path5265" + sodipodi:nodetypes="csc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient4386);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.48917751" + id="path3505" + sodipodi:cx="11.403918" + sodipodi:cy="11.820429" + sodipodi:rx="3.9179103" + sodipodi:ry="1.7140858" + d="M 15.321829,11.820429 A 3.9179103,1.7140858 0 1 1 15.321809,11.814959" + sodipodi:start="0" + sodipodi:end="6.2799944" + sodipodi:open="true" + transform="matrix(2.166658,0,0,3.055838,-1.154206,-14.5643)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient14658);fill-opacity:1;fill-rule:nonzero;stroke:#3465a4;stroke-width:0.34177133;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path2396" + sodipodi:cx="26.385618" + sodipodi:cy="4.5758967" + sodipodi:rx="3.595403" + sodipodi:ry="3.595403" + d="M 29.981021,4.5758967 A 3.595403,3.595403 0 1 1 29.981003,4.5644242" + sodipodi:start="0" + sodipodi:end="6.2799944" + sodipodi:open="true" + transform="matrix(2.924455,0,0,2.927415,-53.17815,-0.370312)" /> + <path + transform="matrix(2.645712,0,0,2.622481,-45.82115,0.928673)" + sodipodi:open="true" + sodipodi:end="6.2799944" + sodipodi:start="0" + d="M 29.981021,4.5758967 A 3.595403,3.595403 0 1 1 29.981003,4.5644242" + sodipodi:ry="3.595403" + sodipodi:rx="3.595403" + sodipodi:cy="4.5758967" + sodipodi:cx="26.385618" + id="path2398" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient7019);stroke-width:0.37964022;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path14660" + d="M 34.763497,38.506802 C 32.960413,37.064271 31.152443,33.19781 31.176374,32.550651" + style="fill:none;fill-opacity:0.92941176;fill-rule:evenodd;stroke:#c7d9ec;stroke-width:1.00000036px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + style="fill:none;fill-opacity:0.92941176;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.00000036px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 36.615639,40.197689 C 31.377707,39.46 30.570319,32.555681 30.570319,32.555681" + id="path10279" + sodipodi:nodetypes="cc" /> +</svg> diff --git a/data/icons/hicolor_apps_scalable_im-xmpp.svg b/data/icons/hicolor_apps_scalable_im-xmpp.svg new file mode 100644 index 000000000..a0a9eb866 --- /dev/null +++ b/data/icons/hicolor_apps_scalable_im-xmpp.svg @@ -0,0 +1,632 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + sodipodi:docbase="/home/baze/Desktop/jabber/scalable" + sodipodi:docname="jabber.svg" + version="1.0" + inkscape:export-filename="/home/baze/Desktop/jabber/scalable/jabber.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient6156"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop6158" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop6160" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6339"> + <stop + style="stop-color:#cc0000;stop-opacity:1;" + offset="0" + id="stop6341" /> + <stop + style="stop-color:#cc0000;stop-opacity:0;" + offset="1" + id="stop6343" /> + </linearGradient> + <linearGradient + id="linearGradient6305"> + <stop + id="stop6307" + offset="0" + style="stop-color:#cc0000;stop-opacity:0;" /> + <stop + id="stop6309" + offset="1" + style="stop-color:#cc0000;stop-opacity:0.61176473;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient1311"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop1313" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop1315" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5100" + gradientUnits="userSpaceOnUse" + x1="27.943266" + y1="1.5" + x2="27.943266" + y2="25.500046" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5121" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,67.476312,197.10085)" + x1="274.33041" + y1="394.74817" + x2="279.77005" + y2="394.74817" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5125" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,134.89766)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5128" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.20175,195.70886)" + x1="273.4534" + y1="397.57925" + x2="278.89304" + y2="397.57925" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5131" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.50572)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5134" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.41933)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5137" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.33292)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5140" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201735,195.89128)" + x1="273.4534" + y1="397.20825" + x2="278.89304" + y2="397.20825" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5143" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201735,195.90514)" + x1="273.4534" + y1="397.18005" + x2="278.89304" + y2="397.18005" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient5146" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201764,196.05741)" + x1="273.45337" + y1="396.87036" + x2="278.89301" + y2="396.87036" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient5150" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8923776,0,0,0.9986827,270.78512,364.22471)" + x1="28.032001" + y1="3.8257253" + x2="28.032001" + y2="29.140774" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6339" + id="linearGradient5153" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4184829,0,0,1.4000056,-75.308126,-131.49921)" + x1="262.54434" + y1="363.74292" + x2="256.31683" + y2="368.26056" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6156" + id="radialGradient6162" + cx="13.992072" + cy="29.030083" + fx="13.992072" + fy="29.030083" + r="6.9228339" + gradientTransform="matrix(1,0,0,0.2960725,0,20.435073)" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + x="-0.030158492" + width="1.060317" + y="-0.10186184" + height="1.2037237" + id="filter6184"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.17398519" + id="feGaussianBlur6186" /> + </filter> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6156" + id="radialGradient6224" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.2960725,0,20.435073)" + cx="13.992072" + cy="29.030083" + fx="13.992072" + fy="29.030083" + r="6.9228339" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6339" + id="linearGradient6226" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4184829,0,0,1.4000056,-75.308126,-131.49921)" + x1="262.54434" + y1="363.74292" + x2="256.31683" + y2="368.26056" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6228" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8923776,0,0,0.9986827,270.78512,364.22471)" + x1="28.032001" + y1="3.8257253" + x2="28.032001" + y2="29.140774" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6230" + gradientUnits="userSpaceOnUse" + x1="27.943266" + y1="1.5" + x2="27.943266" + y2="25.500046" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6232" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201764,196.05741)" + x1="273.45337" + y1="396.87036" + x2="278.89301" + y2="396.87036" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6234" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201735,195.90514)" + x1="273.4534" + y1="397.18005" + x2="278.89304" + y2="397.18005" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6236" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.201735,195.89128)" + x1="273.4534" + y1="397.20825" + x2="278.89304" + y2="397.20825" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6238" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.33292)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6240" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.41933)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6242" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,133.50572)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6244" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,68.20175,195.70886)" + x1="273.4534" + y1="397.57925" + x2="278.89304" + y2="397.57925" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6246" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.7618383,0,0,0.6527934,502.60091,134.89766)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6248" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8271607,0,0,0.4916824,67.476312,197.10085)" + x1="274.33041" + y1="394.74817" + x2="279.77005" + y2="394.74817" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6251" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.2619512,0,0,0.7413853,-43.834448,110.10038)" + x1="274.33041" + y1="394.74817" + x2="279.77005" + y2="394.74817" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6255" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1622926,0,0,0.9843171,618.12748,16.198336)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6258" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.2619512,0,0,0.7413853,-42.834449,108.10035)" + x1="273.4534" + y1="397.57925" + x2="278.89304" + y2="397.57925" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6261" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1622926,0,0,0.9843171,618.12748,14.198414)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6264" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1622926,0,0,0.9843171,618.12748,14.16705)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6267" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1622926,0,0,0.9843171,618.12748,14.135677)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6270" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.2619512,0,0,0.7413853,-42.834472,108.47434)" + x1="273.4534" + y1="397.20825" + x2="278.89304" + y2="397.20825" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6273" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.2619512,0,0,0.7413853,-42.834472,108.59416)" + x1="273.4534" + y1="397.18005" + x2="278.89304" + y2="397.18005" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6305" + id="linearGradient6276" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.2619512,0,0,0.7413853,-42.834428,108.92266)" + x1="273.45337" + y1="396.87036" + x2="278.89301" + y2="396.87036" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6280" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4173051,0,0,1.5768665,263.83554,361.89844)" + x1="28.032001" + y1="3.8257253" + x2="28.032001" + y2="29.140774" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6339" + id="linearGradient6283" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.1640972,0,0,2.1331674,-262.6967,-392.68034)" + x1="262.54434" + y1="363.74292" + x2="256.31683" + y2="368.26056" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6288" + gradientUnits="userSpaceOnUse" + x1="27.943266" + y1="1.5" + x2="27.943266" + y2="25.500046" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient6156" + id="radialGradient6290" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.2960725,0,20.435073)" + cx="13.992072" + cy="29.030083" + fx="13.992072" + fy="29.030083" + r="6.9228339" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient1311" + id="linearGradient6294" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1622926,0,0,0.9843171,619.12748,18.19834)" + x1="278.50909" + y1="391.67624" + x2="273.50909" + y2="391.73898" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + gridtolerance="1" + guidetolerance="0.4" + objecttolerance="0.4" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="16.904373" + inkscape:cx="36.723208" + inkscape:cy="13.602623" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="true" + inkscape:grid-points="false" + inkscape:window-width="1024" + inkscape:window-height="723" + inkscape:window-x="0" + inkscape:window-y="25" + width="48px" + height="48px" + gridspacingx="1px" + gridspacingy="1px" + inkscape:grid-bbox="true" + showguides="true" + inkscape:guide-bbox="true"> + <sodipodi:guide + orientation="vertical" + position="11.001241" + id="guide6343" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Layer1" + style="display:inline" + transform="translate(-278.49946,-366.7429)"> + <path + sodipodi:type="arc" + style="opacity:0.2;fill:url(#radialGradient6290);fill-opacity:1;stroke:none;stroke-width:16.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6184)" + id="path5161" + sodipodi:cx="13.992072" + sodipodi:cy="29.030083" + sodipodi:rx="6.9228339" + sodipodi:ry="2.0496609" + d="M 20.914906 29.030083 A 6.9228339 2.0496609 0 1 1 7.0692382,29.030083 A 6.9228339 2.0496609 0 1 1 20.914906 29.030083 z" + transform="matrix(1.3000458,0,0,1.4636583,283.30913,369.25278)" /> + <path + style="fill:#555753;fill-rule:evenodd;stroke:#2f312e;stroke-width:1.00000036px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 296.11675,408.3226 C 297.0139,407.8359 305.98507,407.8359 306.88215,408.3226 C 307.7793,408.80934 303.29371,411.24291 301.49948,411.24291 C 299.70529,411.24291 295.21967,408.80934 296.11675,408.3226 z " + id="path5592" + sodipodi:nodetypes="czzz" /> + <path + style="fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + d="M 294.55231,397.1754 C 293.58927,397.59612 292.99947,398.09958 292.99947,398.65147 C 292.99947,399.024 294.45661,399.3503 294.92021,399.67061 C 294.45661,399.99097 292.99947,400.3524 292.99947,400.72498 C 292.99947,401.09749 294.45661,401.42381 294.92021,401.74412 C 294.45661,402.06445 292.99947,402.42593 292.99947,402.79846 C 292.99947,403.17099 294.45661,403.53243 294.92021,403.85278 C 294.45661,404.17311 292.99947,404.49942 292.99947,404.87198 C 292.99947,405.3804 294.70453,405.87718 295.53321,406.27775 C 295.36596,406.49377 294.31722,406.50981 294.31722,406.74421 C 294.31722,408.17684 297.39386,408.88494 301.49946,408.88494 C 305.60498,408.88494 308.79106,408.17684 308.79106,406.74421 C 308.79106,406.50981 307.73306,406.49377 307.56586,406.27775 C 308.39448,405.87718 309.99948,405.3804 309.99948,404.87198 C 309.99948,404.49942 308.60152,404.17311 308.13795,403.85278 C 308.60152,403.53243 309.99948,403.17099 309.99948,402.79846 C 309.99948,402.42593 308.60152,402.06445 308.13795,401.74412 C 308.60152,401.42381 309.99948,401.09749 309.99948,400.72498 C 309.99948,400.3524 308.60152,399.99097 308.13795,399.67061 C 308.60152,399.3503 309.99948,399.024 309.99948,398.65147 C 309.99948,398.10561 309.4314,397.59351 308.48744,397.1754 C 306.69453,398.16654 304.04176,398.49379 301.58831,398.55875 C 299.15979,398.62304 296.91696,398.33866 294.55231,397.1754 z " + id="path5590" + sodipodi:nodetypes="cscscscscssscscscscscsc" /> + <path + style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6283);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="M 315.99092,380.18994 C 315.99092,387.67268 310.43033,391.38117 307.59632,396.93814 C 306.63787,398.81727 303.69021,399.2429 301.44323,399.2429 C 299.18267,399.2429 296.34335,398.83222 295.38594,396.93814 C 292.58466,391.39636 287.00372,388.41334 287.00372,380.18994 C 287.00372,371.96654 293.82138,367.24551 301.49763,367.24551 C 309.16091,367.24551 315.99092,372.70717 315.99092,380.18994 z " + id="path4659" + sodipodi:nodetypes="cssszsz" /> + <path + style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6280);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline" + d="M 288.07066,381.20002 C 288.3095,388.08935 295.41504,392.41305 296.77687,397.23419 C 299.93024,398.67946 303.14035,398.5193 306.18423,397.08848 C 309.47478,390.95505 314.30064,387.09849 314.98118,381.05927 C 315.41813,373.11194 307.93381,368.24291 301.93649,368.24291 C 293.56935,368.24291 287.25346,373.68738 288.07066,381.20002 z " + id="path5564" + sodipodi:nodetypes="ccccsc" /> + <path + sodipodi:type="arc" + style="fill:url(#linearGradient6288);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.3233397;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" + id="path5556" + sodipodi:cx="26.5" + sodipodi:cy="13.5" + sodipodi:rx="11.5" + sodipodi:ry="11.5" + d="M 38 13.5 A 11.5 11.5 0 1 1 15,13.5 A 11.5 11.5 0 1 1 38 13.5 z" + transform="matrix(0.7826087,0,0,0.3913042,280.76033,368.96029)" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6276);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 302.95166,398.98428 C 306.73753,398.98428 307.99946,398.2429 307.99946,398.2429" + id="path6619" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6273);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 303.43041,400.87994 C 306.8572,400.87994 307.99946,400.2429 307.99946,400.2429" + id="path6621" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6270);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 303.43041,402.9843 C 306.8572,402.9843 307.99946,402.2429 307.99946,402.2429" + id="path6623" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient6267);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 299.64862,399.2429 C 296.16175,399.2429 294.99946,398.25859 294.99946,398.25859" + id="path6652" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient6264);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 299.64862,401.2429 C 296.16175,401.2429 294.99946,400.25859 294.99946,400.25859" + id="path6654" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient6261);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 299.64862,403.2429 C 296.16175,403.2429 294.99946,402.25859 294.99946,402.25859" + id="path6656" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6258);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 303.43041,404.83446 C 306.8572,404.83446 307.99946,404.2429 307.99946,404.2429" + id="path6695" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient6255);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 299.64862,405.2429 C 296.16175,405.2429 294.99946,404.25859 294.99946,404.25859" + id="path6708" + sodipodi:nodetypes="cc" /> + <path + style="fill:#fed12d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 292.49946,378.7429 L 297.0611,394.715 L 297.03628,382.82739 L 306.06504,382.82739 L 305.98222,394.7429 L 310.49946,378.7429 L 306.63651,380.79208 L 296.33848,380.79208 L 292.49946,378.7429 z " + id="path6155" + sodipodi:nodetypes="ccccccccc" /> + <path + sodipodi:nodetypes="cc" + id="path6126" + d="M 302.43041,406.83448 C 305.8572,406.83448 306.99946,406.2429 306.99946,406.2429" + style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6251);stroke-width:1.00000072px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="opacity:0.80349342;fill:none;fill-rule:evenodd;stroke:url(#linearGradient6294);stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" + d="M 300.64862,407.2429 C 297.16175,407.2429 295.99946,406.25859 295.99946,406.25859" + id="path6292" + sodipodi:nodetypes="cc" /> + </g> +</svg> diff --git a/data/icons/hicolor_status_16x16_empathy-available.png b/data/icons/hicolor_status_16x16_empathy-available.png Binary files differnew file mode 100644 index 000000000..66b24967a --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-available.png diff --git a/data/icons/hicolor_status_16x16_empathy-available.svg b/data/icons/hicolor_status_16x16_empathy-available.svg new file mode 100644 index 000000000..8d4cc585f --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-available.svg @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16px" + height="16px" + id="svg4908" + sodipodi:version="0.32" + inkscape:version="0.44+devel" + sodipodi:docbase="/home/andreas/project/gossip/16x16" + sodipodi:docname="status-avaible.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/home/andreas/project/gossip/16x16/status-avaible.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:modified="true"> + <defs + id="defs4910"> + <linearGradient + inkscape:collect="always" + id="linearGradient5899"> + <stop + style="stop-color:#7fe719;stop-opacity:1" + offset="0" + id="stop5901" /> + <stop + style="stop-color:#67bc13;stop-opacity:1" + offset="1" + id="stop5903" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5899" + id="radialGradient5905" + cx="9.466115" + cy="8.9839392" + fx="9.466115" + fy="8.9839392" + r="6.7474474" + gradientTransform="matrix(1.1671849,-3.2679277e-3,2.7524467e-3,1.0150183,-1.6222549,-0.2024225)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.197802" + inkscape:cx="14.452639" + inkscape:cy="6.4458104" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:window-width="1674" + inkscape:window-height="969" + inkscape:window-x="0" + inkscape:window-y="26" /> + <metadata + id="metadata4913"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient5905);fill-opacity:1;stroke:#376e01;stroke-width:0.97113216;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4926" + sodipodi:cx="7.9737625" + sodipodi:cy="7.7221532" + sodipodi:rx="6.2618814" + sodipodi:ry="6.3632426" + d="M 14.235644 7.7221532 A 6.2618814 6.3632426 0 1 1 1.7118812,7.7221532 A 6.2618814 6.3632426 0 1 1 14.235644 7.7221532 z" + transform="matrix(1.0380267,0,0,1.0214918,-0.2769783,0.1118841)" /> + <path + sodipodi:type="arc" + style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.14770162;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path5897" + sodipodi:cx="7.9737625" + sodipodi:cy="7.7221532" + sodipodi:rx="6.2618814" + sodipodi:ry="6.3632426" + d="M 14.235644 7.7221532 A 6.2618814 6.3632426 0 1 1 1.7118812,7.7221532 A 6.2618814 6.3632426 0 1 1 14.235644 7.7221532 z" + transform="matrix(0.8783303,0,0,0.8643392,0.996403,1.3254404)" /> + </g> +</svg> diff --git a/data/icons/hicolor_status_16x16_empathy-away.png b/data/icons/hicolor_status_16x16_empathy-away.png Binary files differnew file mode 100644 index 000000000..ff59e309d --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-away.png diff --git a/data/icons/hicolor_status_16x16_empathy-away.svg b/data/icons/hicolor_status_16x16_empathy-away.svg new file mode 100644 index 000000000..7e7b0ed6b --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-away.svg @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16px" + height="16px" + id="svg4908" + sodipodi:version="0.32" + inkscape:version="0.44+devel" + sodipodi:docbase="/home/andreas/project/gossip/16x16" + sodipodi:docname="status-away.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/home/andreas/project/gossip/16x16/status-away.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:modified="true"> + <defs + id="defs4910"> + <linearGradient + inkscape:collect="always" + id="linearGradient5917"> + <stop + style="stop-color:#f80000;stop-opacity:1" + offset="0" + id="stop5919" /> + <stop + style="stop-color:#e70000;stop-opacity:1" + offset="1" + id="stop5921" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5917" + id="linearGradient5923" + x1="6.5096536" + y1="8.5893564" + x2="9.9108915" + y2="11.540099" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.9925682,6.043956e-8,1.1147803e-2)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="13.206814" + inkscape:cy="4.0564985" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:window-width="1674" + inkscape:window-height="969" + inkscape:window-x="0" + inkscape:window-y="26" /> + <metadata + id="metadata4913"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + style="fill:url(#linearGradient5923);fill-opacity:1;fill-rule:evenodd;stroke:#8a0000;stroke-width:0.99999988px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1.5,13.5 L 14.499999,13.5 L 7.9789933,1.4999999 L 1.5,13.5 z " + id="path4944" + sodipodi:nodetypes="cccc" /> + <path + style="opacity:0.3;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 3.2186016,12.488535 L 12.832121,12.488535 L 8.0098272,3.5671249 L 3.2186016,12.488535 z " + id="path4946" + sodipodi:nodetypes="cccc" /> + </g> +</svg> diff --git a/data/icons/hicolor_status_16x16_empathy-busy.png b/data/icons/hicolor_status_16x16_empathy-busy.png Binary files differnew file mode 100644 index 000000000..fec554d89 --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-busy.png diff --git a/data/icons/hicolor_status_16x16_empathy-busy.svg b/data/icons/hicolor_status_16x16_empathy-busy.svg new file mode 100644 index 000000000..66fc70945 --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-busy.svg @@ -0,0 +1,140 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16px" + height="16px" + id="svg6941" + sodipodi:version="0.32" + inkscape:version="0.44+devel" + sodipodi:docbase="/home/andreas/project/gossip/16x16" + sodipodi:docname="status-busy.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/home/andreas/project/gossip/16x16/status-busy.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:modified="true"> + <defs + id="defs6943"> + <linearGradient + inkscape:collect="always" + id="linearGradient5899"> + <stop + style="stop-color:#fce94f;stop-opacity:1" + offset="0" + id="stop5901" /> + <stop + style="stop-color:#edd400;stop-opacity:1" + offset="1" + id="stop5903" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5899" + id="radialGradient5905" + cx="9.466115" + cy="8.9839392" + fx="9.466115" + fy="8.9839392" + r="6.7474474" + gradientTransform="matrix(1.1671849,-3.2679277e-3,2.7524467e-3,1.0150183,-1.6222549,-0.2024225)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="15.696217" + inkscape:cx="17.665904" + inkscape:cy="9.7718474" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:window-width="1674" + inkscape:window-height="969" + inkscape:window-x="0" + inkscape:window-y="26" /> + <metadata + id="metadata6946"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient5905);fill-opacity:1;stroke:#8d7300;stroke-width:0.97113222;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4926" + sodipodi:cx="7.9737625" + sodipodi:cy="7.7221532" + sodipodi:rx="6.2618814" + sodipodi:ry="6.3632426" + d="M 14.235644 7.7221532 A 6.2618814 6.3632426 0 1 1 1.7118812,7.7221532 A 6.2618814 6.3632426 0 1 1 14.235644 7.7221532 z" + transform="matrix(1.0380267,0,0,1.0214918,-0.2769782,0.1118841)" /> + <path + sodipodi:type="arc" + style="opacity:0.6;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.14770162;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path5897" + sodipodi:cx="7.9737625" + sodipodi:cy="7.7221532" + sodipodi:rx="6.2618814" + sodipodi:ry="6.3632426" + d="M 14.235644 7.7221532 A 6.2618814 6.3632426 0 1 1 1.7118812,7.7221532 A 6.2618814 6.3632426 0 1 1 14.235644 7.7221532 z" + transform="matrix(0.8783303,0,0,0.8643392,0.996403,1.3254404)" /> + <rect + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5886" + width="9.000001" + height="9" + x="5.5" + y="5.5" + rx="0" + ry="0" /> + <rect + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5969" + width="7" + height="7" + x="6.5" + y="6.5" + rx="0" + ry="0" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#8d7300;fill-opacity:1;stroke:none;stroke-width:1.46393549;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path5888" + sodipodi:cx="10.676733" + sodipodi:cy="7.8460393" + sodipodi:rx="1.4415842" + sodipodi:ry="1.4866337" + d="M 12.118317 7.8460393 A 1.4415842 1.4866337 0 1 1 9.2351488,7.8460393 A 1.4415842 1.4866337 0 1 1 12.118317 7.8460393 z" + transform="matrix(0.6936814,0,0,0.6726606,2.5937487,2.7222784)" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999994px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 7.4772272,10.5 L 11.522773,10.5" + id="path5883" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 7.4872926,12.5 L 11.524094,12.5" + id="path5885" /> + </g> +</svg> diff --git a/data/icons/hicolor_status_16x16_empathy-extended-away.png b/data/icons/hicolor_status_16x16_empathy-extended-away.png Binary files differnew file mode 100644 index 000000000..9f74bd01a --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-extended-away.png diff --git a/data/icons/hicolor_status_16x16_empathy-extended-away.svg b/data/icons/hicolor_status_16x16_empathy-extended-away.svg new file mode 100644 index 000000000..3104dff54 --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-extended-away.svg @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16px" + height="16px" + id="svg4908" + sodipodi:version="0.32" + inkscape:version="0.44" + sodipodi:docbase="/home/martyn/Desktop/16x16" + sodipodi:docname="status-away-extended.svg" + inkscape:export-filename="/home/martyn/Desktop/16x16/status-away-extended.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs4910"> + <linearGradient + inkscape:collect="always" + id="linearGradient5917"> + <stop + style="stop-color:#d80000;stop-opacity:1" + offset="0" + id="stop5919" /> + <stop + style="stop-color:#ca0000;stop-opacity:1" + offset="1" + id="stop5921" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5917" + id="linearGradient5923" + x1="6.5096536" + y1="8.5893564" + x2="9.9108915" + y2="11.540099" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1538462,0,0,1.0752822,-1.2307693,-0.1129232)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="42.866662" + inkscape:cx="8.0000008" + inkscape:cy="7.4533429" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:window-width="1323" + inkscape:window-height="987" + inkscape:window-x="0" + inkscape:window-y="26" /> + <metadata + id="metadata4913"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + style="fill:url(#linearGradient5923);fill-opacity:1;fill-rule:evenodd;stroke:#8a0000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 0.5,14.5 L 15.5,14.5 L 7.975762,1.5 L 0.5,14.5 z " + id="path4944" + sodipodi:nodetypes="cccc" /> + <path + style="opacity:0.3;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 2.2790289,13.5 L 13.779497,13.5 L 8.0106803,3.5000001 L 2.2790289,13.5 z " + id="path4946" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#ffe680;fill-opacity:1;stroke:#555753;stroke-width:0.8123197;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4911" + sodipodi:cx="11.09375" + sodipodi:cy="11.890625" + sodipodi:rx="4.53125" + sodipodi:ry="3.640625" + d="M 15.625 11.890625 A 4.53125 3.640625 0 1 1 6.5625,11.890625 A 4.53125 3.640625 0 1 1 15.625 11.890625 z" + transform="matrix(0.983072,0,0,1.223563,-1.005946,-3.448939)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:1.01539958;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path5882" + sodipodi:cx="11.09375" + sodipodi:cy="11.890625" + sodipodi:rx="4.53125" + sodipodi:ry="3.640625" + d="M 15.625 11.890625 A 4.53125 3.640625 0 1 1 6.5625,11.890625 A 4.53125 3.640625 0 1 1 15.625 11.890625 z" + transform="matrix(0.786458,0,0,0.978852,1.175241,-0.539149)" /> + <path + style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:0.91149789px;stroke-linecap:round;stroke-linejoin:round;marker-mid:none;stroke-opacity:1" + d="M 10.027723,8.0394381 L 10.027723,11.229682 L 6.8944493,11.229682" + id="path5884" /> + <path + style="opacity:0.33695655;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 5.8909083,11.545458 C 9.3617367,11.656825 9.9649551,9.8471677 13.714194,9.8750085 C 13.073853,8.0931929 11.598288,7.100202 9.8999937,7.0909217 C 8.1738593,7.0816413 5.9187492,8.9469795 5.8909083,11.545458 z " + id="path5886" + sodipodi:nodetypes="cczc" /> + </g> +</svg> diff --git a/data/icons/hicolor_status_16x16_empathy-offline.png b/data/icons/hicolor_status_16x16_empathy-offline.png Binary files differnew file mode 100644 index 000000000..0321dc6bb --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-offline.png diff --git a/data/icons/hicolor_status_16x16_empathy-offline.svg b/data/icons/hicolor_status_16x16_empathy-offline.svg new file mode 100644 index 000000000..975f7dc8f --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-offline.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="16px" + height="16px" + id="svg6941" + sodipodi:version="0.32" + inkscape:version="0.44+devel" + sodipodi:docbase="/home/andreas/project/gossip/16x16" + sodipodi:docname="status-offline.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/home/andreas/project/gossip/16x16/status-offline.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:modified="true"> + <defs + id="defs6943"> + <linearGradient + inkscape:collect="always" + id="linearGradient7922"> + <stop + style="stop-color:#e8e8e6;stop-opacity:1" + offset="0" + id="stop7924" /> + <stop + style="stop-color:#babdb6;stop-opacity:1" + offset="1" + id="stop7926" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7922" + id="linearGradient7928" + x1="0.67574239" + y1="0.81831664" + x2="9.8658419" + y2="10.594059" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8666667,0,0,0.8666667,1.0666667,1.0666666)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.197802" + inkscape:cx="15.038145" + inkscape:cy="7.8865336" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:window-width="1674" + inkscape:window-height="969" + inkscape:window-x="0" + inkscape:window-y="26" /> + <metadata + id="metadata6946"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <rect + style="opacity:1;fill:url(#linearGradient7928);fill-opacity:1;stroke:#555753;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect6949" + width="13" + height="13" + x="1.5" + y="1.4999999" + rx="1.4641089" + ry="1.4641089" /> + <rect + style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect7920" + width="11" + height="11" + x="2.5" + y="2.5" + rx="0.45049509" + ry="0.45049506" /> + </g> +</svg> diff --git a/data/icons/hicolor_status_16x16_empathy-pending.png b/data/icons/hicolor_status_16x16_empathy-pending.png Binary files differnew file mode 100644 index 000000000..4adfdb648 --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-pending.png diff --git a/data/icons/hicolor_status_16x16_empathy-pending.svg b/data/icons/hicolor_status_16x16_empathy-pending.svg new file mode 100644 index 000000000..89c626c85 --- /dev/null +++ b/data/icons/hicolor_status_16x16_empathy-pending.svg @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="22" + height="22" + id="svg4908" + sodipodi:version="0.32" + inkscape:version="0.44+devel" + version="1.0" + sodipodi:docbase="/home/andreas/project/misc icons/22x22" + sodipodi:docname="status-pending.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/home/andreas/project/misc icons/22x22/status-pending.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:modified="TRUE"> + <defs + id="defs4910"> + <linearGradient + inkscape:collect="always" + id="linearGradient5898"> + <stop + style="stop-color:#555753;stop-opacity:1;" + offset="0" + id="stop5900" /> + <stop + style="stop-color:#3b3c39;stop-opacity:1" + offset="1" + id="stop5902" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5898" + id="linearGradient5904" + x1="13.756032" + y1="6.1055899" + x2="11.815526" + y2="10.317804" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="13.74062" + inkscape:cy="11.30699" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + width="22px" + height="22px" + inkscape:window-width="1680" + inkscape:window-height="973" + inkscape:window-x="0" + inkscape:window-y="26" /> + <metadata + id="metadata4913"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + transform="scale(1.0248552,0.9757476)" + style="font-size:26.23629379px;font-style:normal;font-weight:normal;fill:url(#linearGradient5904);fill-opacity:1.0;stroke:#2e3436;stroke-width:1.00000024px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" + d="M 11.275218,14.919035 L 7.3476583,14.919035 L 7.3476583,13.925219 C 7.3476538,13.224909 7.4885713,12.605727 7.7704111,12.067669 C 8.0522411,11.521089 8.3408215,10.829313 9.246116,9.9923373 L 10.066,9.2493173 C 10.552798,8.8052256 10.907227,8.3867434 11.129288,7.9938696 C 11.359871,7.6010219 11.475167,7.2081611 11.475176,6.8152861 C 11.475167,6.2174687 11.270196,5.7520141 10.860263,5.4189209 C 10.450313,5.0773184 9.8781028,4.9065094 9.1436305,4.9064933 C 8.4518474,4.9065094 7.7045578,5.0516971 6.9017597,5.3420567 C 6.0989529,5.6239073 5.2619887,6.0466597 4.3908644,6.6103151 L 4.3908644,2.5877583 C 5.4242572,2.2290778 6.3679772,1.9643238 7.222027,1.7934955 C 8.0760675,1.6227057 8.9002211,1.5373012 9.6944902,1.5372817 C 11.778353,1.5373012 13.366877,1.9643238 14.460067,2.8183508 C 15.553233,3.6638737 16.099822,4.9022392 16.099835,6.5334509 C 16.099822,7.3704297 15.933283,8.1219894 15.600218,8.7881324 C 15.267128,9.4457594 14.699188,10.154617 13.896397,10.914707 L 13.076512,11.644916 C 12.495751,12.174434 11.723583,12.601456 11.544243,12.925985 C 11.364884,13.24199 11.275209,13.592149 11.275218,13.976462 L 11.275218,14.919035 M 7.3040896,16.952301 L 11.275218,16.952301 L 11.275218,21.009531 L 7.3040896,21.009531 L 7.3040896,16.952301" + id="text4916" + sodipodi:nodetypes="cccsccsssssccsssssccsccccccc" /> + <path + style="font-size:26.23629379px;font-style:normal;font-weight:normal;fill:none;fill-opacity:1;stroke:#eeeeec;stroke-width:1.00000024px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;opacity:0.3" + d="M 10.531174,13.500001 L 8.5164063,13.500001 C 8.5164063,12.945747 8.7402784,12.078404 9.502579,11.143944 C 10.535614,9.6270452 12.892911,8.6362695 12.800574,6.4913892 C 12.708237,4.3018572 10.841095,3.7491649 9.4251268,3.7085782 C 8.0538104,3.6679915 6.7663299,4.0790254 5.5,4.8038685 L 5.5,3.3107849 C 6.3825651,3.0144106 7.1885459,2.7956469 7.9179435,2.6544931 C 8.6473335,2.5133711 9.3511984,2.4428023 10.029541,2.4427861 C 13.078781,2.3815955 15.397539,3.3494535 15.500001,6.5710727 C 15.213972,9.3832031 12.116268,10.497789 10.531174,12.721162 L 10.531174,13.500001" + id="path4925" + sodipodi:nodetypes="ccczzccscccc" /> + <rect + style="opacity:0.3;fill:none;fill-opacity:1;stroke:#eeeeec;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5896" + width="1.9715405" + height="1.9651624" + x="8.5284595" + y="17.534838" /> + </g> +</svg> diff --git a/data/icons/hicolor_status_16x16_im-message.png b/data/icons/hicolor_status_16x16_im-message.png Binary files differnew file mode 100644 index 000000000..be0e2e157 --- /dev/null +++ b/data/icons/hicolor_status_16x16_im-message.png diff --git a/data/icons/hicolor_status_16x16_user-typing.png b/data/icons/hicolor_status_16x16_user-typing.png Binary files differnew file mode 100644 index 000000000..5c272a339 --- /dev/null +++ b/data/icons/hicolor_status_16x16_user-typing.png |