paperbox r180 - in trunk: . data data/icons data/icons/16x16 data/icons/22x22 data/icons/24x24 data/icons/32x32 data/icons/48x48 data/icons/scalable src
- From: markoa svn gnome org
- To: svn-commits-list gnome org
- Subject: paperbox r180 - in trunk: . data data/icons data/icons/16x16 data/icons/22x22 data/icons/24x24 data/icons/32x32 data/icons/48x48 data/icons/scalable src
- Date: Sat, 23 Aug 2008 22:51:18 +0000 (UTC)
Author: markoa
Date: Sat Aug 23 22:51:18 2008
New Revision: 180
URL: http://svn.gnome.org/viewvc/paperbox?rev=180&view=rev
Log:
Added icon, changed program description
Added:
trunk/data/icons/ (props changed)
trunk/data/icons/16x16/ (props changed)
trunk/data/icons/16x16/Makefile.am
trunk/data/icons/16x16/paperbox.png (contents, props changed)
trunk/data/icons/22x22/ (props changed)
trunk/data/icons/22x22/Makefile.am
trunk/data/icons/22x22/paperbox.png (contents, props changed)
trunk/data/icons/24x24/ (props changed)
trunk/data/icons/24x24/Makefile.am
trunk/data/icons/24x24/paperbox.png (contents, props changed)
trunk/data/icons/32x32/ (props changed)
trunk/data/icons/32x32/Makefile.am
trunk/data/icons/32x32/paperbox.png (contents, props changed)
trunk/data/icons/48x48/ (props changed)
trunk/data/icons/48x48/Makefile.am
trunk/data/icons/48x48/paperbox.png (contents, props changed)
trunk/data/icons/Makefile.am
trunk/data/icons/scalable/ (props changed)
trunk/data/icons/scalable/Makefile.am
trunk/data/icons/scalable/paperbox.svg
Modified:
trunk/ChangeLog
trunk/configure.ac
trunk/data/Makefile.am
trunk/data/paperbox.desktop.in.in
trunk/src/main-window.cc
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Sat Aug 23 22:51:18 2008
@@ -149,12 +149,19 @@
# Generate the files:
AC_CONFIG_FILES([
- Makefile
- data/Makefile
- data/paperbox.desktop.in
- po/Makefile.in
- src/Makefile
- ui/Makefile
+ Makefile
+ data/Makefile
+ data/paperbox.desktop.in
+ data/icons/Makefile
+ data/icons/16x16/Makefile
+ data/icons/22x22/Makefile
+ data/icons/24x24/Makefile
+ data/icons/32x32/Makefile
+ data/icons/48x48/Makefile
+ data/icons/scalable/Makefile
+ po/Makefile.in
+ src/Makefile
+ ui/Makefile
])
AC_OUTPUT
Modified: trunk/data/Makefile.am
==============================================================================
--- trunk/data/Makefile.am (original)
+++ trunk/data/Makefile.am Sat Aug 23 22:51:18 2008
@@ -1,3 +1,4 @@
+SUBDIRS=icons
desktopdir = $(datadir)/applications
desktop_in_files = paperbox.desktop.in
Added: trunk/data/icons/16x16/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/16x16/Makefile.am Sat Aug 23 22:51:18 2008
@@ -0,0 +1,4 @@
+icondir = $(datadir)/icons/hicolor/16x16/apps
+icon_DATA = paperbox.png
+
+EXTRA_DIST = $(icon_DATA)
Added: trunk/data/icons/16x16/paperbox.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/22x22/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/22x22/Makefile.am Sat Aug 23 22:51:18 2008
@@ -0,0 +1,4 @@
+icondir = $(datadir)/icons/hicolor/22x22/apps
+icon_DATA = paperbox.png
+
+EXTRA_DIST = $(icon_DATA)
Added: trunk/data/icons/22x22/paperbox.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/24x24/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/24x24/Makefile.am Sat Aug 23 22:51:18 2008
@@ -0,0 +1,4 @@
+icondir = $(datadir)/icons/hicolor/24x24/apps
+icon_DATA = paperbox.png
+
+EXTRA_DIST = $(icon_DATA)
Added: trunk/data/icons/24x24/paperbox.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/32x32/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/32x32/Makefile.am Sat Aug 23 22:51:18 2008
@@ -0,0 +1,4 @@
+icondir = $(datadir)/icons/hicolor/32x32/apps
+icon_DATA = paperbox.png
+
+EXTRA_DIST = $(icon_DATA)
Added: trunk/data/icons/32x32/paperbox.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/48x48/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/48x48/Makefile.am Sat Aug 23 22:51:18 2008
@@ -0,0 +1,4 @@
+icondir = $(datadir)/icons/hicolor/48x48/apps
+icon_DATA = paperbox.png
+
+EXTRA_DIST = $(icon_DATA)
Added: trunk/data/icons/48x48/paperbox.png
==============================================================================
Binary file. No diff available.
Added: trunk/data/icons/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/Makefile.am Sat Aug 23 22:51:18 2008
@@ -0,0 +1,16 @@
+SUBDIRS=16x16 22x22 24x24 32x32 48x48 scalable
+
+themedir = ${datadir}/icons/hicolor
+gtk_update_icon_cache = gtk-update-icon-cache -f -t ${themedir}
+
+install-data-hook: update-icon-cache
+uninstall-hook: update-icon-cache
+
+update-icon-cache:
+ @-if test -z "$(DESTDIR)"; then \
+ echo "Updating Gtk icon cache."; \
+ $(gtk_update_icon_cache); \
+ else \
+ echo "*** Icon cache not updated. After install, run this:"; \
+ echo "*** $(gtk_update_icon_cache)"; \
+ fi
Added: trunk/data/icons/scalable/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/scalable/Makefile.am Sat Aug 23 22:51:18 2008
@@ -0,0 +1,4 @@
+icondir = $(datadir)/icons/hicolor/scalable/apps
+icon_DATA = paperbox.svg
+
+EXTRA_DIST = $(icon_DATA)
Added: trunk/data/icons/scalable/paperbox.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/scalable/paperbox.svg Sat Aug 23 22:51:18 2008
@@ -0,0 +1,537 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.46"
+ version="1.0"
+ sodipodi:docname="paperbox48.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/media/disk/Users/Cube/Pictures/Inkscape-Files/paperbox/paperbox48.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective97" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective96" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective95" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective94" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective93" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective92" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective5562" />
+ <linearGradient
+ id="linearGradient6465">
+ <stop
+ id="stop6467"
+ offset="0"
+ style="stop-color:#e9b96e;stop-opacity:1;" />
+ <stop
+ id="stop6469"
+ offset="1"
+ style="stop-color:#c4831d;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6427">
+ <stop
+ style="stop-color:#e9b96e;stop-opacity:1;"
+ offset="0"
+ id="stop6429" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop6431" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6411">
+ <stop
+ style="stop-color:#eeeeec;stop-opacity:1;"
+ offset="0"
+ id="stop6413" />
+ <stop
+ style="stop-color:#ff9d02;stop-opacity:1;"
+ offset="1"
+ id="stop6415" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6300">
+ <stop
+ style="stop-color:#8f5902;stop-opacity:1;"
+ offset="0"
+ id="stop6302" />
+ <stop
+ style="stop-color:#8f5902;stop-opacity:0;"
+ offset="1"
+ id="stop6304" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective5493" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective9" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-50 : 600 : 1"
+ inkscape:vp_y="6.1230318e-14 : 1000 : 0"
+ inkscape:vp_z="345.71429 : -217.14286 : 1"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective5491"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="-50 : 600 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6300"
+ id="linearGradient6306"
+ x1="25"
+ y1="14"
+ x2="25"
+ y2="23"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(5e-8,-1.9e-6)" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.399281,0,23.91614)"
+ r="17.375"
+ fy="39.8125"
+ fx="24.25"
+ cy="39.8125"
+ cx="24.25"
+ id="radialGradient4726"
+ xlink:href="#linearGradient4720"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient4710">
+ <stop
+ id="stop4712"
+ offset="0"
+ style="stop-color:#f2f4f1;stop-opacity:1;" />
+ <stop
+ id="stop4714"
+ offset="1"
+ style="stop-color:#d3d7cf;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4720"
+ inkscape:collect="always">
+ <stop
+ id="stop4722"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop4724"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4728">
+ <stop
+ id="stop4730"
+ offset="0"
+ style="stop-color:#eeeeec;stop-opacity:1;" />
+ <stop
+ id="stop4732"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4750">
+ <stop
+ id="stop4752"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.5"
+ id="stop4758" />
+ <stop
+ id="stop4754"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5048">
+ <stop
+ id="stop5050"
+ offset="0"
+ style="stop-color:black;stop-opacity:0;" />
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0.5"
+ id="stop5056" />
+ <stop
+ id="stop5052"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5060"
+ inkscape:collect="always">
+ <stop
+ id="stop5062"
+ offset="0"
+ style="stop-color:black;stop-opacity:1;" />
+ <stop
+ id="stop5064"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective6353"
+ inkscape:persp3d-origin="300 : 400 : 1"
+ inkscape:vp_z="700 : 600 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="-50 : 600 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5048"
+ id="linearGradient6403"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
+ x1="302.85715"
+ y1="366.64789"
+ x2="302.85715"
+ y2="609.50507" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5060"
+ id="radialGradient6405"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
+ cx="605.71429"
+ cy="486.64789"
+ fx="605.71429"
+ fy="486.64789"
+ r="117.14286" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5060"
+ id="radialGradient6407"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
+ cx="605.71429"
+ cy="486.64789"
+ fx="605.71429"
+ fy="486.64789"
+ r="117.14286" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6427"
+ id="linearGradient6433"
+ x1="9.571903"
+ y1="18.999999"
+ x2="38.5"
+ y2="18.999999"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(5e-8,-1.9e-6)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6465"
+ id="linearGradient6463"
+ x1="23"
+ y1="45"
+ x2="23"
+ y2="29.375"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(5e-8,-1.9e-6)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6427"
+ id="linearGradient6546"
+ x1="9.0087833"
+ y1="22.5"
+ x2="38.991676"
+ y2="22.5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(5e-8,-1.9e-6)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.4142136"
+ inkscape:cx="-79.744326"
+ inkscape:cy="-101.94822"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:window-width="1270"
+ inkscape:window-height="948"
+ inkscape:window-x="5"
+ inkscape:window-y="47"
+ inkscape:object-paths="true"
+ inkscape:object-nodes="false"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-paths="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-nodes="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid5590"
+ visible="true"
+ enabled="true" />
+ </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" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Jakub Szypulka</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:rights>
+ <cc:Agent>
+ <dc:title>Jakub Szypulka</dc:title>
+ </cc:Agent>
+ </dc:rights>
+ <dc:publisher>
+ <cc:Agent>
+ <dc:title>Jakub Szypulka</dc:title>
+ </cc:Agent>
+ </dc:publisher>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ inkscape:label="Layer 1"
+ id="g6384"
+ transform="matrix(0.9960545,0,0,0.8523581,23.751154,-30.421697)"
+ style="opacity:0.7"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <g
+ id="g6707"
+ transform="matrix(2.171308e-2,0,0,2.452593e-2,19.605876,83.969398)">
+ <rect
+ y="-150.69685"
+ x="-1559.2523"
+ height="478.35718"
+ width="1339.6335"
+ id="rect6709"
+ style="opacity:0.40206185000000000;fill:url(#linearGradient6403);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path6711"
+ d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z"
+ style="opacity:0.40206185000000000;fill:url(#radialGradient6405);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+ <path
+ style="opacity:0.40206185000000000;fill:url(#radialGradient6407);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+ d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z"
+ id="path6713"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ </g>
+ <rect
+ style="opacity:1;fill:url(#linearGradient6463);fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1px;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="rect5477"
+ width="33"
+ height="25.000002"
+ x="7.5"
+ y="19.499998"
+ ry="3"
+ rx="3" />
+ <rect
+ rx="1.9424996"
+ ry="1.9424996"
+ y="19.499998"
+ x="8.5"
+ height="24"
+ width="30.999998"
+ id="rect6409"
+ style="opacity:0.7;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#eeeeec;stroke-width:0.99999994px;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" />
+ <path
+ style="fill:#f5e0bd;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;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"
+ d="M 8.7197798,17.249998 L 14.038461,14.499998 L 10.170329,22.083331 L 0.5,27.499998 L 8.7197798,17.249998 z"
+ id="rect5499"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path6280"
+ d="M 39.28022,17.25 L 33.961539,14.5 L 37.829671,22.083333 L 47.5,27.5 L 39.28022,17.25 z"
+ style="fill:#c17d11;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;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" />
+ <path
+ style="opacity:1;fill:#e9b96e;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6306);stroke-width:1px;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"
+ d="M 14,14.499998 L 34,14.499998 L 38,22.499999 L 10,22.499999 L 14,14.499998 z"
+ id="path5506" />
+ <path
+ style="opacity:0.8;fill:#a36d18;fill-opacity:1;fill-rule:evenodd;stroke:#a36d18;stroke-width:1px;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"
+ d="M 15.5,15.499999 L 15.5,21.499999 L 11.5,21.499999 L 14.5,15.499999 L 15.5,15.499999 z"
+ id="path5495" />
+ <path
+ id="path5497"
+ d="M 32.5,15.499999 L 32.5,21.499999 L 36.5,21.499999 L 33.5,15.499999 L 32.5,15.499999 z"
+ style="opacity:0.8;fill:#d48e1f;fill-opacity:1;fill-rule:evenodd;stroke:#d48e1f;stroke-width:1px;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" />
+ <path
+ id="path6271"
+ d="M 13.419816,15.499997 L 34.553348,15.499997 L 38,22.499997 L 10.071903,22.499997 L 13.419816,15.499997 z"
+ style="opacity:0.9;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6433);stroke-width:0.99999994px;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"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#e9b96e;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:0.99999994px;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 9.5037921,22.499997 L 38.518305,22.499997 C 39.086884,22.499997 39.544621,22.812197 39.544621,23.199997 C 40.92611,25.061981 42.462442,27.107581 43.843703,29.499997 L 4.0900051,29.499997 L 8.4774757,23.199997 C 8.4774757,22.812197 8.9352127,22.499997 9.5037921,22.499997 z"
+ id="rect5479"
+ sodipodi:nodetypes="ccccccc" />
+ <path
+ style="opacity:0.6800001;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#eeeeec;stroke-width:1px;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"
+ d="M 10,22.499998 L 6,28.499998 L 42,28.499998 L 38,22.499998 L 10,22.499998 z"
+ id="path6276" />
+ <g
+ id="g6362"
+ transform="matrix(0.996671,0,0,1,7.9945937e-2,0)">
+ <g
+ id="g6559">
+ <g
+ id="g6575"
+ transform="matrix(0.923077,0,0,1,1.8461521,1)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="rect5563"
+ d="M 15.220239,13.5 L 32.854168,13.5 L 36.5,21.5 L 11.500001,21.5 L 15.220239,13.5 z"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.04256976;stroke-linecap:butt;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" />
+ </g>
+ </g>
+ </g>
+ <path
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6546);stroke-width:1px;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"
+ d="M 9.5087833,22.499998 L 38.491677,22.499998"
+ id="path6538" />
+ <g
+ id="g7536"
+ transform="matrix(0.996671,0,0,1,7.9945937e-2,-12)" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path7592"
+ d="M 15.922534,12.5 L 32.145821,12.5 L 35.500002,20.5 L 12.4999,20.5 L 15.922534,12.5 z"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;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" />
+ <path
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;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"
+ d="M 14.922634,10.5 L 31.145921,10.5 L 34.500102,18.5 L 11.5,18.5 L 14.922634,10.5 z"
+ id="path7596"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path7598"
+ d="M 15.922534,8.5 L 32.145821,8.5 L 35.500002,16.5 L 12.4999,16.5 L 15.922534,8.5 z"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;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" />
+ <path
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;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"
+ d="M 16.922532,6.5 L 33.145819,6.5 L 36.5,14.5 L 13.499898,14.5 L 16.922532,6.5 z"
+ id="path7600"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path7602"
+ d="M 15.922635,4.5 L 32.145921,4.5 L 35.500102,12.5 L 12.5,12.5 L 15.922635,4.5 z"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;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" />
+ <g
+ id="g7576"
+ transform="matrix(0.996671,0,0,1,-0.9201551,-12)">
+ <g
+ id="g7578">
+ <g
+ id="g7580"
+ transform="matrix(0.923077,0,0,1,1.8461521,1)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path7582"
+ d="M 15.220239,13.5 L 32.854168,13.5 L 36.5,21.5 L 11.500001,21.5 L 15.220239,13.5 z"
+ style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.04256976;stroke-linecap:butt;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" />
+ <path
+ transform="matrix(0.950495,0,0,0.9795919,1.1732675,0.3571415)"
+ d="M 15.8125,14.4375 L 12.96875,20.5625 L 35.0625,20.5625 L 32.25,14.4375 L 15.8125,14.4375 z"
+ id="path7584"
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.08045721;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"
+ inkscape:original="M 15.21875 13.5 L 11.5 21.5 L 36.5 21.5 L 32.84375 13.5 L 15.21875 13.5 z "
+ inkscape:radius="-0.92237341"
+ sodipodi:type="inkscape:offset" />
+ </g>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2" />
+</svg>
Modified: trunk/data/paperbox.desktop.in.in
==============================================================================
--- trunk/data/paperbox.desktop.in.in (original)
+++ trunk/data/paperbox.desktop.in.in Sat Aug 23 22:51:18 2008
@@ -2,8 +2,8 @@
Version= PACKAGE_VERSION@
Encoding=UTF-8
Type=Application
-_Name=PaperBox
+_Name=Paperbox Document Browser
_Comment=Browse and tag your documents
-#Icon=
+Icon= PACKAGE@
Exec= PACKAGE@
Categories=GNOME;Application;Utility;
Modified: trunk/src/main-window.cc
==============================================================================
--- trunk/src/main-window.cc (original)
+++ trunk/src/main-window.cc Sat Aug 23 22:51:18 2008
@@ -119,6 +119,8 @@
shared_ptr<Config> cfg = get_default_config();
init_gui(cfg);
+ set_default_icon_name("paperbox");
+
set_position(Gtk::WIN_POS_CENTER_ALWAYS);
int width, height;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]