gnome-mud r684 - in trunk: . data/icons data/icons/16x16 data/icons/22x22 data/icons/24x24 data/icons/32x32 data/icons/scalable src
- From: lharris svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-mud r684 - in trunk: . data/icons data/icons/16x16 data/icons/22x22 data/icons/24x24 data/icons/32x32 data/icons/scalable src
- Date: Sat, 19 Jul 2008 01:44:01 +0000 (UTC)
Author: lharris
Date: Sat Jul 19 01:44:01 2008
New Revision: 684
URL: http://svn.gnome.org/viewvc/gnome-mud?rev=684&view=rev
Log:
Update to use GtkIcon properly.
Added:
trunk/data/icons/hicolor_apps_16x16_gnome-mud.png (contents, props changed)
trunk/data/icons/hicolor_apps_16x16_gnome-mud.svg
trunk/data/icons/hicolor_apps_22x22_gnome-mud.png (contents, props changed)
trunk/data/icons/hicolor_apps_22x22_gnome-mud.svg
trunk/data/icons/hicolor_apps_24x24_gnome-mud.png (contents, props changed)
trunk/data/icons/hicolor_apps_32x32_gnome-mud.png (contents, props changed)
trunk/data/icons/hicolor_apps_32x32_gnome-mud.svg
trunk/data/icons/hicolor_apps_scalable_gnome-mud.svg
trunk/src/gnome-mud-icons.h
Removed:
trunk/data/icons/16x16/
trunk/data/icons/22x22/
trunk/data/icons/24x24/
trunk/data/icons/32x32/
trunk/data/icons/scalable/
Modified:
trunk/ChangeLog
trunk/configure.ac
trunk/data/icons/Makefile.am
trunk/src/Makefile.am
trunk/src/gnome-mud.c
trunk/src/mud-tray.c
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Sat Jul 19 01:44:01 2008
@@ -71,11 +71,9 @@
dnl Checks for header files.
AC_HEADER_STDC
-AC_HEADER_DIRENT
AC_HEADER_TIME
-AC_CHECK_HEADERS(fcntl.h unistd.h malloc.h termios.h termio.h limits.h getopt.h regex.h)
-AC_CHECK_HEADERS(fcntl.h strings.h unistd.h)
-AC_CHECK_HEADERS(sys/time.h)
+AC_HEADER_DIRENT
+AC_CHECK_HEADERS(strings.h)
AC_DEFINE(HAVE_LIBSM, 1, [Define this to have session management.])
@@ -138,26 +136,12 @@
AC_C_CONST
AC_C_INLINE
-dnl Checks for library functions.
-AC_CHECK_FUNC(bzero)
-AC_CHECK_FUNCS(getaddrinfo getnameinfo mkdir socket strdup strerror strstr)
-
AC_CONFIG_FILES([
Makefile
gnome-mud.lsm
gnome-mud.spec
data/Makefile
data/icons/Makefile
- data/icons/16x16/Makefile
- data/icons/16x16/apps/Makefile
- data/icons/22x22/Makefile
- data/icons/22x22/apps/Makefile
- data/icons/24x24/Makefile
- data/icons/24x24/apps/Makefile
- data/icons/32x32/Makefile
- data/icons/32x32/apps/Makefile
- data/icons/scalable/Makefile
- data/icons/scalable/apps/Makefile
doc/Makefile
src/Makefile
plugins/Makefile
Modified: trunk/data/icons/Makefile.am
==============================================================================
--- trunk/data/icons/Makefile.am (original)
+++ trunk/data/icons/Makefile.am Sat Jul 19 01:44:01 2008
@@ -1 +1,79 @@
-SUBDIRS = 16x16 22x22 24x24 32x32 scalable
+NULL =
+
+public_icons_themes = \
+ hicolor \
+ $(NULL)
+
+public_icons = \
+ hicolor_apps_16x16_gnome-mud.png \
+ hicolor_apps_22x22_gnome-mud.png \
+ hicolor_apps_24x24_gnome-mud.png \
+ hicolor_apps_32x32_gnome-mud.png \
+ hicolor_apps_scalable_gnome-mud.svg \
+ $(NULL)
+
+noinst_Data = \
+ hicolor_apps_16x16_gnome-mud.svg \
+ hicolor_apps_22x22_gnome-mud.svg \
+ hicolor_apps_32x32_gnome-mud.svg \
+ $(NULL)
+
+EXTRA_DIST = \
+ $(public_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
Added: trunk/data/icons/hicolor_apps_16x16_gnome-mud.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/hicolor_apps_16x16_gnome-mud.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/hicolor_apps_16x16_gnome-mud.svg Sat Jul 19 01:44:01 2008
@@ -0,0 +1,555 @@
+<?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="svg5490"
+ sodipodi:version="0.32"
+ inkscape:version="0.44"
+ sodipodi:docbase="/home/andreas/project/application icons/16x16"
+ sodipodi:docname="gnome-mud.svg"
+ inkscape:export-filename="/home/andreas/project/application icons/16x16/gnome-mud.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ version="1.0">
+ <defs
+ id="defs5492">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5546">
+ <stop
+ style="stop-color:#8bb0d8;stop-opacity:1"
+ offset="0"
+ id="stop5548" />
+ <stop
+ style="stop-color:#578dc6;stop-opacity:1"
+ offset="1"
+ id="stop5550" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7039">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop7041" />
+ <stop
+ style="stop-color:#d9dad6;stop-opacity:1"
+ offset="1"
+ id="stop7043" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7005">
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0"
+ id="stop7007" />
+ <stop
+ style="stop-color:black;stop-opacity:0;"
+ offset="1"
+ id="stop7009" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6957">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop6959" />
+ <stop
+ style="stop-color:#555753;stop-opacity:0;"
+ offset="1"
+ id="stop6961" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6936">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1;"
+ offset="0"
+ id="stop6938" />
+ <stop
+ style="stop-color:#dedede;stop-opacity:1"
+ offset="1"
+ id="stop6940" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6864">
+ <stop
+ style="stop-color:#777974;stop-opacity:1"
+ offset="0"
+ id="stop6866" />
+ <stop
+ style="stop-color:#394043;stop-opacity:1"
+ offset="1"
+ id="stop6868" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient6870"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient6934"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6936"
+ id="radialGradient6942"
+ cx="21.771311"
+ cy="27.306726"
+ fx="21.771311"
+ fy="27.306726"
+ r="17.000008"
+ gradientTransform="matrix(1.939344,5.199315e-3,-3.154068e-3,1.176467,-12.17228,-4.302811)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6957"
+ id="linearGradient6963"
+ x1="17.463615"
+ y1="19.713173"
+ x2="28.370897"
+ y2="28.772978"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient6999"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7005"
+ id="radialGradient7011"
+ cx="25.073267"
+ cy="43.120647"
+ fx="25.073267"
+ fy="43.120647"
+ r="15.909903"
+ gradientTransform="matrix(0.868778,-8.904868e-3,1.659211e-3,0.214718,3.218617,33.53771)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7045"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7063"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7065"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7083"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7085"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7005"
+ id="radialGradient7154"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.868778,-8.904868e-3,1.659211e-3,0.214718,3.218617,33.53771)"
+ cx="25.073267"
+ cy="43.120647"
+ fx="25.073267"
+ fy="43.120647"
+ r="15.909903" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6936"
+ id="radialGradient7156"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.542496,4.067089e-3,-2.50865e-3,0.920274,-13.6896,-4.419684)"
+ cx="21.771311"
+ cy="27.306726"
+ fx="21.771311"
+ fy="27.306726"
+ r="17.000008" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6957"
+ id="linearGradient7158"
+ gradientUnits="userSpaceOnUse"
+ x1="17.463615"
+ y1="19.713173"
+ x2="28.370897"
+ y2="28.772978"
+ gradientTransform="matrix(0.871633,0,0,0.82859,4.327199,3.935059)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7176"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7178"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553"
+ gradientTransform="matrix(1.007873,0,0,1,3.542657e-2,0)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7180"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7182"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7210"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7212"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.007873,0,0,1,3.542657e-2,0)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7242"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625"
+ gradientTransform="matrix(1.047522,0,0,1.126109,1.489703,-0.331876)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7244"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.055769,0,0,1,1.526805,3.010977e-7)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7262"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7264"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.007873,0,0,1,3.542657e-2,0)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7290"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-12.57777,84.06832)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7292"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.866025,0.5,-79.36303,31.33958)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7294"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.055769,0,0,0.959131,1.526805,0.144601)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7306"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-11.95197,83.83982)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,31.8396)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7317"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-11.95197,83.83982)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7319"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,31.8396)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7321"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,1.489703,-0.331876)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7327"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,36.02969)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7330"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-8.323244,85.93484)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7339"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-8.323244,85.93484)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7341"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,36.02969)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7353"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.503936,-1.017408e-7,-9.242816e-8,0.45781,-34.76771,-2.628703)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7356"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.5,0,0,0.537511,34.75,-2.856126)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7358"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-8.323244,85.93484)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7360"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,36.02969)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5546"
+ id="radialGradient5552"
+ cx="11.518167"
+ cy="13.010265"
+ fx="11.518167"
+ fy="13.010265"
+ r="8.1352555"
+ gradientTransform="matrix(1.34375,-3.12499e-2,2.652586e-2,1.140616,-4.30448,-1.971624)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="16"
+ inkscape:cx="13.887467"
+ inkscape:cy="6.6224923"
+ inkscape:current-layer="g7143"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:window-width="1674"
+ inkscape:window-height="970"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ width="16px"
+ height="16px" />
+ <metadata
+ id="metadata5495">
+ <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"
+ style="opacity:1;display:inline">
+ <g
+ id="g7143"
+ transform="matrix(0.491687,0,0,0.491687,0.586667,-0.712593)">
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path5512"
+ d="M 14.987931,32.973393 C 14.987931,32.973393 7.9261398,28.864679 4.5027753,21.480308 C 1.0794107,14.095934 1.8240392,4.379673 1.8240392,4.379673 C 1.8240392,4.379673 8.2987756,2.4661901 14.860151,2.4661901 C 21.421521,2.4661901 28.339183,4.4310352 28.339183,4.4310352 C 28.339183,4.4310352 29.010187,13.774026 25.872177,21.158399 C 22.734167,28.542771 14.987931,32.973393 14.987931,32.973393 z "
+ style="fill:url(#radialGradient7156);fill-opacity:1;fill-rule:evenodd;stroke:#474946;stroke-width:2.03381777px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path6721"
+ d="M 14.805876,30.539963 C 14.805876,30.539963 9.2087448,27.141472 6.3066876,20.578197 C 3.4046272,14.014918 3.7728665,5.945263 3.7728665,5.945263 C 3.7728665,5.945263 9.3720515,4.4541958 14.934267,4.4541958 C 20.496485,4.4541958 26.246438,6.0716196 26.246438,6.0716196 C 26.246438,6.0716196 26.521202,14.044823 23.861044,20.608102 C 21.200887,27.171381 14.805876,30.539963 14.805876,30.539963 z "
+ style="opacity:0.34239131;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:2.03381658px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path6904"
+ d="M 15.026991,24.838156 C 15.026991,24.838156 11.574131,22.496604 9.7172712,18.495562 C 7.8604116,14.494518 7.9599261,8.8339826 7.9599261,8.8339826 C 7.9599261,8.8339826 11.398744,8.3085667 14.957682,8.3085667 C 18.516621,8.3085667 22.195684,8.9087289 22.195684,8.9087289 C 22.195684,8.9087289 22.171374,14.435444 20.469292,18.436487 C 18.767211,22.43753 15.026991,24.838156 15.026991,24.838156 z "
+ style="opacity:0.97282607;fill:url(#radialGradient5552);fill-opacity:1.0;fill-rule:evenodd;stroke:#474946;stroke-width:2.03382039px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
Added: trunk/data/icons/hicolor_apps_22x22_gnome-mud.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/hicolor_apps_22x22_gnome-mud.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/hicolor_apps_22x22_gnome-mud.svg Sat Jul 19 01:44:01 2008
@@ -0,0 +1,610 @@
+<?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="svg5490"
+ sodipodi:version="0.32"
+ inkscape:version="0.44"
+ sodipodi:docbase="/home/andreas/project/application icons/22x22"
+ sodipodi:docname="gnome-mud.svg"
+ inkscape:export-filename="/home/andreas/project/application icons/22x22/gnome-mud.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ version="1.0">
+ <defs
+ id="defs5492">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5562">
+ <stop
+ style="stop-color:#87add6;stop-opacity:1"
+ offset="0"
+ id="stop5564" />
+ <stop
+ style="stop-color:#6697cb;stop-opacity:1"
+ offset="1"
+ id="stop5566" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7039">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop7041" />
+ <stop
+ style="stop-color:#d9dad6;stop-opacity:1"
+ offset="1"
+ id="stop7043" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7005">
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0"
+ id="stop7007" />
+ <stop
+ style="stop-color:black;stop-opacity:0;"
+ offset="1"
+ id="stop7009" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6957">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop6959" />
+ <stop
+ style="stop-color:#555753;stop-opacity:0;"
+ offset="1"
+ id="stop6961" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6936">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1;"
+ offset="0"
+ id="stop6938" />
+ <stop
+ style="stop-color:#dedede;stop-opacity:1"
+ offset="1"
+ id="stop6940" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6864">
+ <stop
+ style="stop-color:#777974;stop-opacity:1"
+ offset="0"
+ id="stop6866" />
+ <stop
+ style="stop-color:#394043;stop-opacity:1"
+ offset="1"
+ id="stop6868" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient6870"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient6934"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6936"
+ id="radialGradient6942"
+ cx="21.771311"
+ cy="27.306726"
+ fx="21.771311"
+ fy="27.306726"
+ r="17.000008"
+ gradientTransform="matrix(1.939344,5.199315e-3,-3.154068e-3,1.176467,-12.17228,-4.302811)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6957"
+ id="linearGradient6963"
+ x1="17.463615"
+ y1="19.713173"
+ x2="28.370897"
+ y2="28.772978"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient6999"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7005"
+ id="radialGradient7011"
+ cx="25.073267"
+ cy="43.120647"
+ fx="25.073267"
+ fy="43.120647"
+ r="15.909903"
+ gradientTransform="matrix(0.868778,-8.904868e-3,1.659211e-3,0.214718,3.218617,33.53771)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7045"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7063"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7065"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7083"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7085"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7005"
+ id="radialGradient7154"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.868778,-8.904868e-3,1.659211e-3,0.214718,3.218617,33.53771)"
+ cx="25.073267"
+ cy="43.120647"
+ fx="25.073267"
+ fy="43.120647"
+ r="15.909903" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6936"
+ id="radialGradient7156"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.786093,5.151648e-3,-2.904827e-3,1.165681,-8.009613,-4.222106)"
+ cx="21.771311"
+ cy="27.306726"
+ fx="21.771311"
+ fy="27.306726"
+ r="17.000008" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6957"
+ id="linearGradient7158"
+ gradientUnits="userSpaceOnUse"
+ x1="17.463615"
+ y1="19.713173"
+ x2="28.370897"
+ y2="28.772978"
+ gradientTransform="matrix(0.871633,0,0,0.82859,4.327199,3.935059)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7176"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7178"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553"
+ gradientTransform="matrix(1.007873,0,0,1,3.542657e-2,0)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7180"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7182"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7210"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7212"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.007873,0,0,1,3.542657e-2,0)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7242"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625"
+ gradientTransform="matrix(1.047522,0,0,1.126109,1.489703,-0.331876)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7244"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.055769,0,0,1,1.526805,3.010977e-7)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7262"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7264"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.007873,0,0,1,3.542657e-2,0)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7290"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-12.57777,84.06832)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7292"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.866025,0.5,-79.36303,31.33958)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7294"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.055769,0,0,0.959131,1.526805,0.144601)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7306"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-11.95197,83.83982)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,31.8396)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7317"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-11.95197,83.83982)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7319"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,31.8396)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7321"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,1.489703,-0.331876)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7327"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,36.02969)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7330"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-8.323244,85.93484)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7339"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-8.323244,85.93484)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7341"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,36.02969)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7353"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.503936,-1.017408e-7,-9.242816e-8,0.45781,-34.76771,-2.628703)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7356"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.5,0,0,0.537511,34.75,-2.856126)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7358"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.047522,0,0,1.126109,-8.323244,85.93484)"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7360"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.527884,0.914322,-0.830631,0.479565,-78.97749,36.02969)"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5562"
+ id="radialGradient5568"
+ cx="21.610109"
+ cy="18.544796"
+ fx="21.610109"
+ fy="18.544796"
+ r="10.169068"
+ gradientTransform="matrix(1.59983,-2.651654e-2,2.1544e-2,1.299821,-13.51476,-6.280947)"
+ gradientUnits="userSpaceOnUse" />
+ </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="15.263932"
+ inkscape:cy="10.577428"
+ inkscape:current-layer="g7143"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:window-width="1674"
+ inkscape:window-height="970"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ width="16px"
+ height="22px" />
+ <metadata
+ id="metadata5495">
+ <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"
+ style="opacity:1;display:inline">
+ <g
+ id="g7143"
+ transform="matrix(0.491687,0,0,0.491687,0.586667,-0.712593)">
+ <path
+ transform="matrix(0.894833,0,0,0.932837,2.942251,3.560765)"
+ d="M 40.835417 42.431534 A 15.909903 3.2703688 0 1 1 9.0156116,42.431534 A 15.909903 3.2703688 0 1 1 40.835417 42.431534 z"
+ sodipodi:ry="3.2703688"
+ sodipodi:rx="15.909903"
+ sodipodi:cy="42.431534"
+ sodipodi:cx="24.925514"
+ id="path7003"
+ style="opacity:0.5;fill:url(#radialGradient7154);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path5512"
+ d="M 25.196788,43.142474 C 25.196788,43.142474 17.01977,37.938101 13.055774,28.584561 C 9.0917777,19.231018 10.110117,5.7283099 10.110117,5.7283099 C 10.110117,5.7283099 17.451254,4.500005 25.048829,4.500005 C 32.646398,4.500005 40.500408,6.0210718 40.500408,6.0210718 C 40.500408,6.0210718 41.433496,18.823268 37.799919,28.17681 C 34.166341,37.530351 25.196788,43.142474 25.196788,43.142474 z "
+ style="fill:url(#radialGradient7156);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:2.03381801px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path6721"
+ d="M 25.20112,40.595685 C 25.20112,40.595685 18.04979,35.714013 14.617488,27.289069 C 11.185182,18.864121 12.152231,7.6401809 12.152231,7.6401809 C 12.152231,7.6401809 18.508699,6.533819 25.087206,6.533819 C 31.665716,6.533819 38.466263,7.9177564 38.466263,7.9177564 C 38.466263,7.9177564 38.897536,19.075575 35.751332,27.500523 C 32.605128,35.925472 25.20112,40.595685 25.20112,40.595685 z "
+ style="opacity:0.6;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:2.03381681px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path6904"
+ d="M 25.181679,35.007202 C 25.181679,35.007202 20.742288,31.549928 18.354897,25.642433 C 15.967506,19.734938 16.095453,11.377221 16.095453,11.377221 C 16.095453,11.377221 20.51679,10.601451 25.092569,10.601451 C 29.668346,10.601451 34.398569,11.487583 34.398569,11.487583 C 34.398569,11.487583 34.367313,19.647716 32.178923,25.555211 C 29.990533,31.462705 25.181679,35.007202 25.181679,35.007202 z "
+ style="opacity:0.97282607;fill:url(#radialGradient5568);fill-opacity:1.0;fill-rule:evenodd;stroke:#555753;stroke-width:2.03381991px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path7001"
+ d="M 13.816534,29.225058 L 29.860728,39.095971 L 31.199524,37.40533 L 14.037504,27.40533 L 13.816534,29.225058 z "
+ style="opacity:0.11956524;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <g
+ style="opacity:1"
+ id="g7332"
+ transform="matrix(-0.472085,-1.007082e-7,-9.531027e-8,0.498822,-33.42468,-3.664352)">
+ <rect
+ ry="3.1384194"
+ rx="3.0531714"
+ y="74.11071"
+ x="-21.417263"
+ height="14.78766"
+ width="8.3801718"
+ id="rect7296"
+ style="fill:url(#linearGradient7358);fill-opacity:1;stroke:#2e3436;stroke-width:2.06070757;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ transform="matrix(0.5,0.866025,-0.866025,0.5,0,0)" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ id="path7298"
+ d="M -88.481949,26.354581 L -84.291866,33.612016 L -109.90178,48.397913 L -116.35652,47.248174 L -114.09186,41.140478 L -88.481949,26.354581 z "
+ style="fill:url(#linearGradient7360);fill-opacity:1;stroke:#555753;stroke-width:2.06071091;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ id="path7300"
+ d="M -88.32155,28.681125 L -86.226511,32.309838 L -110.07944,46.08134 L -113.52393,45.625935 L -112.17448,42.452627 L -88.32155,28.681125 z "
+ style="opacity:0.5;fill:none;fill-opacity:1;stroke:white;stroke-width:2.06070876;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
+ <rect
+ ry="1.2922902"
+ rx="1.2571878"
+ y="76.20575"
+ x="-19.322212"
+ height="11.560966"
+ width="4.1900821"
+ id="rect7302"
+ style="opacity:0.3;fill:none;fill-opacity:1;stroke:white;stroke-width:2.06070685;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ transform="matrix(0.5,0.866025,-0.866025,0.5,0,0)" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path7304"
+ d="M -87.042114,18.41057 L -76.728048,36.275048 L -82.839479,42.450075 L -84.737384,34.944415 L -89.894418,26.012178 L -95.409747,20.677744 L -87.042114,18.41057 z "
+ style="fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:2.06071043;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;display:inline" />
+ </g>
+ </g>
+</svg>
Added: trunk/data/icons/hicolor_apps_24x24_gnome-mud.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/hicolor_apps_32x32_gnome-mud.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/hicolor_apps_32x32_gnome-mud.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/hicolor_apps_32x32_gnome-mud.svg Sat Jul 19 01:44:01 2008
@@ -0,0 +1,382 @@
+<?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="svg5490"
+ sodipodi:version="0.32"
+ inkscape:version="0.44"
+ sodipodi:docbase="/home/andreas/project/application icons/32x32"
+ sodipodi:docname="gnome-mud.svg"
+ inkscape:export-filename="/home/andreas/project/application icons/32x32/gnome-mud.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ version="1.0">
+ <defs
+ id="defs5492">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5531">
+ <stop
+ style="stop-color:#96b8dc;stop-opacity:1"
+ offset="0"
+ id="stop5533" />
+ <stop
+ style="stop-color:#5b90c8;stop-opacity:1"
+ offset="1"
+ id="stop5535" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7039">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop7041" />
+ <stop
+ style="stop-color:#d9dad6;stop-opacity:1"
+ offset="1"
+ id="stop7043" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7005">
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0"
+ id="stop7007" />
+ <stop
+ style="stop-color:black;stop-opacity:0;"
+ offset="1"
+ id="stop7009" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6957">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop6959" />
+ <stop
+ style="stop-color:#555753;stop-opacity:0;"
+ offset="1"
+ id="stop6961" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6936">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1;"
+ offset="0"
+ id="stop6938" />
+ <stop
+ style="stop-color:#dedede;stop-opacity:1"
+ offset="1"
+ id="stop6940" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6864">
+ <stop
+ style="stop-color:#777974;stop-opacity:1"
+ offset="0"
+ id="stop6866" />
+ <stop
+ style="stop-color:#394043;stop-opacity:1"
+ offset="1"
+ id="stop6868" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient6934"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6936"
+ id="radialGradient6942"
+ cx="21.771311"
+ cy="27.306726"
+ fx="21.771311"
+ fy="27.306726"
+ r="17.000008"
+ gradientTransform="matrix(1.939344,5.199315e-3,-3.154068e-3,1.176467,-12.17228,-4.302811)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6957"
+ id="linearGradient6963"
+ x1="17.463615"
+ y1="19.713173"
+ x2="28.370897"
+ y2="28.772978"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7005"
+ id="radialGradient7011"
+ cx="25.073267"
+ cy="43.120647"
+ fx="25.073267"
+ fy="43.120647"
+ r="15.909903"
+ gradientTransform="matrix(0.868778,-8.904868e-3,1.659211e-3,0.214718,3.218617,33.53771)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7063"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7065"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7083"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7085"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7005"
+ id="radialGradient7154"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.868778,-8.904868e-3,1.659211e-3,0.214718,3.218617,33.53771)"
+ cx="25.073267"
+ cy="43.120647"
+ fx="25.073267"
+ fy="43.120647"
+ r="15.909903" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6957"
+ id="linearGradient5545"
+ gradientUnits="userSpaceOnUse"
+ x1="17.463615"
+ y1="19.713173"
+ x2="28.370897"
+ y2="28.772978"
+ gradientTransform="matrix(0.619047,0,0,0.672316,3.142854,0.288141)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6936"
+ id="radialGradient5554"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.351999,3.599523e-3,-2.198836e-3,0.814477,-7.214388,-3.594251)"
+ cx="21.771311"
+ cy="27.306726"
+ fx="21.771311"
+ fy="27.306726"
+ r="17.000008" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient5573"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625"
+ gradientTransform="matrix(0.929622,0,0,1.019412,4.464897e-2,0.203824)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient5575"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553"
+ gradientTransform="matrix(0.936942,1.241019e-8,1.24102e-8,1,7.758897e-2,-1.526972e-8)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5531"
+ id="radialGradient5537"
+ cx="14.9375"
+ cy="12.265839"
+ fx="14.9375"
+ fy="12.265839"
+ r="7.9999951"
+ gradientTransform="matrix(1.687501,1.562503e-2,-1.129074e-2,1.219399,-10.13106,-3.690347)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="16"
+ inkscape:cx="18.187024"
+ inkscape:cy="12.132416"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:window-width="1674"
+ inkscape:window-height="970"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ width="32px"
+ height="32px" />
+ <metadata
+ id="metadata5495">
+ <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"
+ style="opacity:1;display:inline">
+ <path
+ sodipodi:type="arc"
+ style="opacity:0.5;fill:url(#radialGradient7154);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path7003"
+ sodipodi:cx="24.925514"
+ sodipodi:cy="42.431534"
+ sodipodi:rx="15.909903"
+ sodipodi:ry="3.2703688"
+ d="M 40.835417 42.431534 A 15.909903 3.2703688 0 1 1 9.0156116,42.431534 A 15.909903 3.2703688 0 1 1 40.835417 42.431534 z"
+ transform="matrix(0.628539,0,0,0.611552,2.333338,3.05092)" />
+ <path
+ style="fill:url(#radialGradient5554);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 17.921504,29.499988 C 17.921504,29.499988 12.341866,25.67522 9.3412826,19.139782 C 6.3406984,12.604341 6.5015082,3.3582325 6.5015082,3.3582325 C 6.5015082,3.3582325 12.058451,2.5000001 17.809504,2.5000001 C 23.560555,2.5000001 29.505721,3.5627889 29.505721,3.5627889 C 29.505721,3.5627889 29.466437,12.507848 26.715966,19.043287 C 23.965496,25.578726 17.921504,29.499988 17.921504,29.499988 z "
+ id="path5512"
+ sodipodi:nodetypes="czczczc" />
+ <path
+ style="opacity:0.34239131;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999952px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 17.925047,28.062499 C 17.925047,28.062499 12.956321,24.650507 10.21716,18.651531 C 7.4779987,12.652552 7.5000065,4.2312917 7.5000065,4.2312917 C 7.5000065,4.2312917 12.572804,3.4435073 17.822801,3.4435073 C 23.072799,3.4435073 28.499993,4.4289392 28.499993,4.4289392 C 28.499993,4.4289392 28.33934,12.629861 25.828503,18.628839 C 23.317665,24.627818 17.925047,28.062499 17.925047,28.062499 z "
+ id="path6721"
+ sodipodi:nodetypes="czczczc" />
+ <path
+ style="opacity:0.97282607;fill:url(#radialGradient5537);fill-opacity:1.0;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000048px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 17.946943,25.011209 C 17.946943,25.011209 14.308958,22.388945 12.352543,17.908244 C 10.396127,13.427542 10.500977,7.0884039 10.500977,7.0884039 C 10.500977,7.0884039 14.124168,6.4999993 17.873919,6.4999993 C 21.62367,6.4999993 25.499984,7.1721104 25.499984,7.1721104 C 25.499984,7.1721104 25.474371,13.361386 23.681033,17.842088 C 21.887695,22.32279 17.946943,25.011209 17.946943,25.011209 z "
+ id="path6904"
+ sodipodi:nodetypes="czczczc" />
+ <path
+ sodipodi:type="arc"
+ style="opacity:0.97282607;fill:#888a85;fill-opacity:1;stroke:none;stroke-width:1.67121816;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path6944"
+ sodipodi:cx="23.268232"
+ sodipodi:cy="9.0649328"
+ sodipodi:rx="2.1876116"
+ sodipodi:ry="2.8726213"
+ d="M 25.455844 9.0649328 A 2.1876116 2.8726213 0 1 1 21.080621,9.0649328 A 2.1876116 2.8726213 0 1 1 25.455844 9.0649328 z"
+ transform="matrix(0.457122,0,0,0.348114,7.363584,0.84437)" />
+ <path
+ sodipodi:type="arc"
+ style="opacity:0.97282607;fill:#888a85;fill-opacity:1;stroke:none;stroke-width:1.67121816;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path6951"
+ sodipodi:cx="23.268232"
+ sodipodi:cy="9.0649328"
+ sodipodi:rx="2.1876116"
+ sodipodi:ry="2.8726213"
+ d="M 25.455844 9.0649328 A 2.1876116 2.8726213 0 1 1 21.080621,9.0649328 A 2.1876116 2.8726213 0 1 1 25.455844 9.0649328 z"
+ transform="matrix(0.45712,0,0,0.348114,-1.636373,1.84437)" />
+ <path
+ sodipodi:type="arc"
+ style="opacity:0.97282607;fill:#888a85;fill-opacity:1;stroke:none;stroke-width:1.67121816;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ id="path6953"
+ sodipodi:cx="23.268232"
+ sodipodi:cy="9.0649328"
+ sodipodi:rx="2.1876116"
+ sodipodi:ry="2.8726213"
+ d="M 25.455844 9.0649328 A 2.1876116 2.8726213 0 1 1 21.080621,9.0649328 A 2.1876116 2.8726213 0 1 1 25.455844 9.0649328 z"
+ transform="matrix(0.45712,0,0,0.348114,16.36362,1.844369)" />
+ <path
+ style="opacity:0.11956524;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 9.4696699,19.407821 L 21.856647,26.972272 L 22.923223,25.65885 L 9.7491144,18.051807 L 9.4696699,19.407821 z "
+ id="path7001"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="opacity:0.11956524;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5545);stroke-width:1.00000083px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+ d="M 17.954024,25.499999 C 17.954024,25.499999 14.801101,22.928544 13.10554,18.534661 C 11.409979,14.140777 11.500848,7.9244659 11.500848,7.9244659 C 11.500848,7.9244659 14.640949,7.3474621 17.890737,7.3474621 C 21.140524,7.3474621 24.5,8.0065503 24.5,8.0065503 C 24.5,8.0065503 24.477801,14.075903 22.923574,18.469786 C 21.369346,22.86367 17.954024,25.499999 17.954024,25.499999 z "
+ id="path6955"
+ sodipodi:nodetypes="czczczc" />
+ <g
+ style="opacity:1;display:inline"
+ id="g5557"
+ transform="matrix(-0.336158,0.582243,0.582243,0.336158,5.673633,18.35595)">
+ <rect
+ ry="2.2349627"
+ rx="2.2349598"
+ y="-10.500001"
+ x="-11.575626"
+ height="13.386565"
+ width="7.4369779"
+ id="rect5559"
+ style="opacity:1;fill:url(#linearGradient5573);fill-opacity:1;stroke:#2e3436;stroke-width:1.48739374;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ id="path5561"
+ d="M -11.575625,3.5381366 L -4.1386479,3.5381367 L -4.1386475,34.369998 L -7.8864153,39.598795 L -11.575624,34.369998 L -11.575625,3.5381366 z "
+ style="opacity:1;fill:url(#linearGradient5575);fill-opacity:1;stroke:#555753;stroke-width:1.48739481;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ id="path5563"
+ d="M -10.088233,4.3739566 L -5.6260449,4.3739569 L -5.6260437,33.451914 L -7.8801383,37.096656 L -10.088232,33.451914 L -10.088233,4.3739566 z "
+ style="opacity:0.5;fill:none;fill-opacity:1;stroke:white;stroke-width:1.48739421;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+ <rect
+ ry="0.92027891"
+ rx="0.92027825"
+ y="-9.0126047"
+ x="-10.088231"
+ height="10.512605"
+ width="4.5882325"
+ id="rect5565"
+ style="opacity:0.3;fill:none;fill-opacity:1;stroke:white;stroke-width:1.48739409;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path5567"
+ d="M -17.953546,-1.5756237 L 2.0106164,-1.5756232 L 4.7857292,6.4441525 L -3.0717864,4.3878924 L -12.818937,4.3878921 L -20.500001,6.4441521 L -17.953546,-1.5756237 z "
+ style="fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1.48739433;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path5569"
+ d="M -16.868975,-0.088228644 L 1.0880221,-0.088228555 L 2.5546336,4.1880344 L -2.8311081,2.8952019 L -13.123652,2.8952019 L -18.222419,4.1415533 L -16.868975,-0.088228644 z "
+ style="opacity:0.4;fill:none;fill-opacity:1;stroke:white;stroke-width:1.48739445;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
Added: trunk/data/icons/hicolor_apps_scalable_gnome-mud.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/hicolor_apps_scalable_gnome-mud.svg Sat Jul 19 01:44:01 2008
@@ -0,0 +1,405 @@
+<?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="svg5490"
+ sodipodi:version="0.32"
+ inkscape:version="0.44"
+ sodipodi:docbase="/home/andreas/project/application icons/48x48"
+ sodipodi:docname="gnome-mud.svg"
+ inkscape:export-filename="/home/andreas/project/application icons/48x48/gnome-mud.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ version="1.0">
+ <defs
+ id="defs5492">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6786">
+ <stop
+ style="stop-color:#a9c5e3;stop-opacity:1"
+ offset="0"
+ id="stop6788" />
+ <stop
+ style="stop-color:#6697cb;stop-opacity:1"
+ offset="1"
+ id="stop6790" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7039">
+ <stop
+ style="stop-color:#babdb6;stop-opacity:1;"
+ offset="0"
+ id="stop7041" />
+ <stop
+ style="stop-color:#d9dad6;stop-opacity:1"
+ offset="1"
+ id="stop7043" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7005">
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0"
+ id="stop7007" />
+ <stop
+ style="stop-color:black;stop-opacity:0;"
+ offset="1"
+ id="stop7009" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6957">
+ <stop
+ style="stop-color:#555753;stop-opacity:1;"
+ offset="0"
+ id="stop6959" />
+ <stop
+ style="stop-color:#555753;stop-opacity:0;"
+ offset="1"
+ id="stop6961" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6936">
+ <stop
+ style="stop-color:#888a85;stop-opacity:1;"
+ offset="0"
+ id="stop6938" />
+ <stop
+ style="stop-color:#dedede;stop-opacity:1"
+ offset="1"
+ id="stop6940" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6864">
+ <stop
+ style="stop-color:#777974;stop-opacity:1"
+ offset="0"
+ id="stop6866" />
+ <stop
+ style="stop-color:#394043;stop-opacity:1"
+ offset="1"
+ id="stop6868" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient6870"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient6934"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6936"
+ id="radialGradient6942"
+ cx="21.771311"
+ cy="27.306726"
+ fx="21.771311"
+ fy="27.306726"
+ r="17.000008"
+ gradientTransform="matrix(1.939344,5.199315e-3,-3.154068e-3,1.176467,-12.17228,-4.302811)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6957"
+ id="linearGradient6963"
+ x1="17.463615"
+ y1="19.713173"
+ x2="28.370897"
+ y2="28.772978"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7005"
+ id="radialGradient7011"
+ cx="25.073267"
+ cy="43.120647"
+ fx="25.073267"
+ fy="43.120647"
+ r="15.909903"
+ gradientTransform="matrix(0.868778,-8.904868e-3,1.659211e-3,0.214718,3.218617,33.53771)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7063"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7065"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient7083"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient7085"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7005"
+ id="radialGradient7154"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.868778,-8.904868e-3,1.659211e-3,0.214718,3.218617,33.53771)"
+ cx="25.073267"
+ cy="43.120647"
+ fx="25.073267"
+ fy="43.120647"
+ r="15.909903" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6936"
+ id="radialGradient7156"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.939344,5.199315e-3,-3.154068e-3,1.176467,-12.17228,-4.302811)"
+ cx="21.771311"
+ cy="27.306726"
+ fx="21.771311"
+ fy="27.306726"
+ r="17.000008" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6957"
+ id="linearGradient7158"
+ gradientUnits="userSpaceOnUse"
+ x1="17.463615"
+ y1="19.713173"
+ x2="28.370897"
+ y2="28.772978" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6864"
+ id="linearGradient5581"
+ gradientUnits="userSpaceOnUse"
+ x1="-10.625"
+ y1="-3.0625"
+ x2="-7.375"
+ y2="-3.0625" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7039"
+ id="linearGradient5583"
+ gradientUnits="userSpaceOnUse"
+ x1="-7.8161817"
+ y1="19.838133"
+ x2="-11.638254"
+ y2="20.059553" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6786"
+ id="radialGradient6792"
+ cx="19.438137"
+ cy="16.93018"
+ fx="19.438137"
+ fy="16.93018"
+ r="11.999999"
+ gradientTransform="matrix(1.260417,2.083328e-2,-2.065829e-2,1.249829,-4.400381,-6.377293)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="11.313708"
+ inkscape:cx="46.890933"
+ inkscape:cy="33.328993"
+ inkscape:current-layer="g7143"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:window-width="1674"
+ inkscape:window-height="970"
+ inkscape:window-x="0"
+ inkscape:window-y="25" />
+ <metadata
+ id="metadata5495">
+ <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"
+ style="opacity:1;display:inline">
+ <g
+ id="g7143"
+ transform="translate(2.999981,0)">
+ <path
+ transform="matrix(0.879955,0,0,0.764443,2.066672,10.06352)"
+ d="M 40.835417 42.431534 A 15.909903 3.2703688 0 1 1 9.0156116,42.431534 A 15.909903 3.2703688 0 1 1 40.835417 42.431534 z"
+ sodipodi:ry="3.2703688"
+ sodipodi:rx="15.909903"
+ sodipodi:cy="42.431534"
+ sodipodi:cx="24.925514"
+ id="path7003"
+ style="opacity:0.5;fill:url(#radialGradient7154);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path5512"
+ d="M 23.883309,43.500026 C 23.883309,43.500026 15.879729,37.975355 11.575613,28.535268 C 7.2714953,19.095178 7.5021652,5.7396748 7.5021652,5.7396748 C 7.5021652,5.7396748 15.47319,4.5000046 23.722654,4.5000046 C 31.972114,4.5000046 40.500018,6.0351456 40.500018,6.0351456 C 40.500018,6.0351456 40.443667,18.955798 36.498319,28.395887 C 32.552972,37.835975 23.883309,43.500026 23.883309,43.500026 z "
+ style="fill:url(#radialGradient7156);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000143px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path6721"
+ d="M 23.889342,42.062518 C 23.889342,42.062518 16.55456,36.995252 12.511042,28.085964 C 8.4675195,19.176673 8.5000072,6.6699677 8.5000072,6.6699677 C 8.5000072,6.6699677 15.988419,5.500002 23.73841,5.500002 C 31.488402,5.500002 39.499972,6.9635008 39.499972,6.9635008 C 39.499972,6.9635008 39.262816,19.142974 35.556343,28.052264 C 31.849872,36.961556 23.889342,42.062518 23.889342,42.062518 z "
+ style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.00000036px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path6904"
+ d="M 23.918667,38.499996 C 23.918667,38.499996 18.34042,34.39191 15.340583,27.372364 C 12.340745,20.352816 12.501514,10.421809 12.501514,10.421809 C 12.501514,10.421809 18.057075,9.5000039 23.806697,9.5000039 C 29.556318,9.5000039 35.500004,10.552945 35.500004,10.552945 C 35.500004,10.552945 35.46073,20.249175 32.710943,27.268722 C 29.961157,34.288269 23.918667,38.499996 23.918667,38.499996 z "
+ style="opacity:0.97282607;fill:url(#radialGradient6792);fill-opacity:1.0;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000167px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ transform="matrix(0.457116,0,0,0.348114,13.36371,3.844375)"
+ d="M 25.455844 9.0649328 A 2.1876116 2.8726213 0 1 1 21.080621,9.0649328 A 2.1876116 2.8726213 0 1 1 25.455844 9.0649328 z"
+ sodipodi:ry="2.8726213"
+ sodipodi:rx="2.1876116"
+ sodipodi:cy="9.0649328"
+ sodipodi:cx="23.268232"
+ id="path6944"
+ style="opacity:0.97282607;fill:#888a85;fill-opacity:1;stroke:none;stroke-width:1.67121816;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:type="arc" />
+ <path
+ transform="matrix(0.457116,0,0,0.348114,-0.636274,4.84437)"
+ d="M 25.455844 9.0649328 A 2.1876116 2.8726213 0 1 1 21.080621,9.0649328 A 2.1876116 2.8726213 0 1 1 25.455844 9.0649328 z"
+ sodipodi:ry="2.8726213"
+ sodipodi:rx="2.1876116"
+ sodipodi:cy="9.0649328"
+ sodipodi:cx="23.268232"
+ id="path6951"
+ style="opacity:0.97282607;fill:#888a85;fill-opacity:1;stroke:none;stroke-width:1.67121816;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ sodipodi:type="arc" />
+ <path
+ transform="matrix(0.457116,0,0,0.348114,27.36371,4.84437)"
+ d="M 25.455844 9.0649328 A 2.1876116 2.8726213 0 1 1 21.080621,9.0649328 A 2.1876116 2.8726213 0 1 1 25.455844 9.0649328 z"
+ sodipodi:ry="2.8726213"
+ sodipodi:rx="2.1876116"
+ sodipodi:cy="9.0649328"
+ sodipodi:cx="23.268232"
+ id="path6953"
+ style="opacity:0.97282607;fill:#888a85;fill-opacity:1;stroke:none;stroke-width:1.67121816;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path7001"
+ d="M 13.816534,29.225058 L 29.860728,39.095971 L 31.199524,37.40533 L 14.037504,27.40533 L 13.816534,29.225058 z "
+ style="opacity:0.11956524;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="czczczc"
+ id="path6955"
+ d="M 23.925747,37.500012 C 23.925747,37.500012 18.832561,33.67524 16.093577,27.139797 C 13.354592,20.604352 13.501381,11.358237 13.501381,11.358237 C 13.501381,11.358237 18.573855,10.500004 23.823514,10.500004 C 29.073173,10.500004 34.500021,11.480329 34.500021,11.480329 C 34.500021,11.480329 34.464162,20.507859 31.953485,27.043303 C 29.442808,33.578747 23.925747,37.500012 23.925747,37.500012 z "
+ style="opacity:0.11956524;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7158);stroke-width:1.00000215px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="sword"
+ style="display:inline">
+ <g
+ style="opacity:1;display:inline"
+ id="g5553"
+ transform="matrix(-0.5,0.866025,0.866025,0.5,7.956453,28.66783)">
+ <rect
+ ry="1.5026022"
+ rx="1.5026007"
+ y="-10.500001"
+ x="-12.500001"
+ height="13.131654"
+ width="8.0000019"
+ id="rect5555"
+ style="opacity:1;fill:url(#linearGradient5581);fill-opacity:1;stroke:#2e3436;stroke-width:0.99999946;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ id="path5557"
+ d="M -12.437502,3.5381368 L -4.4999994,3.5381368 L -4.4999994,34.369998 L -8.5000006,39.598795 L -12.437502,34.369998 L -12.437502,3.5381368 z "
+ style="opacity:1;fill:url(#linearGradient5583);fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ id="path5559"
+ d="M -11.500004,4.5625013 L -5.4375001,4.5625013 L -5.4375001,33.831319 L -8.5000019,37.499985 L -11.500004,33.831319 L -11.500004,4.5625013 z "
+ style="opacity:0.5;fill:none;fill-opacity:1;stroke:white;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+ <rect
+ ry="0.6187185"
+ rx="0.6187185"
+ y="-9.6316519"
+ x="-11.500003"
+ height="11.131652"
+ width="6.0000033"
+ id="rect5561"
+ style="opacity:0.3;fill:none;fill-opacity:1;stroke:white;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path5563"
+ d="M -18.380337,-0.50000006 L 1.3119647,-0.50000006 L 3.4999987,6.444154 L -3.6111108,4.5429409 L -13.457261,4.5429409 L -20.499995,6.444154 L -18.380337,-0.50000006 z "
+ style="fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path5565"
+ d="M -17.7663,0.50000002 L 0.55961215,0.50000002 L 1.9375005,4.937501 L -3.5740518,3.513149 L -13.494846,3.513149 L -18.937504,4.937501 L -17.7663,0.50000002 z "
+ style="opacity:0.4;fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+ <rect
+ ry="0"
+ rx="0"
+ y="7"
+ x="-9"
+ height="30"
+ width="1"
+ id="rect5567"
+ style="opacity:0.14673911;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
Modified: trunk/src/Makefile.am
==============================================================================
--- trunk/src/Makefile.am (original)
+++ trunk/src/Makefile.am Sat Jul 19 01:44:01 2008
@@ -20,12 +20,13 @@
gnome_mud_SOURCES = \
gconf-helper.c \
gconf-helper.h \
- gnome-mud.c \
- gnome-mud.h \
+ gnome-mud.c \
+ gnome-mud.h \
+ gnome-mud-icons.h \
modules_api.c \
modules_api.h \
- modules.c \
- modules.h \
+ modules.c \
+ modules.h \
modules-structures.h \
mud-connection-view.c \
mud-connection-view.h \
@@ -41,8 +42,8 @@
mud-preferences-window.h \
mud-profile.c \
mud-profile.h \
- mud-regex.c \
- mud-regex.h \
+ mud-regex.c \
+ mud-regex.h \
mud-telnet.c \
mud-telnet.h \
mud-telnet-handlers.c \
@@ -51,8 +52,8 @@
mud-telnet-msp.h \
mud-telnet-zmp.c \
mud-telnet-zmp.h \
- mud-tray.c \
- mud-tray.h \
+ mud-tray.c \
+ mud-tray.h \
mud-window.c \
mud-window.h \
mud-window-mconnect.h \
@@ -63,5 +64,5 @@
mud-window-mudlist.h \
mud-window-profile.c \
mud-window-profile.h \
- utils.c \
+ utils.c \
utils.h
Added: trunk/src/gnome-mud-icons.h
==============================================================================
--- (empty file)
+++ trunk/src/gnome-mud-icons.h Sat Jul 19 01:44:01 2008
@@ -0,0 +1,28 @@
+/* GNOME-Mud - A simple Mud CLient
+ * Copyright (C) 1998-2006 Robin Ericsson <lobbin localhost nu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef GNOME_MUD_ICONS_H
+#define GNOME_MUD_ICONS_H
+
+G_BEGIN_DECLS
+
+#define GMUD_STOCK_ICON "gnome-mud"
+
+G_END_DECLS
+
+#endif // GNOME_MUD_ICONS_H
Modified: trunk/src/gnome-mud.c
==============================================================================
--- trunk/src/gnome-mud.c (original)
+++ trunk/src/gnome-mud.c Sat Jul 19 01:44:01 2008
@@ -38,6 +38,7 @@
#endif
#include "gnome-mud.h"
+#include "gnome-mud-icons.h"
#include "mud-connection-view.h"
#include "mud-window.h"
#include "mud-profile.h"
@@ -120,18 +121,11 @@
}
gconf_client_add_dir(gconf_client, "/apps/gnome-mud", GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);
-
mud_profile_load_profiles();
- gtk_window_set_icon_from_file(GTK_WINDOW(mud_window_get_window(mud_window_new(gconf_client))),
- PIXMAPSDIR "/gnome-mud.png", &err);
+ gtk_window_set_default_icon_name(GMUD_STOCK_ICON);
-#ifdef USE_PYTHON
- //Py_SetProgramName(argv[0]);
- //Py_Initialize();
- //PySys_SetArgv(argc, argv);
- //python_init();
-#endif
+ mud_window_new(gconf_client);
g_snprintf(buf, 500, "%s/.gnome-mud/plugins/", g_get_home_dir());
if(!g_file_test(buf, G_FILE_TEST_IS_DIR))
@@ -149,14 +143,10 @@
mkdir(buf, 0777 );
gtk_about_dialog_set_url_hook(utils_activate_url, NULL, NULL);
+
gtk_main();
+
gconf_client_suggest_sync(gconf_client, &err);
-#ifdef USE_PYTHON
- //python_end();
- //Py_Finalize();
-#endif
- //gdk_exit (0);
-
return 0;
}
Modified: trunk/src/mud-tray.c
==============================================================================
--- trunk/src/mud-tray.c (original)
+++ trunk/src/mud-tray.c Sat Jul 19 01:44:01 2008
@@ -182,18 +182,18 @@
switch (icon) {
case offline:
- icon_name = GMPIXMAPSDIR "/connection-offline.png";
+ //icon_name = GMPIXMAPSDIR "/connection-offline.png";
break;
case offline_connecting:
case online_connecting:
- icon_name = GMPIXMAPSDIR "/gnome-mud.svg";
+ icon_name = "gnome-mud";
break;
case online:
- icon_name = GMPIXMAPSDIR "/connection-online.png";
+ //icon_name = GMPIXMAPSDIR "/connection-online.png";
break;
}
- gtk_status_icon_set_from_file(tray->priv->icon, icon_name);
+ gtk_status_icon_set_from_icon_name(tray->priv->icon, icon_name);
}
void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]