diff options
author | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
commit | 312ba610a1e98fc656fb58178227d7d45a64494e (patch) | |
tree | 54a3c2b6084c80e63fb0526c6e7b8e01627acbd7 /invest-applet/data | |
download | mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.bz2 mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.xz |
initial
Diffstat (limited to 'invest-applet/data')
18 files changed, 3208 insertions, 0 deletions
diff --git a/invest-applet/data/Invest_Applet.server.in.in b/invest-applet/data/Invest_Applet.server.in.in new file mode 100644 index 00000000..b2861c28 --- /dev/null +++ b/invest-applet/data/Invest_Applet.server.in.in @@ -0,0 +1,25 @@ +<oaf_info> + +<oaf_server iid="OAFIID:Invest_Applet_Factory" type="exe" location="@LIBEXECDIR@/invest-applet"> + <oaf_attribute name="repo_ids" type="stringv"> + <item value="IDL:MateComponent/GenericFactory:1.0"/> + <item value="IDL:MateComponent/Unknown:1.0"/> + </oaf_attribute> + <oaf_attribute name="name" type="string" _value="Invest"/> + <oaf_attribute name="description" type="string" _value="Track your invested money."/> +</oaf_server> + +<oaf_server iid="OAFIID:Invest_Applet" type="factory" location="OAFIID:Invest_Applet_Factory"> + + <oaf_attribute name="repo_ids" type="stringv"> + <item value="IDL:MATE/Vertigo/MatePanelAppletShell:1.0"/> + <item value="IDL:MateComponent/Control:1.0"/> + <item value="IDL:MateComponent/Unknown:1.0"/> + </oaf_attribute> + <oaf_attribute name="name" type="string" _value="Invest"/> + <oaf_attribute name="description" type="string" _value="Track your invested money."/> + <oaf_attribute name="panel:category" type="string" value="Accessories"/> + <oaf_attribute name="panel:icon" type="string" value="invest-applet"/> +</oaf_server> + +</oaf_info> diff --git a/invest-applet/data/Invest_Applet.xml b/invest-applet/data/Invest_Applet.xml new file mode 100644 index 00000000..832f6b83 --- /dev/null +++ b/invest-applet/data/Invest_Applet.xml @@ -0,0 +1,10 @@ +<Root> + <popups> + <popup name="button3"> + <menuitem name="Refresh" verb="Refresh" _label="_Refresh" pixtype="stock" pixname="gtk-refresh"/> + <menuitem name="Prefs" verb="Prefs" _label="_Preferences" pixtype="stock" pixname="gtk-properties"/> + <menuitem name="Help" verb="Help" _label="_Help" pixtype="stock" pixname="gtk-help"/> + <menuitem name="About" verb="About" _label="_About" pixtype="stock" pixname="gtk-about"/> + </popup> + </popups> +</Root> diff --git a/invest-applet/data/MATE_GtikApplet.server b/invest-applet/data/MATE_GtikApplet.server new file mode 100644 index 00000000..73f0717b --- /dev/null +++ b/invest-applet/data/MATE_GtikApplet.server @@ -0,0 +1,18 @@ +<oaf_info> + +<!-- gtik was replaced by invest-applet, transparently upgrade the user --> +<oaf_server iid="OAFIID:MATE_GtikApplet" + type="factory" + location="OAFIID:Invest_Applet_Factory"> + + <oaf_attribute name="repo_ids" type="stringv"> + <item value="IDL:MATE/Vertigo/MatePanelAppletShell:1.0"/> + <item value="IDL:MateComponent/Control:1.0"/> + <item value="IDL:MateComponent/Unknown:1.0"/> + </oaf_attribute> + <oaf_attribute name="name" type="string" value="Stock Ticker"/> + <oaf_attribute name="description" type="string" value="Replaced with invest-applet"/> + +</oaf_server> + +</oaf_info> diff --git a/invest-applet/data/Makefile.am b/invest-applet/data/Makefile.am new file mode 100644 index 00000000..e304109a --- /dev/null +++ b/invest-applet/data/Makefile.am @@ -0,0 +1,58 @@ +SUBDIRS = art + +# ****************************************************************************** +# Panel applet matecomponent stuff +# ****************************************************************************** +serverdir = $(libdir)/matecomponent/servers +server_in_files = Invest_Applet.server.in +server_DATA = \ + $(server_in_files:.server.in=.server) \ + MATE_GtikApplet.server + +# ****************************************************************************** +# MateConf Schemas +# ****************************************************************************** +# MateConf Preference Schemas +#schemadir = $(MATECONF_SCHEMA_FILE_DIR) +#schema_in_files = deskbar-applet.schemas.in +#schema_DATA = $(schema_in_files:.schemas.in=.schemas) + +# ****************************************************************************** +# Misc data +# ****************************************************************************** +uidir = $(datadir)/mate-2.0/ui +ui_DATA = \ + Invest_Applet.xml +builder_DATA = \ + prefs-dialog.ui \ + financialchart.ui + +investbindir = $(libdir)/invest-applet + +# ****************************************************************************** +# Build rules +# ****************************************************************************** +@INTLTOOL_SERVER_RULE@ +@INTLTOOL_SCHEMAS_RULE@ + +$(server_in_files): $(server_in_files:.server.in=.server.in.in) + sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" $< > $@ + +#if MATECONF_SCHEMAS_INSTALL +#install-data-local: install-schemas +#install-schemas: +# MATECONF_CONFIG_SOURCE=$(MATECONF_SCHEMA_CONFIG_SOURCE) \ +# $(MATECONFTOOL) --makefile-install-rule $(schema_DATA) +#endif + +DISTCLEANFILES = \ + $(server_in_files) \ + $(server_in_files:.server.in=.server) + +EXTRA_DIST = \ + Invest_Applet.server.in.in \ + MATE_GtikApplet.server \ + $(ui_DATA) \ + $(builder_DATA) + +-include $(top_srcdir)/git.mk diff --git a/invest-applet/data/art/Makefile.am b/invest-applet/data/art/Makefile.am new file mode 100644 index 00000000..7f304f4a --- /dev/null +++ b/invest-applet/data/art/Makefile.am @@ -0,0 +1,59 @@ +# ****************************************************************************** +# Images and icon +# ****************************************************************************** +icons = invest-applet.16.png invest-applet.22.png invest-applet.48.png invest-applet.svg + +artdir = $(pkgdatadir)/invest-applet +art_DATA = invest-16_neutral.png invest-22_neutral.png invest_neutral.svg \ + invest-22_up.png invest_up.svg \ + invest-22_down.png invest_down.svg + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor + +uninstall-local: + for icon in $(icons); do \ + SIZE=`echo $$icon | cut -d. -f2`; \ + FILE=`echo $$icon | cut -d. -f1,3`; \ + if [ "$$SIZE" = "svg" ]; then \ + SIZE="scalable"; \ + FILE="$$FILE.svg"; \ + else \ + SIZE="$${SIZE}x$${SIZE}"; \ + fi; \ + rm -f $(DESTDIR)$(iconsdir)/hicolor/$$SIZE/apps/$$FILE; \ + done + @-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 + +install-data-local: + for icon in $(icons); do \ + SIZE=`echo $$icon | cut -d. -f2`; \ + FILE=`echo $$icon | cut -d. -f1,3`; \ + if [ "$$SIZE" = "svg" ]; then \ + SIZE="scalable"; \ + FILE="$$FILE.svg"; \ + else \ + SIZE="$${SIZE}x$${SIZE}"; \ + fi; \ + mkdir -p $(DESTDIR)$(iconsdir)/hicolor/$$SIZE/apps/; \ + $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(iconsdir)/hicolor/$$SIZE/apps/$$FILE; \ + done + @-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 + +EXTRA_DIST = \ + $(icons) \ + $(art_DATA) + + +-include $(top_srcdir)/git.mk diff --git a/invest-applet/data/art/invest-16_neutral.png b/invest-applet/data/art/invest-16_neutral.png Binary files differnew file mode 100644 index 00000000..de34fb6c --- /dev/null +++ b/invest-applet/data/art/invest-16_neutral.png diff --git a/invest-applet/data/art/invest-22_down.png b/invest-applet/data/art/invest-22_down.png Binary files differnew file mode 100644 index 00000000..8c298fce --- /dev/null +++ b/invest-applet/data/art/invest-22_down.png diff --git a/invest-applet/data/art/invest-22_neutral.png b/invest-applet/data/art/invest-22_neutral.png Binary files differnew file mode 100644 index 00000000..1b4d316b --- /dev/null +++ b/invest-applet/data/art/invest-22_neutral.png diff --git a/invest-applet/data/art/invest-22_up.png b/invest-applet/data/art/invest-22_up.png Binary files differnew file mode 100644 index 00000000..eba0caff --- /dev/null +++ b/invest-applet/data/art/invest-22_up.png diff --git a/invest-applet/data/art/invest-applet.16.png b/invest-applet/data/art/invest-applet.16.png Binary files differnew file mode 100644 index 00000000..c5d6f815 --- /dev/null +++ b/invest-applet/data/art/invest-applet.16.png diff --git a/invest-applet/data/art/invest-applet.22.png b/invest-applet/data/art/invest-applet.22.png Binary files differnew file mode 100644 index 00000000..eba0caff --- /dev/null +++ b/invest-applet/data/art/invest-applet.22.png diff --git a/invest-applet/data/art/invest-applet.48.png b/invest-applet/data/art/invest-applet.48.png Binary files differnew file mode 100644 index 00000000..14e2f9ec --- /dev/null +++ b/invest-applet/data/art/invest-applet.48.png diff --git a/invest-applet/data/art/invest-applet.svg b/invest-applet/data/art/invest-applet.svg new file mode 100644 index 00000000..b5808216 --- /dev/null +++ b/invest-applet/data/art/invest-applet.svg @@ -0,0 +1,380 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/media/hda1/Backup/Documentos/Vinicius/tango-icon-theme-code/invest-applet/scalable" + sodipodi:docname="invest-up.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/media/hda1/Backup/Documentos/Vinicius/tango-icon-theme-code/invest-applet/48x48/invest-up.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:modified="TRUE"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3156"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3158" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3160" /> + </linearGradient> + <linearGradient + id="linearGradient7049"> + <stop + style="stop-color:#73d216;stop-opacity:1;" + offset="0" + id="stop7051" /> + <stop + style="stop-color:#9ded4f;stop-opacity:0.59649122;" + offset="1" + id="stop7053" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6072"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop6074" /> + <stop + style="stop-color:#57ad06;stop-opacity:1" + offset="1" + id="stop6076" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4110"> + <stop + style="stop-color:#888a85;stop-opacity:1;" + offset="0" + id="stop4112" /> + <stop + style="stop-color:#acadaa;stop-opacity:1" + offset="1" + id="stop4114" /> + </linearGradient> + <linearGradient + id="linearGradient4102"> + <stop + style="stop-color:#e8e8e8;stop-opacity:1;" + offset="0" + id="stop4104" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop4106" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4102" + id="linearGradient2238" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2352942,0,0,2.2105263,-9.8675135e-2,-0.8157891)" + x1="10.44536" + y1="21" + x2="10.44536" + y2="6.8023472" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4110" + id="linearGradient2240" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2352942,0,0,2.2105263,-9.8675135e-2,-0.8157891)" + x1="2.4051816" + y1="20.62561" + x2="2.4051816" + y2="0.98268282" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7049" + id="linearGradient5482" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.4615386,0,0,2.3407614,-2.5873635,-1.80409)" + x1="8.3792715" + y1="14.33812" + x2="8.3792715" + y2="18.465544" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6072" + id="linearGradient5484" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.4615386,0,0,2.3407614,-2.5873635,-1.80409)" + x1="17.454746" + y1="8.5997019" + x2="17.454746" + y2="19.000908" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3156" + id="linearGradient5486" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.5805157,0,0,2.4545064,-3.8380168,-3.5791546)" + x1="6.4130034" + y1="8.8749151" + x2="11.42639" + y2="15.772017" /> + <filter + inkscape:collect="always" + x="-0.12442589" + width="1.2488518" + y="-1.2074867" + height="3.4149734" + id="filter8688"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.3640921" + id="feGaussianBlur8690" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="31.987806" + inkscape:cy="3.2351035" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="48px" + height="48px" + showgrid="false" + showborder="false" + inkscape:window-width="1024" + inkscape:window-height="687" + inkscape:window-x="0" + inkscape:window-y="32" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <cc:license + rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" /> + <dc:title>Invest</dc:title> + <dc:creator> + <cc:Agent> + <dc:title>Vinicius Depizzol <[email protected]></dc:title> + </cc:Agent> + </dc:creator> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/LGPL/2.1/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + inkscape:label="Camada 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + ry="1.9166111" + rx="1.9076604" + y="40.584282" + x="5.4895606" + height="3.9157236" + width="38.000004" + id="rect5488" + style="opacity:0.36111111;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8688)" + transform="matrix(1.0263157,0,0,1.0215227,-0.634022,-0.4577652)" /> + <rect + style="opacity:1;fill:url(#linearGradient2238);fill-opacity:1;stroke:url(#linearGradient2240);stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2160" + width="38.000004" + height="42.000004" + x="5.4895606" + y="2.5" + rx="0" + ry="0" /> + <rect + ry="0" + rx="0" + y="3.5" + x="6.4895606" + height="40" + width="36" + id="rect2242" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5436" + width="37" + height="1" + x="-42" + y="7.9895606" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="11.98956" + x="-42" + height="1" + width="37" + id="rect5438" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5440" + width="37" + height="1" + x="-42" + y="15.98956" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="19.989561" + x="-42" + height="1" + width="37" + id="rect5442" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5444" + width="37" + height="1" + x="-42" + y="23.989561" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="27.989561" + x="-42" + height="1" + width="37" + id="rect5446" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5448" + width="37" + height="1" + x="-42" + y="31.989561" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="35.989559" + x="-42" + height="1" + width="37" + id="rect5450" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5452" + width="37" + height="1" + x="-42" + y="39.989559" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + y="5" + x="7.9895606" + height="1" + width="33" + id="rect5456" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5458" + width="33" + height="1" + x="7.9895606" + y="9" /> + <rect + y="13" + x="7.9895606" + height="1" + width="33" + id="rect5460" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5462" + width="33" + height="1" + x="7.9895606" + y="17" /> + <rect + y="21" + x="7.9895606" + height="1" + width="33" + id="rect5464" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5466" + width="33" + height="1" + x="7.9895606" + y="25" /> + <rect + y="29" + x="7.9895606" + height="1" + width="33" + id="rect5468" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5470" + width="33" + height="1" + x="7.9895606" + y="33" /> + <rect + y="37" + x="7.9895606" + height="1" + width="33" + id="rect5472" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient5482);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5484);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 8.4895604,27.135085 L 11.401864,24.521725 L 17.379454,31.671583 L 19.818716,28.982211 L 23.484126,22.000921 L 28.481685,30.017623 L 32.318601,17.494833 L 35.211394,20.609709 L 40.489558,5.4999998 L 40.489558,41.499997 L 8.4895604,41.499997 L 8.4895604,27.135085 z " + id="path5478" + sodipodi:nodetypes="cccccccccccc" /> + <path + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5486);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 38.494603,40.38061 L 39.589559,11.15896 L 35.371345,22.633116 L 32.819668,19.482264 L 28.792593,32.157265 L 23.530974,24.047064 L 20.807056,29.470003 L 17.446128,32.896483 L 11.376188,26.049147 L 9.5819065,27.552385 L 9.4895595,40.678873" + id="path5480" + sodipodi:nodetypes="ccccccccccc" /> + </g> +</svg> diff --git a/invest-applet/data/art/invest_down.svg b/invest-applet/data/art/invest_down.svg new file mode 100644 index 00000000..b6360e81 --- /dev/null +++ b/invest-applet/data/art/invest_down.svg @@ -0,0 +1,481 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/media/hda1/Backup/Documentos/Vinicius/tango-icon-theme-code/invest-applet/scalable" + sodipodi:docname="invest-down.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/media/hda1/Backup/Documentos/Vinicius/tango-icon-theme-code/invest-applet/48x48/invest-down.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:modified="TRUE"> + <defs + id="defs4"> + <filter + inkscape:collect="always" + x="-0.12442589" + width="1.2488518" + y="-1.2074867" + height="3.4149734" + id="filter8688"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.3640921" + id="feGaussianBlur8690" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4110" + id="linearGradient2240" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2352942,0,0,2.2105263,-8.8235749e-2,-0.8157927)" + x1="2.4051816" + y1="20.62561" + x2="2.4051816" + y2="0.98268282" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4102" + id="linearGradient2238" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2352942,0,0,2.2105263,-8.8235749e-2,-0.8157927)" + x1="10.44536" + y1="21" + x2="10.44536" + y2="6.8023472" /> + <linearGradient + inkscape:collect="always" + id="linearGradient12044"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop12046" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop12048" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient12044" + id="linearGradient12050" + x1="16.087421" + y1="9.1425676" + x2="11.009646" + y2="16.837292" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.579971,0,0,2.4630999,-3.9508632,-3.4537894)" /> + <linearGradient + id="linearGradient8318"> + <stop + id="stop8320" + offset="0" + style="stop-color:#ef2929;stop-opacity:1" /> + <stop + id="stop8322" + offset="1" + style="stop-color:#ef2929;stop-opacity:0.34901962" /> + </linearGradient> + <linearGradient + id="linearGradient7343" + inkscape:collect="always"> + <stop + id="stop7345" + offset="0" + style="stop-color:#b30000;stop-opacity:1" /> + <stop + id="stop7347" + offset="1" + style="stop-color:#ce0700;stop-opacity:0.53333336" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3156"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3158" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3160" /> + </linearGradient> + <linearGradient + id="linearGradient7049"> + <stop + style="stop-color:#73d216;stop-opacity:1;" + offset="0" + id="stop7051" /> + <stop + style="stop-color:#9ded4f;stop-opacity:0.59649122;" + offset="1" + id="stop7053" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6072"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop6074" /> + <stop + style="stop-color:#57ad06;stop-opacity:1" + offset="1" + id="stop6076" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4110"> + <stop + style="stop-color:#888a85;stop-opacity:1;" + offset="0" + id="stop4112" /> + <stop + style="stop-color:#acadaa;stop-opacity:1" + offset="1" + id="stop4114" /> + </linearGradient> + <linearGradient + id="linearGradient4102"> + <stop + style="stop-color:#e8e8e8;stop-opacity:1;" + offset="0" + id="stop4104" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop4106" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4102" + id="linearGradient4108" + x1="10.44536" + y1="21" + x2="10.44536" + y2="6.8023472" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4705882,0,0,1.4210527,-60.176471,0.368421)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4110" + id="linearGradient4116" + x1="2.4051816" + y1="20.62561" + x2="2.4051816" + y2="0.98268282" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4705882,0,0,1.4210527,-60.176471,0.368421)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6072" + id="linearGradient6078" + x1="17.454746" + y1="8.5997019" + x2="17.454746" + y2="19.000908" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4615387,0,0,1.4304655,-7.6924477e-2,3.6389645e-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7049" + id="linearGradient7055" + x1="8.3792715" + y1="14.33812" + x2="8.3792715" + y2="18.465544" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4615387,0,0,1.4304655,-7.6924477e-2,3.6389645e-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3156" + id="linearGradient3162" + x1="6.4928937" + y1="9.3508682" + x2="11.42639" + y2="15.772017" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.4615387,0,0,1.4304655,-7.932244,3.6389645e-2)" /> + <filter + inkscape:collect="always" + x="-0.10401403" + width="1.2080281" + y="-0.90145552" + height="2.802911" + id="filter5136"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.3521825" + id="feGaussianBlur5138" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8318" + id="linearGradient5401" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.5976343,0,0,3.4374632,-2.7662769,93.252767)" + x1="7.0319161" + y1="-19.083963" + x2="7.0319161" + y2="-12.064768" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7343" + id="linearGradient5403" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.5976343,0,0,3.4374632,-2.7662769,93.252767)" + x1="4.0963483" + y1="-20.294283" + x2="4.0963483" + y2="-14.781351" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="24.106709" + inkscape:cy="16.077734" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="48px" + height="48px" + showgrid="false" + showborder="false" + inkscape:window-width="1024" + inkscape:window-height="687" + inkscape:window-x="0" + inkscape:window-y="32" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <cc:license + rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" /> + <dc:title>Invest</dc:title> + <dc:creator> + <cc:Agent> + <dc:title>Vinicius Depizzol <[email protected]></dc:title> + </cc:Agent> + </dc:creator> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/LGPL/2.1/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + inkscape:label="Camada 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + ry="1.9166111" + rx="1.9076604" + y="40.584282" + x="5.4895606" + height="3.9157236" + width="38.000004" + id="rect5488" + style="opacity:0.36111109;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8688)" + transform="matrix(1.0263157,0,0,1.0215227,-0.6235827,-0.4577688)" /> + <rect + style="opacity:1;fill:url(#linearGradient2238);fill-opacity:1;stroke:url(#linearGradient2240);stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2388" + width="38.000004" + height="42.000004" + x="5.5" + y="2.4999964" + rx="0" + ry="0" /> + <rect + ry="0" + rx="0" + y="3.4999964" + x="6.5" + height="40" + width="36" + id="rect2242" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g2363" + transform="translate(1.0439251e-2,-3.5509884e-6)"> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="7.9895606" + x="-42" + height="1" + width="37" + id="rect5436" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5438" + width="37" + height="1" + x="-42" + y="11.98956" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="15.98956" + x="-42" + height="1" + width="37" + id="rect5440" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5442" + width="37" + height="1" + x="-42" + y="19.989561" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="23.989561" + x="-42" + height="1" + width="37" + id="rect5444" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5446" + width="37" + height="1" + x="-42" + y="27.989561" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="31.989561" + x="-42" + height="1" + width="37" + id="rect5448" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5450" + width="37" + height="1" + x="-42" + y="35.989559" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="39.989559" + x="-42" + height="1" + width="37" + id="rect5452" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5456" + width="33" + height="1" + x="7.9895606" + y="5" /> + <rect + y="9" + x="7.9895606" + height="1" + width="33" + id="rect5458" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5460" + width="33" + height="1" + x="7.9895606" + y="13" /> + <rect + y="17" + x="7.9895606" + height="1" + width="33" + id="rect5462" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5464" + width="33" + height="1" + x="7.9895606" + y="21" /> + <rect + y="25" + x="7.9895606" + height="1" + width="33" + id="rect5466" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5468" + width="33" + height="1" + x="7.9895606" + y="29" /> + <rect + y="33" + x="7.9895606" + height="1" + width="33" + id="rect5470" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5472" + width="33" + height="1" + x="7.9895606" + y="37" /> + </g> + <path + style="fill:url(#linearGradient5401);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5403);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 40.499999,29.890479 L 37.249382,25.3911 L 31.832319,34.434646 L 27.535302,23.794042 L 21.353655,27.730505 L 17.347581,16.030492 L 14.319461,17.834499 L 8.4999997,5.4999997 L 8.4999997,41.499998 L 40.499999,41.499998 L 40.499999,29.890479 z " + id="path5399" + sodipodi:nodetypes="ccccccccccc" /> + <path + sodipodi:nodetypes="cccccccccc" + id="path11069" + d="M 39.56741,40.560398 L 39.453943,30.425782 L 37.242164,27.441102 L 31.597233,36.761079 L 26.961901,25.330214 L 20.748414,28.992175 L 16.783016,17.597492 L 14.003872,19.388025 L 9.4473739,10.181304 L 9.7380019,36.237458" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient12050);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> +</svg> diff --git a/invest-applet/data/art/invest_neutral.svg b/invest-applet/data/art/invest_neutral.svg new file mode 100644 index 00000000..f0e26537 --- /dev/null +++ b/invest-applet/data/art/invest_neutral.svg @@ -0,0 +1,540 @@ +<?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.47pre4 r22446" + version="1.0" + sodipodi:docname="invest-neutral.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/media/hda1/Backup/Documentos/Vinicius/tango-icon-theme-code/invest-applet/48x48/invest-neutral.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:modified="TRUE"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 24 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="48 : 24 : 1" + inkscape:persp3d-origin="24 : 16 : 1" + id="perspective3366" /> + <filter + inkscape:collect="always" + x="-0.12442589" + width="1.2488518" + y="-1.2074867" + height="3.4149734" + id="filter8688"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.3640921" + id="feGaussianBlur8690" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4110" + id="linearGradient2240" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2352942,0,0,2.2105263,-8.8235765e-2,-0.8157929)" + x1="2.4051816" + y1="20.62561" + x2="2.4051816" + y2="0.98268282" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4102" + id="linearGradient2238" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2352942,0,0,2.2105263,-8.8235765e-2,-0.8157929)" + x1="10.44536" + y1="21" + x2="10.44536" + y2="6.8023472" /> + <linearGradient + inkscape:collect="always" + id="linearGradient13018"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop13020" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop13022" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient13008"> + <stop + style="stop-color:#5c3566;stop-opacity:1" + offset="0" + id="stop13010" /> + <stop + style="stop-color:#ad7fa8;stop-opacity:0.53333336" + offset="1" + id="stop13012" /> + </linearGradient> + <linearGradient + id="linearGradient12996"> + <stop + id="stop12998" + offset="0" + style="stop-color:#75507b;stop-opacity:1" /> + <stop + id="stop13000" + offset="1" + style="stop-color:#ad7fa8;stop-opacity:0.3508772" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient3163"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3165" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3167" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3163" + id="linearGradient3169" + x1="10.319195" + y1="4.1659207" + x2="11.33674" + y2="15.864724" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.4814725,25.838722)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient12044"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop12046" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop12048" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient12044" + id="linearGradient12050" + x1="16.087421" + y1="9.1425676" + x2="11.009646" + y2="16.837292" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5318577,0,0,1.5299599,-0.892699,-1.4231453)" /> + <linearGradient + id="linearGradient8318"> + <stop + id="stop8320" + offset="0" + style="stop-color:#ef2929;stop-opacity:1" /> + <stop + id="stop8322" + offset="1" + style="stop-color:#ef2929;stop-opacity:0.34901962" /> + </linearGradient> + <linearGradient + id="linearGradient7343" + inkscape:collect="always"> + <stop + id="stop7345" + offset="0" + style="stop-color:#b30000;stop-opacity:1" /> + <stop + id="stop7347" + offset="1" + style="stop-color:#ce0700;stop-opacity:0.53333336" /> + </linearGradient> + <linearGradient + id="linearGradient7049"> + <stop + style="stop-color:#73d216;stop-opacity:1;" + offset="0" + id="stop7051" /> + <stop + style="stop-color:#9ded4f;stop-opacity:0.59649122;" + offset="1" + id="stop7053" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4110"> + <stop + style="stop-color:#888a85;stop-opacity:1;" + offset="0" + id="stop4112" /> + <stop + style="stop-color:#acadaa;stop-opacity:1" + offset="1" + id="stop4114" /> + </linearGradient> + <linearGradient + id="linearGradient4102"> + <stop + style="stop-color:#e8e8e8;stop-opacity:1;" + offset="0" + id="stop4104" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop4106" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4102" + id="linearGradient4108" + x1="10.44536" + y1="21" + x2="10.44536" + y2="6.8023472" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4705882,0,0,1.4210527,-40.176471,0.368421)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4110" + id="linearGradient4116" + x1="2.4051816" + y1="20.62561" + x2="2.4051816" + y2="0.98268282" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.4705882,0,0,1.4210527,-40.176471,0.368421)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient12996" + id="linearGradient7055" + x1="-17.104433" + y1="2.6898365" + x2="-17.104433" + y2="9.2873936" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.1360951,0,0,2.0850319,3.563866,13.684124)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8318" + id="linearGradient5401" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.1360953,0,0,2.0844447,-0.189351,57.882382)" + x1="7.0319161" + y1="-17.93902" + x2="7.0319161" + y2="-14.811294" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7343" + id="linearGradient5403" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.1360953,0,0,2.0844447,-0.189351,57.882382)" + x1="4.0963483" + y1="-20.294283" + x2="4.0963483" + y2="-14.781351" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient13008" + id="linearGradient13014" + x1="25.341557" + y1="19.292519" + x2="25.341557" + y2="26.91168" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-40,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient13018" + id="linearGradient13024" + x1="16.065214" + y1="8.9136915" + x2="16.065214" + y2="22.354534" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-40,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient12996" + id="linearGradient2617" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.5976341,0,0,3.3680747,70.923355,20.940428)" + x1="-17.104433" + y1="2.6898365" + x2="-17.104433" + y2="9.2873936" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient13008" + id="linearGradient2619" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6842107,0,0,1.6153588,-2.4473724,-1.1643418)" + x1="25.341557" + y1="19.292519" + x2="25.341557" + y2="26.91168" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient13018" + id="linearGradient2621" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6842106,0,0,1.6334617,-2.447372,-2.394087)" + x1="16.004009" + y1="2.4429882" + x2="16.004009" + y2="22.299316" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="9.2596773" + inkscape:cx="20.506206" + inkscape:cy="23.610261" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="48px" + height="48px" + showgrid="true" + showborder="false" + inkscape:window-width="1389" + inkscape:window-height="900" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <cc:license + rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" /> + <dc:title>Invest</dc:title> + <dc:creator> + <cc:Agent> + <dc:title>Vinicius Depizzol <[email protected]></dc:title> + </cc:Agent> + </dc:creator> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/LGPL/2.1/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + inkscape:label="Camada 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + ry="1.9166111" + rx="1.9076604" + y="40.584282" + x="5.4895606" + height="3.9157236" + width="38.000004" + id="rect5488" + style="opacity:0.36111109;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8688)" + transform="matrix(1.0263157,0,0,1.0215227,-0.6235828,-0.457769)" /> + <rect + style="opacity:1;fill:url(#linearGradient2238);fill-opacity:1;stroke:url(#linearGradient2240);stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2388" + width="38.000004" + height="42.000004" + x="5.5" + y="2.4999964" + rx="0" + ry="0" /> + <rect + ry="0" + rx="0" + y="3.4999962" + x="6.5000005" + height="40" + width="36" + id="rect2242" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g2363" + transform="translate(1.0439235e-2,-3.8e-6)"> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="7.9895606" + x="-42" + height="1" + width="37" + id="rect5436" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5438" + width="37" + height="1" + x="-42" + y="11.98956" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="15.98956" + x="-42" + height="1" + width="37" + id="rect5440" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5442" + width="37" + height="1" + x="-42" + y="19.989561" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="23.989561" + x="-42" + height="1" + width="37" + id="rect5444" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5446" + width="37" + height="1" + x="-42" + y="27.989561" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="31.989561" + x="-42" + height="1" + width="37" + id="rect5448" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5450" + width="37" + height="1" + x="-42" + y="35.989559" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="39.989559" + x="-42" + height="1" + width="37" + id="rect5452" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5456" + width="33" + height="1" + x="7.9895606" + y="5" /> + <rect + y="9" + x="7.9895606" + height="1" + width="33" + id="rect5458" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5460" + width="33" + height="1" + x="7.9895606" + y="13" /> + <rect + y="17" + x="7.9895606" + height="1" + width="33" + id="rect5462" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5464" + width="33" + height="1" + x="7.9895606" + y="21" /> + <rect + y="25" + x="7.9895606" + height="1" + width="33" + id="rect5466" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5468" + width="33" + height="1" + x="7.9895606" + y="29" /> + <rect + y="33" + x="7.9895606" + height="1" + width="33" + id="rect5470" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5472" + width="33" + height="1" + x="7.9895606" + y="37" /> + </g> + <path + sodipodi:nodetypes="ccccccccccccccc" + id="path2613" + d="m 40.5,22.681931 -2.589955,2.65614 -2.109857,-2.499506 -2.548358,0.67284 -3.031167,-6.769371 -3.858672,8.405298 -2.97235,-1.804775 -4.577576,6.241867 -2.764526,-4.921219 -2.523376,1.424382 -2.962597,-4.168393 -2.0615659,2.429334 0,17.15147 31.9999999,0 0,-18.818067 z" + style="fill:url(#linearGradient2617);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2619);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="cccccccccccccc" + id="path2615" + d="m 39.282711,38.945765 0.128587,-13.705949 -1.489353,1.588361 -2.320427,-2.867164 -2.901882,0.545803 -2.36546,-5.223532 -3.59091,7.21907 -3.210624,-1.676554 -4.731852,6.551625 -3.098864,-5.359767 -2.494113,1.413859 -2.777942,-3.690771 -0.827666,1.029067 0.017563,13.600335" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient2621);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> +</svg> diff --git a/invest-applet/data/art/invest_up.svg b/invest-applet/data/art/invest_up.svg new file mode 100644 index 00000000..b5808216 --- /dev/null +++ b/invest-applet/data/art/invest_up.svg @@ -0,0 +1,380 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45" + version="1.0" + sodipodi:docbase="/media/hda1/Backup/Documentos/Vinicius/tango-icon-theme-code/invest-applet/scalable" + sodipodi:docname="invest-up.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="/media/hda1/Backup/Documentos/Vinicius/tango-icon-theme-code/invest-applet/48x48/invest-up.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:modified="TRUE"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient3156"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3158" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop3160" /> + </linearGradient> + <linearGradient + id="linearGradient7049"> + <stop + style="stop-color:#73d216;stop-opacity:1;" + offset="0" + id="stop7051" /> + <stop + style="stop-color:#9ded4f;stop-opacity:0.59649122;" + offset="1" + id="stop7053" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient6072"> + <stop + style="stop-color:#4e9a06;stop-opacity:1;" + offset="0" + id="stop6074" /> + <stop + style="stop-color:#57ad06;stop-opacity:1" + offset="1" + id="stop6076" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4110"> + <stop + style="stop-color:#888a85;stop-opacity:1;" + offset="0" + id="stop4112" /> + <stop + style="stop-color:#acadaa;stop-opacity:1" + offset="1" + id="stop4114" /> + </linearGradient> + <linearGradient + id="linearGradient4102"> + <stop + style="stop-color:#e8e8e8;stop-opacity:1;" + offset="0" + id="stop4104" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop4106" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4102" + id="linearGradient2238" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2352942,0,0,2.2105263,-9.8675135e-2,-0.8157891)" + x1="10.44536" + y1="21" + x2="10.44536" + y2="6.8023472" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4110" + id="linearGradient2240" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2352942,0,0,2.2105263,-9.8675135e-2,-0.8157891)" + x1="2.4051816" + y1="20.62561" + x2="2.4051816" + y2="0.98268282" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7049" + id="linearGradient5482" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.4615386,0,0,2.3407614,-2.5873635,-1.80409)" + x1="8.3792715" + y1="14.33812" + x2="8.3792715" + y2="18.465544" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6072" + id="linearGradient5484" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.4615386,0,0,2.3407614,-2.5873635,-1.80409)" + x1="17.454746" + y1="8.5997019" + x2="17.454746" + y2="19.000908" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3156" + id="linearGradient5486" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.5805157,0,0,2.4545064,-3.8380168,-3.5791546)" + x1="6.4130034" + y1="8.8749151" + x2="11.42639" + y2="15.772017" /> + <filter + inkscape:collect="always" + x="-0.12442589" + width="1.2488518" + y="-1.2074867" + height="3.4149734" + id="filter8688"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.3640921" + id="feGaussianBlur8690" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="31.987806" + inkscape:cy="3.2351035" + inkscape:document-units="px" + inkscape:current-layer="layer1" + width="48px" + height="48px" + showgrid="false" + showborder="false" + inkscape:window-width="1024" + inkscape:window-height="687" + inkscape:window-x="0" + inkscape:window-y="32" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <cc:license + rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/" /> + <dc:title>Invest</dc:title> + <dc:creator> + <cc:Agent> + <dc:title>Vinicius Depizzol <[email protected]></dc:title> + </cc:Agent> + </dc:creator> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/LGPL/2.1/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + inkscape:label="Camada 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + ry="1.9166111" + rx="1.9076604" + y="40.584282" + x="5.4895606" + height="3.9157236" + width="38.000004" + id="rect5488" + style="opacity:0.36111111;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8688)" + transform="matrix(1.0263157,0,0,1.0215227,-0.634022,-0.4577652)" /> + <rect + style="opacity:1;fill:url(#linearGradient2238);fill-opacity:1;stroke:url(#linearGradient2240);stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2160" + width="38.000004" + height="42.000004" + x="5.4895606" + y="2.5" + rx="0" + ry="0" /> + <rect + ry="0" + rx="0" + y="3.5" + x="6.4895606" + height="40" + width="36" + id="rect2242" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5436" + width="37" + height="1" + x="-42" + y="7.9895606" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="11.98956" + x="-42" + height="1" + width="37" + id="rect5438" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5440" + width="37" + height="1" + x="-42" + y="15.98956" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="19.989561" + x="-42" + height="1" + width="37" + id="rect5442" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5444" + width="37" + height="1" + x="-42" + y="23.989561" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="27.989561" + x="-42" + height="1" + width="37" + id="rect5446" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5448" + width="37" + height="1" + x="-42" + y="31.989561" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="35.989559" + x="-42" + height="1" + width="37" + id="rect5450" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5452" + width="37" + height="1" + x="-42" + y="39.989559" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + y="5" + x="7.9895606" + height="1" + width="33" + id="rect5456" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5458" + width="33" + height="1" + x="7.9895606" + y="9" /> + <rect + y="13" + x="7.9895606" + height="1" + width="33" + id="rect5460" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5462" + width="33" + height="1" + x="7.9895606" + y="17" /> + <rect + y="21" + x="7.9895606" + height="1" + width="33" + id="rect5464" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5466" + width="33" + height="1" + x="7.9895606" + y="25" /> + <rect + y="29" + x="7.9895606" + height="1" + width="33" + id="rect5468" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5470" + width="33" + height="1" + x="7.9895606" + y="33" /> + <rect + y="37" + x="7.9895606" + height="1" + width="33" + id="rect5472" + style="opacity:1;fill:#000000;fill-opacity:0.09599998;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient5482);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5484);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 8.4895604,27.135085 L 11.401864,24.521725 L 17.379454,31.671583 L 19.818716,28.982211 L 23.484126,22.000921 L 28.481685,30.017623 L 32.318601,17.494833 L 35.211394,20.609709 L 40.489558,5.4999998 L 40.489558,41.499997 L 8.4895604,41.499997 L 8.4895604,27.135085 z " + id="path5478" + sodipodi:nodetypes="cccccccccccc" /> + <path + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5486);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 38.494603,40.38061 L 39.589559,11.15896 L 35.371345,22.633116 L 32.819668,19.482264 L 28.792593,32.157265 L 23.530974,24.047064 L 20.807056,29.470003 L 17.446128,32.896483 L 11.376188,26.049147 L 9.5819065,27.552385 L 9.4895595,40.678873" + id="path5480" + sodipodi:nodetypes="ccccccccccc" /> + </g> +</svg> diff --git a/invest-applet/data/financialchart.ui b/invest-applet/data/financialchart.ui new file mode 100644 index 00000000..1de0f38d --- /dev/null +++ b/invest-applet/data/financialchart.ui @@ -0,0 +1,1021 @@ +<?xml version="1.0"?> +<!--*- mode: xml -*--> +<interface> + <object class="GtkListStore" id="model1"> + <columns> + <column type="gchararray"/> + </columns> + <data> + <row> + <col id="0" translatable="yes">Today</col> + </row> + <row> + <col id="0" translatable="yes">5 Days</col> + </row> + <row> + <col id="0" translatable="yes">3 Months</col> + </row> + <row> + <col id="0" translatable="yes">6 Months</col> + </row> + <row> + <col id="0" translatable="yes">1 Year</col> + </row> + <row> + <col id="0" translatable="yes">5 Years</col> + </row> + <row> + <col id="0" translatable="yes">Maximum</col> + </row> + </data> + </object> + <object class="GtkListStore" id="model2"> + <columns> + <column type="gchararray"/> + </columns> + <data> + <row> + <col id="0">l</col> + </row> + <row> + <col id="0">b</col> + </row> + <row> + <col id="0">c</col> + </row> + </data> + </object> + <object class="GtkWindow" id="window"> + <property name="border_width">6</property> + <property name="visible">True</property> + <property name="title" translatable="yes">Financial Chart</property> + <property name="type">GTK_WINDOW_TOPLEVEL</property> + <property name="window_position">GTK_WIN_POS_CENTER</property> + <property name="modal">False</property> + <property name="default_height">500</property> + <property name="resizable">True</property> + <property name="destroy_with_parent">True</property> + <property name="icon_name">stock_chart</property> + <property name="decorated">True</property> + <property name="skip_taskbar_hint">False</property> + <property name="skip_pager_hint">False</property> + <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property> + <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> + <property name="focus_on_map">True</property> + <property name="urgency_hint">False</property> + <child> + <object class="GtkVBox" id="vbox1"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">6</property> + <child> + <object class="GtkHBox" id="hbox1"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">6</property> + <child> + <object class="GtkLabel" id="label1"> + <property name="visible">True</property> + <property name="label" translatable="yes">_Ticker symbol: </property> + <property name="use_underline">True</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="mnemonic_widget">s</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkEntry" id="s"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="has_focus">True</property> + <property name="editable">True</property> + <property name="visibility">True</property> + <property name="max_length">0</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">False</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="autorefresh"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + <child> + <object class="GtkAlignment" id="alignment1"> + <property name="visible">True</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xscale">0</property> + <property name="yscale">0</property> + <property name="top_padding">0</property> + <property name="bottom_padding">0</property> + <property name="left_padding">0</property> + <property name="right_padding">0</property> + <child> + <object class="GtkHBox" id="hbox5"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">2</property> + <child> + <object class="GtkImage" id="image1"> + <property name="visible">True</property> + <property name="stock">gtk-refresh</property> + <property name="icon_size">4</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label8"> + <property name="visible">True</property> + <property name="label" translatable="yes">Auto _refresh</property> + <property name="use_underline">True</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + </object> + </child> + </object> + </child> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkComboBox" id="t"> + <property name="visible">True</property> + <property name="add_tearoffs">False</property> + <property name="focus_on_click">True</property> + <property name="model">model1</property> + <child> + <object class="GtkCellRendererText" id="renderer1"/> + <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkExpander" id="expander1"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="expanded">False</property> + <property name="spacing">6</property> + <child> + <object class="GtkTable" id="table1"> + <property name="visible">True</property> + <property name="n_rows">5</property> + <property name="n_columns">2</property> + <property name="homogeneous">False</property> + <property name="row_spacing">6</property> + <property name="column_spacing">6</property> + <child> + <object class="GtkLabel" id="label3"> + <property name="visible">True</property> + <property name="label" translatable="yes">_Graph style: </property> + <property name="use_underline">True</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">1</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="mnemonic_widget">q</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkLabel" id="label4"> + <property name="visible">True</property> + <property name="label" translatable="yes" comments="see http://biz.yahoo.com/charts/guide11.html and http://en.wikipedia.org/wiki/Moving_average">Moving average: </property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">1</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkLabel" id="label5"> + <property name="visible">True</property> + <property name="label" translatable="yes" comments="see http://biz.yahoo.com/charts/guide12.html and http://en.wikipedia.org/wiki/Moving_average#Exponential_moving_average">Exponential moving average: </property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">1</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkComboBox" id="q"> + <property name="visible">True</property> + <property name="add_tearoffs">False</property> + <property name="focus_on_click">True</property> + <property name="model">model2</property> + <child> + <object class="GtkCellRendererText" id="renderer2"/> + <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="y_options">fill</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox3"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">6</property> + <child> + <object class="GtkCheckButton" id="pe5"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">5</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pe10"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">10</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pe20"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">20</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pe50"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">50</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pe100"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">100</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pe200"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">200</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">fill</property> + <property name="y_options">fill</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label6"> + <property name="visible">True</property> + <property name="label" translatable="yes" comments="see http://en.wikipedia.org/wiki/Technical_analysis#Overlays">Overlays: </property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">1</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox4"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + <child> + <object class="GtkCheckButton" id="pb"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://biz.yahoo.com/charts/guide13.html and http://en.wikipedia.org/wiki/Bollinger_bands">Bollinger</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pp"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://biz.yahoo.com/charts/guide16.html and http://en.wikipedia.org/wiki/Parabolic_SAR">SAR</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="ps"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://biz.yahoo.com/charts/guide6.html and http://en.wikipedia.org/wiki/Stock_split">Splits</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pv"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://biz.yahoo.com/charts/guide20.html and http://en.wikipedia.org/wiki/Volume_%28finance%29">Volumes</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">3</property> + <property name="bottom_attach">4</property> + <property name="x_options">fill</property> + <property name="y_options">fill</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="label7"> + <property name="visible">True</property> + <property name="label" translatable="yes" comments="see http://biz.yahoo.com/charts/guide10.html and http://en.wikipedia.org/wiki/Technical_indicator#Charting_terms_and_indicators">Indicators: </property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">1</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">4</property> + <property name="bottom_attach">5</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkTable" id="table2"> + <property name="visible">True</property> + <property name="n_rows">3</property> + <property name="n_columns">3</property> + <property name="homogeneous">False</property> + <property name="row_spacing">0</property> + <property name="column_spacing">0</property> + <child> + <object class="GtkCheckButton" id="ar"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://en.wikipedia.org/wiki/Relative_Strength_Index">RSI</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="av"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://en.wikipedia.org/wiki/Volume_%28finance%29">Vol</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="af"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://en.wikipedia.org/wiki/Money_flow_index">MFI</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="ass"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://en.wikipedia.org/wiki/Stochastic_oscillator">Slow stoch</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="avm"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://en.wikipedia.org/wiki/Volume_%28finance%29">Vol+MA</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="ap"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://en.wikipedia.org/wiki/Rate_of_change_%28technical_analysis%29">ROC</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="left_attach">2</property> + <property name="right_attach">3</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="afs"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://en.wikipedia.org/wiki/Stochastic_oscillator">Fast stoch</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="left_attach">2</property> + <property name="right_attach">3</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="aw"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://en.wikipedia.org/wiki/Williams_%25R">W%R</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="left_attach">2</property> + <property name="right_attach">3</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="am"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes" comments="Please keep this term short. For its meaning, see http://en.wikipedia.org/wiki/MACD">MACD</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_options">fill</property> + <property name="y_options"/> + </packing> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">4</property> + <property name="bottom_attach">5</property> + <property name="x_options">fill</property> + <property name="y_options">fill</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox2"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">6</property> + <child> + <object class="GtkCheckButton" id="pm5"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">5</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pm10"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">10</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pm20"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">20</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">True</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pm50"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">50</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pm100"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">100</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkCheckButton" id="pm200"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">200</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> + <property name="x_options">fill</property> + <property name="y_options">fill</property> + </packing> + </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel" id="label2"> + <property name="visible">True</property> + <property name="label" translatable="yes">_Options</property> + <property name="use_underline">True</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </object> + </child> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + <child> + <object class="GtkScrolledWindow" id="scrolledwindow1"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="hscrollbar_policy">GTK_POLICY_NEVER</property> + <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> + <property name="shadow_type">GTK_SHADOW_IN</property> + <property name="window_placement">GTK_CORNER_TOP_LEFT</property> + <child> + <object class="GtkViewport" id="plotport"> + <property name="visible">True</property> + <property name="shadow_type">GTK_SHADOW_NONE</property> + <child> + <object class="GtkImage" id="plot"> + <property name="visible">True</property> + <property name="icon_size">5</property> + <property name="icon_name">stock_chart</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + </object> + </child> + </object> + </child> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="progress"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">Downloading chart from <b>Yahoo!</b></property> + <property name="use_underline">False</property> + <property name="use_markup">True</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">True</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </object> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + </object> + </child> + </object> +</interface> diff --git a/invest-applet/data/prefs-dialog.ui b/invest-applet/data/prefs-dialog.ui new file mode 100644 index 00000000..e5998393 --- /dev/null +++ b/invest-applet/data/prefs-dialog.ui @@ -0,0 +1,236 @@ +<?xml version="1.0"?> +<interface> + <requires lib="gtk+" version="2.16"/> + <!-- interface-naming-policy toplevel-contextual --> + <object class="GtkDialog" id="preferences"> + <property name="border_width">5</property> + <property name="title" translatable="yes">Invest Preferences</property> + <property name="modal">True</property> + <property name="window_position">center</property> + <property name="default_height">450</property> + <property name="destroy_with_parent">True</property> + <property name="type_hint">dialog</property> + <property name="has_separator">False</property> + <signal name="response" handler="prefs_dialog_response_cb"/> + <child internal-child="vbox"> + <object class="GtkVBox" id="dialog-vbox2"> + <property name="visible">True</property> + <property name="spacing">2</property> + <child> + <object class="GtkVBox" id="big_box"> + <property name="visible">True</property> + <property name="border_width">5</property> + <property name="spacing">18</property> + <child> + <object class="GtkVBox" id="loaded_extensions_box"> + <property name="visible">True</property> + <child> + <object class="GtkLabel" id="explanation"> + <property name="visible">True</property> + <property name="label" translatable="yes">label</property> + <property name="use_markup">True</property> + <property name="justify">center</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="padding">12</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="stocklabel"> + <property name="visible">True</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Stocks</property> + <property name="use_underline">True</property> + <property name="justify">center</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkAlignment" id="alignment16"> + <property name="visible">True</property> + <property name="bottom_padding">18</property> + <property name="left_padding">18</property> + <child> + <object class="GtkVBox" id="vbox156"> + <property name="visible">True</property> + <property name="spacing">6</property> + <child> + <object class="GtkScrolledWindow" id="handlers"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="has_focus">True</property> + <property name="hscrollbar_policy">never</property> + <property name="vscrollbar_policy">automatic</property> + <property name="shadow_type">in</property> + <child> + <object class="GtkTreeView" id="stocks"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="reorderable">True</property> + <property name="rules_hint">True</property> + </object> + </child> + </object> + <packing> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox1"> + <property name="visible">True</property> + <property name="spacing">6</property> + <property name="homogeneous">True</property> + <child> + <object class="GtkButton" id="add"> + <property name="label">gtk-add</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkButton" id="remove"> + <property name="label">gtk-remove</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="default_info"> + <property name="visible">True</property> + <property name="xalign">0</property> + <property name="label" translatable="yes"><i><small><b>Note:</b> Quotes are delayed at least 15 minutes. +<b>Source: </b> Yahoo!</small></i></property> + <property name="use_markup">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">2</property> + </packing> + </child> + </object> + </child> + </object> + <packing> + <property name="position">2</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="currencylabel"> + <property name="visible">True</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Currency</property> + <property name="use_underline">True</property> + <property name="justify">center</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">3</property> + </packing> + </child> + <child> + <object class="GtkAlignment" id="alignment1"> + <property name="visible">True</property> + <property name="left_padding">18</property> + <child> + <object class="GtkEntry" id="currency"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="invisible_char">●</property> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="position">4</property> + </packing> + </child> + </object> + <packing> + <property name="padding">6</property> + <property name="position">0</property> + </packing> + </child> + </object> + <packing> + <property name="position">1</property> + </packing> + </child> + <child internal-child="action_area"> + <object class="GtkHButtonBox" id="dialog-action_area2"> + <property name="visible">True</property> + <property name="layout_style">end</property> + <child> + <object class="GtkButton" id="help"> + <property name="label">gtk-help</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkButton" id="close"> + <property name="label">gtk-close</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="can_default">True</property> + <property name="receives_default">False</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="pack_type">end</property> + <property name="position">0</property> + </packing> + </child> + </object> + </child> + <action-widgets> + <action-widget response="1">help</action-widget> + <action-widget response="-7">close</action-widget> + </action-widgets> + </object> +</interface> |