GEPS_014:_Plugin_registration_and_management

finish views in category, todo: configuration


svn: r13578
This commit is contained in:
Benny Malengier 2009-11-14 17:17:34 +00:00
parent d1f9d44147
commit d3fd2f150d
40 changed files with 4943 additions and 1287 deletions

View File

@ -25,7 +25,6 @@ src/ImgManip.py
src/ListModel.py
src/ManagedWindow.py
src/Navigation.py
src/PageView.py
src/PlaceUtils.py
src/QuestionDialog.py
src/QuickReports.py
@ -439,6 +438,7 @@ src/plugins/import/ImportXml.py
# plugins/lib directory
src/plugins/lib/libcairodoc.py
src/plugins/lib/libformatting.py
src/plugins/lib/libgrampsxml.py
src/plugins/lib/libgrdb.py
src/plugins/lib/libholiday.py

File diff suppressed because it is too large Load Diff

View File

@ -62,13 +62,13 @@ from QuestionDialog import ErrorDialog
import config
import Utils
from gui.pluginmanager import GuiPluginManager
from gen.plug import (VIEW_MISC, VIEW_PERSON, VIEW_REL, VIEW_FAMILY,
VIEW_EVENT, VIEW_PLACE, VIEW_SOURCE, VIEW_REPO, VIEW_MEDIA,
VIEW_NOTE, VIEW_GEO)
from gen.plug import (VIEW_MISC, VIEW_PERSON, VIEW_REL, VIEW_FAMILY,
VIEW_EVENT, VIEW_PLACE, VIEW_GEO, VIEW_SOURCE, VIEW_REPO,
VIEW_MEDIA, VIEW_NOTE)
DEFAULT_SIDEBAR_ORDER = (VIEW_MISC, VIEW_PERSON, VIEW_REL, VIEW_FAMILY,
VIEW_EVENT, VIEW_PLACE, VIEW_SOURCE, VIEW_REPO, VIEW_MEDIA,
VIEW_NOTE, VIEW_GEO)
VIEW_EVENT, VIEW_PLACE, VIEW_GEO, VIEW_SOURCE, VIEW_REPO,
VIEW_MEDIA, VIEW_NOTE)
#-------------------------------------------------------------------------
#
# Functions
@ -112,11 +112,12 @@ def register_stock_icons ():
#('gramps-bookmark', _('Bookmarks'), gtk.gdk.CONTROL_MASK, 0, ''),
#('gramps-bookmark-delete', _('Delete bookmark'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-bookmark-edit', _('Organize Bookmarks'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-bookmark-new', _('Add Bookmark'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-config', _('Configure'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-date', _('Date'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-date-edit', _('Edit Date'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-event', _('Events'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-family', _('Family'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-fanchart', _('Fan Chart'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-font', _('Font'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-font-color', _('Font Color'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-font-bgcolor', _('Font Background Color'), gtk.gdk.CONTROL_MASK, 0, ''),
@ -137,8 +138,11 @@ def register_stock_icons ():
('gramps-reports', _('Reports'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-repository', _('Repositories'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-source', _('Sources'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-spouse', _('Add Spouse'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-tools', _('Tools'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-spouse', _('Add Spouse'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-tools', _('Tools'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-tree-group', _('Grouped List'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-tree-list', _('List'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-tree-select', _('Select'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-unlock', _('Private'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-viewmedia', _('View'), gtk.gdk.CONTROL_MASK, 0, ''),
('gramps-zoom-in', _('Zoom In'), gtk.gdk.CONTROL_MASK, 0, ''),

View File

@ -116,10 +116,13 @@ UIDEFAULT = '''<ui>
<menuitem action="Preferences"/>
</menu>
<menu action="ViewMenu">
<menuitem action="ConfigView"/>
<menuitem action="Sidebar"/>
<menuitem action="Toolbar"/>
<menuitem action="Filter"/>
<menuitem action="Fullscreen"/>
<menuitem action="Fullscreen"/>
<separator/>
<placeholder name="ViewsInCategory"/>
<separator/>
</menu>
<menu action="GoMenu">
@ -156,11 +159,15 @@ UIDEFAULT = '''<ui>
<toolbar name="ToolBar">
<placeholder name="CommonNavigation"/>
<separator/>
<toolitem action="ScratchPad"/>
<toolitem action="Reports"/>
<toolitem action="Tools"/>
<toolitem action="ScratchPad"/>
<toolitem action="Reports"/>
<toolitem action="Tools"/>
<separator/>
<placeholder name="CommonEdit"/>
<separator/>
<placeholder name="ViewsInCategory"/>
<separator/>
<toolitem action="ConfigView"/>
</toolbar>
<accelerator action="F2"/>
<accelerator action="F3"/>
@ -179,6 +186,20 @@ UIDEFAULT = '''<ui>
</ui>
'''
UICATEGORY = '''<ui>
<menubar name="MenuBar">
<menu action="ViewMenu">
<placeholder name="ViewsInCategory">%s
</placeholder>
</menu>
</menubar>
<toolbar name="ToolBar">
<placeholder name="ViewsInCategory">%s
</placeholder>
</toolbar>
</ui>
'''
WIKI_HELP_PAGE_FAQ = '%s_-_FAQ' % const.URL_MANUAL_PAGE
WIKI_HELP_PAGE_KEY = '%s_-_Keybindings' % const.URL_MANUAL_PAGE
WIKI_HELP_PAGE_MAN = '%s' % const.URL_MANUAL_PAGE
@ -395,7 +416,7 @@ class ViewManager(CLIManager):
connects the signals needed
"""
self.window.connect('delete-event', self.quit)
self.notebook.connect('switch-page', self.change_page)
self.notebook.connect('switch-page', self.change_category)
def __init_lists(self):
"""
@ -477,7 +498,10 @@ class ViewManager(CLIManager):
_("Open the tools dialog"), self.tools_clicked),
('EditMenu', None, _('_Edit')),
('BookMenu', None, _('_Bookmarks')),
('ToolsMenu', None, _('_Tools')),
('ToolsMenu', None, _('_Tools')),
('ConfigView', 'gramps-config', _('_Configure View...'),
'<shift><control>c', _('Configure the active view'),
self.config_view),
]
self._file_toggle_action_list = [
@ -488,7 +512,7 @@ class ViewManager(CLIManager):
('Filter', None, _('_Filter Sidebar'), None, None,
filter_toggle, self.show_filter),
('Fullscreen', None, _('F_ull Screen'), "F11", None,
self.fullscreen_toggle, self.fullscreen),
self.fullscreen_toggle, self.fullscreen),
]
self._undo_action_list = [
@ -811,6 +835,22 @@ class ViewManager(CLIManager):
self.window.unfullscreen()
config.set('interface.fullscreen', False)
config.save()
def view_toggle(self, radioaction, current, category_page):
"""
Go to the views in category_page, with in category: view_page
The view has id id_page
This is the only method that can call change of views in a category
"""
self.__vb_handlers_block()
if self.notebook.get_current_page() != category_page:
raise Error, 'Error changing view, category is not active'
cat_notebook = self.notebook_cat[category_page]
view_page = radioaction.get_current_value()
if self.notebook_cat[category_page].get_current_page() != view_page:
self.notebook_cat[category_page].set_current_page(view_page)
self.__change_view(category_page, view_page)
self.__vb_handlers_unblock()
def __switch_page_on_dnd(self, widget, context, xpos, ypos, time, page_no):
"""
@ -835,6 +875,9 @@ class ViewManager(CLIManager):
"""
self.pages = []
self.prev_nav = PageView.NAVIGATION_NONE
self.ui_category = {}
self.view_toggle_actions = {}
self.cat_view_group = None
use_text = config.get('interface.sidebar-text')
@ -842,14 +885,17 @@ class ViewManager(CLIManager):
for cat_views in self.views:
#for every category, we create a button in the sidebar and a main
#workspace in which to show the view
first = True
nr_views = len(cat_views)
uimenuitems = ''
uitoolitems = ''
self.view_toggle_actions[index] = []
self.pages.append([])
nrpage = 0
for id, page_def in cat_views:
page = page_def(self.dbstate, self.uistate)
page_title = page.get_title()
page_stock = page.get_stock()
if first:
if nrpage == 0:
#the first page of this category, used to obtain
#category workspace notebook
notebook = gtk.Notebook()
@ -874,7 +920,6 @@ class ViewManager(CLIManager):
button = self.__make_sidebar_button(use_text, index,
page_title, page_stock)
index += 1
self.bbox.pack_start(button, False)
self.buttons.append(button)
@ -891,13 +936,37 @@ class ViewManager(CLIManager):
page_no = self.notebook_cat[-1].append_page(page_display,
gtk.Label(page_title))
self.pages[-1].append(page)
pageid = (id + '_%i' % nrpage)
uimenuitems += '\n<menuitem action="%s"/>' % pageid
uitoolitems += '\n<toolitem action="%s"/>' % pageid
self.view_toggle_actions[index].append((pageid,
page.get_viewtype_stock(),
page_title, '<CONTROL>%i' % (nrpage+1), page_title,
nrpage))
first = False
nrpage += 1
if nr_views > 1:
#allow for switching views in a category
self.ui_category[index] = UICATEGORY % (uimenuitems,
uitoolitems)
index += 1
current_cat, current_cat_view = self.__view_to_show(
config.get('preferences.use-last-view'))
self.active_page = self.pages[current_cat][current_cat_view]
self.buttons[current_cat].set_active(True)
self.active_page.set_active()
self.notebook.set_current_page(current_cat)
self.notebook_cat[current_cat].set_current_page(current_cat_view)
def __view_to_show(self, use_last = True):
"""
Determine based on preference setting which view should be shown
"""
current_cat = 0
current_cat_view = 0
use_current = config.get('preferences.use-last-view')
if use_current:
if use_last:
current_page_id = config.get('preferences.last-view')
found = False
for cat_views in self.views:
@ -914,12 +983,7 @@ class ViewManager(CLIManager):
if not found:
current_cat = 0
current_cat_view = 0
self.active_page = self.pages[current_cat][current_cat_view]
self.buttons[current_cat].set_active(True)
self.active_page.set_active()
self.notebook.set_current_page(current_cat)
self.notebook_cat[current_cat].set_current_page(current_cat_view)
return current_cat, current_cat_view
def __make_sidebar_button(self, use_text, index, page_title, page_stock):
"""
@ -1011,10 +1075,13 @@ class ViewManager(CLIManager):
self.active_page.set_inactive()
groups = self.active_page.get_actions()
for grp in groups:
if grp in self.uimanager.get_action_groups():
if grp in self.uimanager.get_action_groups():
self.uimanager.remove_action_group(grp)
if self.cat_view_group:
if self.cat_view_group in self.uimanager.get_action_groups():
self.uimanager.remove_action_group(self.cat_view_group)
def __connect_active_page(self):
def __connect_active_page(self, category_page, view_page):
"""
Inserts the action groups associated with the current page
into the UIManager
@ -1028,6 +1095,18 @@ class ViewManager(CLIManager):
for uidef in self.active_page.additional_ui_definitions():
mergeid = self.uimanager.add_ui_from_string(uidef)
self.merge_ids.append(mergeid)
if category_page in self.ui_category:
#add entries for the different views in the category
self.cat_view_group = gtk.ActionGroup('categoryviews')
self.cat_view_group.add_radio_actions(
self.view_toggle_actions[category_page], value=view_page,
on_change=self.view_toggle, user_data=category_page)
self.cat_view_group.set_sensitive(True)
self.uimanager.insert_action_group(self.cat_view_group, 1)
mergeid = self.uimanager.add_ui_from_string(self.ui_category[
category_page])
self.merge_ids.append(mergeid)
def __setup_navigation(self):
"""
@ -1042,38 +1121,56 @@ class ViewManager(CLIManager):
if nav_type[0] is not None:
nav_type[0].enable()
def change_page(self, obj, page, num=-1):
def change_category(self, obj, page, num=-1):
"""
Wrapper for the __do_change_page, to prevent entering into the
Wrapper for the __do_change_category, to prevent entering into the
routine while already in it.
"""
if not self.page_is_changing:
self.page_is_changing = True
self.__do_change_page(num)
self.__do_change_category(num)
self.page_is_changing = False
def __do_change_page(self, num):
def __do_change_category(self, num):
"""
Change the page to the new page
Change the category to the new category
"""
if num == -1:
num = self.notebook.get_current_page()
num_view = self.notebook_cat[num].get_current_page()
# set button of current page active
self.__set_active_button(num)
# now do view specific change
self.__change_view(num)
def __change_view(self, category_page, view_page=-1):
"""
Change a view in a category.
:Param category_page: the category number the view is in
:Type category_page: integer >= 0
:Param view_page: the view page number to switch to. If -1 is passed
the currently already active view in the category is switched to.
Use this when a category changes.
:Type view_page: integer >=0 to switch to a specific page, or -1 to
switch to the active view in the category
"""
if view_page == -1:
#just show active one
view_page = self.notebook_cat[category_page].get_current_page()
if self.dbstate.open:
self.__disconnect_previous_page()
if len(self.pages) > 0:
self.active_page = self.pages[num][num_view]
self.active_page = self.pages[category_page][view_page]
self.active_page.set_active()
config.set('preferences.last-view', self.views[num][num_view][0])
config.set('preferences.last-view',
self.views[category_page][view_page][0])
config.save()
self.__setup_navigation()
self.__connect_active_page()
self.__connect_active_page(category_page, view_page)
self.uimanager.ensure_update()
@ -1161,7 +1258,7 @@ class ViewManager(CLIManager):
self.setup_bookmarks()
self.change_page(None, None)
self.change_category(None, None)
self.actiongroup.set_visible(True)
self.readonlygroup.set_visible(True)
@ -1286,6 +1383,12 @@ class ViewManager(CLIManager):
except Errors.WindowActiveError:
return
def config_view(self, obj):
"""
Displays the configuration dialog for the active view
"""
pass
def undo(self, obj):
"""
Calls the undo function on the database

View File

@ -306,6 +306,11 @@ class ListView(NavigationView):
self.search_bar.show()
self.filter_pane.hide()
def get_viewtype_stock(self):
"""Type of view in category, default listview is a flat list
"""
return 'gramps-tree-list'
def filter_clicked(self):
self.generic_filter = self.filter_sidebar.get_filter()
self.build_tree()

View File

@ -161,11 +161,18 @@ class PageView(DbGUIElement):
def get_stock(self):
"""
Return image associated with the view, which is used for the
Return image associated with the view category, which is used for the
icon for the button.
"""
return gtk.STOCK_MISSING_IMAGE
def get_viewtype_stock(self):
"""
Return immage associated with the viewtype inside a view category, it
will be used for the icon on the button to select view in the category
"""
return gtk.STOCK_MISSING_IMAGE
def get_title(self):
"""
Return the title of the view. This is used to define the text for the

View File

@ -38,6 +38,9 @@ dist_pkgdata_DATA = \
gramps-source.png \
gramps-spouse.png \
gramps-tools.png \
gramps-tree-group.png \
gramps-tree-list.png \
gramps-tree-select.png \
gramps-unlock.png \
gramps-viewmedia.png \
gramps-zoom-best-fit.png \

Binary file not shown.

After

Width:  |  Height:  |  Size: 555 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 753 B

View File

@ -0,0 +1,297 @@
<?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="48px"
height="48px"
id="svg4198"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
sodipodi:docname="gramps-tree-group.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/cristina/programs/gramps/trunk/src/images/16x16/gramps-tree-group.png"
inkscape:export-xdpi="30"
inkscape:export-ydpi="30">
<defs
id="defs4200">
<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="perspective37" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5031"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5029"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5027"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
inkscape:collect="always"
id="linearGradient3558">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3560" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3562" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3558"
id="radialGradient3564"
cx="22.571428"
cy="30.857143"
fx="22.571428"
fy="30.857143"
r="15.571428"
gradientTransform="matrix(1.000000,0.000000,0.000000,0.651376,4.638648e-15,10.75754)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient15218">
<stop
style="stop-color:#f8f8f7;stop-opacity:1;"
offset="0"
id="stop15220" />
<stop
id="stop2269"
offset="0.59928656"
style="stop-color:#e8e8e8;stop-opacity:1;" />
<stop
style="stop-color:#e2e2de;stop-opacity:1;"
offset="1"
id="stop15222" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient15218"
id="linearGradient2240"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.342704,0.000000,0.000000,1.235378,-8.219611,-6.577189)"
x1="20.794008"
y1="18.378813"
x2="35.596001"
y2="39.60046" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#bebebe"
borderopacity="1.0000000"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="25.70605"
inkscape:cy="24.096559"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1280"
inkscape:window-height="818"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:showpageshadow="false" />
<metadata
id="metadata4203">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>tree list</dc:title>
<dc:date>2005-10-29</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengier</dc:title>
</cc:Agent>
</dc:creator>
<dc:subject>
<rdf:Bag>
<rdf:li>justify</rdf:li>
<rdf:li>left</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
<dc:description>based on justify, left, Andreas Nilsson</dc:description>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="opacity:1;fill:url(#linearGradient2240);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976000000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4238"
width="38.996792"
height="45.003101"
x="4.5016017"
y="1.4968988"
rx="0.56650788"
ry="0.56650823" />
<rect
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2245"
width="37.025566"
height="43.022316"
x="5.4997125"
y="2.4997177"
rx="0"
ry="0" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect4248"
width="8.8803883"
height="2.0883884"
x="12.59967"
y="4.4184818" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3520"
width="8.8803883"
height="2.0883884"
x="12.59967"
y="12.791389" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3526"
width="8.8803883"
height="2.0883884"
x="12.59967"
y="21.164295" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3528"
width="14.537242"
height="2.0883884"
x="24.383087"
y="21.164295" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3532"
width="8.8803883"
height="2.0883884"
x="12.59967"
y="29.537203" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3534"
width="14.448853"
height="2.0883884"
x="24.471478"
y="29.537203" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3538"
width="8.8803883"
height="2.0883884"
x="12.59967"
y="37.91011" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3540"
width="14.360465"
height="2.0883884"
x="24.559864"
y="37.91011" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.41262874px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 8.2799839,4.7825066 L 8.2799839,5.6350426 L 8.7418559,5.2314256 L 8.2799839,4.7825066 z"
id="path4354" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.41262874px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 8.8231618,13.143371 L 7.9706258,13.143371 L 8.3742428,13.605243 L 8.8231618,13.143371 z"
id="path4356" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.4, 0.4;stroke-dashoffset:0;stroke-opacity:1"
d="M 8.308505,14.700133 L 8.308505,38.875201 L 11.63433,38.875201"
id="path4362"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.4, 0.4;stroke-dashoffset:0;stroke-opacity:1"
d="M 8.2201166,30.51124 L 11.545942,30.51124"
id="path4364"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.4, 0.4;stroke-dashoffset:0;stroke-opacity:1"
d="M 8.308505,22.036365 L 11.545942,22.036365"
id="path4366"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,290 @@
<?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="48px"
height="48px"
id="svg4198"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
sodipodi:docname="gramps-tree-list.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/cristina/programs/gramps/trunk/src/images/16x16/gramps-tree-list.png"
inkscape:export-xdpi="30"
inkscape:export-ydpi="30">
<defs
id="defs4200">
<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="perspective37" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5031"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5029"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5027"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
inkscape:collect="always"
id="linearGradient3558">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3560" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3562" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3558"
id="radialGradient3564"
cx="22.571428"
cy="30.857143"
fx="22.571428"
fy="30.857143"
r="15.571428"
gradientTransform="matrix(1.000000,0.000000,0.000000,0.651376,4.638648e-15,10.75754)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient15218">
<stop
style="stop-color:#f8f8f7;stop-opacity:1;"
offset="0"
id="stop15220" />
<stop
id="stop2269"
offset="0.59928656"
style="stop-color:#e8e8e8;stop-opacity:1;" />
<stop
style="stop-color:#e2e2de;stop-opacity:1;"
offset="1"
id="stop15222" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient15218"
id="linearGradient2240"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.342704,0.000000,0.000000,1.235378,-8.219611,-6.577189)"
x1="20.794008"
y1="18.378813"
x2="35.596001"
y2="39.60046" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#bebebe"
borderopacity="1.0000000"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="7.4736419"
inkscape:cy="24.096559"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1280"
inkscape:window-height="818"
inkscape:window-x="78"
inkscape:window-y="115"
inkscape:showpageshadow="false" />
<metadata
id="metadata4203">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>tree list</dc:title>
<dc:date>2005-10-29</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengier</dc:title>
</cc:Agent>
</dc:creator>
<dc:subject>
<rdf:Bag>
<rdf:li>justify</rdf:li>
<rdf:li>left</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
<dc:description>based on justify, left, Andreas Nilsson</dc:description>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="opacity:1;fill:url(#linearGradient2240);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4238"
width="38.996792"
height="45.003101"
x="4.5016017"
y="1.4968988"
rx="0.56650788"
ry="0.56650823" />
<rect
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2245"
width="37.025566"
height="43.022316"
x="5.4997125"
y="2.4997177"
rx="0"
ry="0" />
<g
id="g3514"
transform="translate(-4.6775752e-2,-1.9999986)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect4248"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3512"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3524"
transform="translate(-4.6775752e-2,8.412481)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3526"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3528"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3536"
transform="translate(-4.6775752e-2,18.824958)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3538"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3540"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3548"
transform="translate(-4.6775752e-2,29.237437)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3550"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3552"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,379 @@
<?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="48px"
height="48px"
id="svg4198"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
sodipodi:docname="gramps-tree-select.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/cristina/programs/gramps/trunk/src/images/16x16/gramps-tree-select.png"
inkscape:export-xdpi="30"
inkscape:export-ydpi="30">
<defs
id="defs4200">
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
id="linearGradient9977"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,34.751323,26.539682)"
x1="8.7275133"
y1="7.8306885"
x2="22.679893"
y2="14.095237" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
id="linearGradient9975"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,25.0582,1.7354494)"
x1="-6.6627526"
y1="20.072517"
x2="6.8253312"
y2="13.903621" />
<linearGradient
id="linearGradient7989">
<stop
id="stop7991"
offset="0"
style="stop-color:#e2e2e2;stop-opacity:0.94845361;" />
<stop
id="stop7993"
offset="1"
style="stop-color:#ffffff;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
id="linearGradient9973"
gradientUnits="userSpaceOnUse"
x1="4.8333335"
y1="14.349207"
x2="15.314814"
y2="22.814814" />
<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="perspective37" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5031"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5029"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5027"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
inkscape:collect="always"
id="linearGradient3558">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3560" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3562" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3558"
id="radialGradient3564"
cx="22.571428"
cy="30.857143"
fx="22.571428"
fy="30.857143"
r="15.571428"
gradientTransform="matrix(1.000000,0.000000,0.000000,0.651376,4.638648e-15,10.75754)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient15218">
<stop
style="stop-color:#f8f8f7;stop-opacity:1;"
offset="0"
id="stop15220" />
<stop
id="stop2269"
offset="0.59928656"
style="stop-color:#e8e8e8;stop-opacity:1;" />
<stop
style="stop-color:#e2e2de;stop-opacity:1;"
offset="1"
id="stop15222" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient15218"
id="linearGradient2240"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.342704,0.000000,0.000000,1.235378,-8.219611,-6.577189)"
x1="20.794008"
y1="18.378813"
x2="35.596001"
y2="39.60046" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#bebebe"
borderopacity="1.0000000"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="7.4347744"
inkscape:cy="24.096559"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1280"
inkscape:window-height="818"
inkscape:window-x="101"
inkscape:window-y="91"
inkscape:showpageshadow="false" />
<metadata
id="metadata4203">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>tree list select</dc:title>
<dc:date>2005-10-29</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengier</dc:title>
</cc:Agent>
</dc:creator>
<dc:subject>
<rdf:Bag>
<rdf:li>justify</rdf:li>
<rdf:li>left</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by/3.0/" />
<dc:description>based on justify, left, Andreas Nilsson, and gramps-parents-open</dc:description>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="opacity:1;fill:url(#linearGradient2240);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4238"
width="38.996792"
height="45.003101"
x="4.5016017"
y="1.4968988"
rx="0.56650788"
ry="0.56650823" />
<rect
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2245"
width="37.025566"
height="43.022316"
x="5.4997125"
y="2.4997177"
rx="0"
ry="0" />
<g
id="g3514"
transform="translate(-4.6775752e-2,-1.9999986)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect4248"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3512"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3524"
transform="translate(-4.6775752e-2,8.412481)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3526"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3528"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3536"
transform="translate(-4.6775752e-2,18.824958)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3538"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3540"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3548"
transform="translate(-4.6775752e-2,29.237437)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3550"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3552"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
style="opacity:1;display:inline"
id="g9963"
transform="matrix(0.8956025,0,0,1.1701103,0.7973379,-1.948005)">
<path
sodipodi:nodetypes="ccccccccc"
id="path7979"
d="M 24.126984,5.5873016 L 31.830688,23.78836 L 18.962963,30.433863 L 14.47619,30.26455 L 7.5343915,24.042328 L 0.33862434,4.1481481 L 9.6507937,12.952381 L 12.275133,13.037037 L 24.126984,5.5873016 z"
style="fill:#3467c1;fill-opacity:1;fill-rule:evenodd;stroke:#114fb7;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccccsc"
id="path7977"
d="M 19.047619,29.62963 C 19.89418,29.079366 30.814814,23.492063 30.814814,23.492063 L 23.703704,6.6031746 L 12.698413,13.883598 L 9.9894183,13.798942 L 1.4391534,5.5873016 L 7.957672,23.280423 C 7.957672,23.280423 14.645503,29.544974 15.068783,29.544974 C 15.492063,29.544974 18.243386,29.62963 19.047619,29.62963 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#4f88d4;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
id="path7002"
d="M 11.174603,13.460317 L 1.8624339,5.5873016 L 8.4656085,23.195768 L 15.322751,29.037037 L 17.523809,29.206349 L 11.174603,13.460317 z"
style="fill:url(#linearGradient9973);fill-opacity:1;fill-rule:evenodd;stroke:#8d9ac9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
id="path8003"
d="M 11.25926,13.502645 L 23.026454,6.0529102 L 30.222222,23.322752 L 18.793652,29.037037 L 17.439154,29.206349 L 11.25926,13.502645 z"
style="fill:url(#linearGradient9975);fill-opacity:1;fill-rule:evenodd;stroke:#8d9ac9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
id="path9957"
d="M 10.476191,13.671958 L 16.21164,28.486772 L 15.57672,28.31746 L 9.1428571,22.899471 L 3.1746032,7.4074074 L 10.476191,13.671958 z"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
id="path9961"
d="M 22.666667,6.9841274 L 29.333333,22.899471 L 18.328042,28.444445 L 12.74074,13.883599 L 22.666667,6.9841274 z"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
id="path8015"
d="M 17.227514,29.037038 L 23.915344,18.243386 L 17.227513,2.6666659 L 11.132275,13.121694 L 17.227514,29.037038 z"
style="fill:url(#linearGradient9977);fill-opacity:1;fill-rule:evenodd;stroke:#8d9ac9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
id="path9959"
d="M 17.20635,4.0634929 L 23.365079,18.328042 L 17.354498,27.640212 L 11.89418,13.079366 L 17.20635,4.0634929 z"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -38,6 +38,9 @@ dist_pkgdata_DATA = \
gramps-source.png \
gramps-spouse.png \
gramps-tools.png \
gramps-tree-group.png \
gramps-tree-list.png \
gramps-tree-select.png \
gramps-unlock.png \
gramps-viewmedia.png \
gramps-zoom-best-fit.png \

Binary file not shown.

After

Width:  |  Height:  |  Size: 776 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 749 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -11,10 +11,12 @@ dist_pkgdata_DATA = \
gramps-bookmark-edit.png \
gramps-bookmark-new.png \
gramps-bookmark.png \
gramps-config.png \
gramps-date-edit.png \
gramps-date.png \
gramps-event.png \
gramps-family.png \
gramps-fanchart.png \
gramps-font-bgcolor.png \
gramps-font-color.png \
gramps-font.png \
@ -38,7 +40,11 @@ dist_pkgdata_DATA = \
gramps-source.png \
gramps-spouse.png \
gramps-tools.png \
gramps-tree-group.png \
gramps-tree-list.png \
gramps-tree-select.png \
gramps-unlock.png \
gramps-view.png \
gramps-viewmedia.png \
gramps-zoom-best-fit.png \
gramps-zoom-fit-width.png \

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -11,10 +11,12 @@ dist_pkgdata_DATA = \
gramps-bookmark-edit.svg \
gramps-bookmark-new.svg \
gramps-bookmark.svg \
gramps-config.png \
gramps-date-edit.svg \
gramps-date.svg \
gramps-event.svg \
gramps-family.svg \
gramps-fanchart.png \
gramps-font-bgcolor.svg \
gramps-font-color.svg \
gramps-font.svg \
@ -38,7 +40,11 @@ dist_pkgdata_DATA = \
gramps-source.svg \
gramps-spouse.svg \
gramps-tools.svg \
gramps-tree-group.png \
gramps-tree-list.png \
gramps-tree-select.png \
gramps-unlock.svg \
gramps-view.svg \
gramps-viewmedia.svg \
gramps-zoom-best-fit.svg \
gramps-zoom-fit-width.svg \

View File

@ -0,0 +1,864 @@
<?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"
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
inkscape:export-filename="/home/cristina/programs/gramps/trunk/src/images/48x48/gramps-config.png"
width="48px"
height="48px"
id="svg11300"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/categories"
sodipodi:docname="gramps-config.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs3">
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient1652"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,34.82518,32.41473)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient1655"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,34.22831,30.17501)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient1641"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,34.82518,19.99951)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient1644"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,34.22831,17.75979)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient1630"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,34.82518,7.584291)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient1633"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,34.22831,5.344571)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient1619"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,34.82518,-4.83093)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient1622"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,34.22831,-7.07065)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient1608"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,17.51013,25.82351)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient1611"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,16.91326,23.58379)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient1597"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,17.51013,1.70799)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient1600"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,16.91326,-0.53173)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
id="linearGradient3040">
<stop
style="stop-color:white;stop-opacity:1;"
offset="0"
id="stop3042" />
<stop
style="stop-color:white;stop-opacity:0;"
offset="1"
id="stop3044" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient1586"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,1.330573,13.66761)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
id="linearGradient3048">
<stop
style="stop-color:#564238;stop-opacity:1;"
offset="0"
id="stop3050" />
<stop
style="stop-color:#a97f43;stop-opacity:1;"
offset="1"
id="stop3052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient1589"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,0.733697,11.42789)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
id="linearGradient3832">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3834" />
<stop
style="stop-color:#e0e0e0;stop-opacity:1;"
offset="1"
id="stop3836" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3832"
id="linearGradient3838"
x1="17.88068"
y1="11.072588"
x2="17.88068"
y2="21.767578"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-0.441941)" />
<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="perspective60" />
<linearGradient
inkscape:collect="always"
id="linearGradient2250">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2252" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop2254" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2265">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop2267" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop2269" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2257">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2259" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop2261" />
</linearGradient>
<linearGradient
id="linearGradient3087">
<stop
style="stop-color:#3465a4;stop-opacity:1;"
offset="0"
id="stop3089" />
<stop
id="stop3095"
offset="0"
style="stop-color:#9fbce1;stop-opacity:1;" />
<stop
style="stop-color:#6b95ca;stop-opacity:1;"
offset="0"
id="stop2242" />
<stop
id="stop2244"
offset="0.75"
style="stop-color:#3d6aa5;stop-opacity:1;" />
<stop
style="stop-color:#386eb4;stop-opacity:1;"
offset="1"
id="stop3091" />
</linearGradient>
<linearGradient
id="linearGradient3077">
<stop
style="stop-color:#98a0a9;stop-opacity:1;"
offset="0"
id="stop3079" />
<stop
style="stop-color:#c3d0dd;stop-opacity:1;"
offset="1"
id="stop3081" />
</linearGradient>
<linearGradient
id="linearGradient3061">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3063" />
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="1"
id="stop3065" />
</linearGradient>
<linearGradient
id="linearGradient3049">
<stop
style="stop-color:#b6b6b6;stop-opacity:1;"
offset="0"
id="stop3051" />
<stop
id="stop2262"
offset="0.5"
style="stop-color:#f2f2f2;stop-opacity:1;" />
<stop
style="stop-color:#fafafa;stop-opacity:1;"
offset="0.67612958"
id="stop2264" />
<stop
id="stop2268"
offset="0.84051722"
style="stop-color:#d8d8d8;stop-opacity:1;" />
<stop
id="stop2266"
offset="0.875"
style="stop-color:#f2f2f2;stop-opacity:1;" />
<stop
style="stop-color:#dbdbdb;stop-opacity:1;"
offset="1"
id="stop3053" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3041">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3043" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3045" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3041"
id="radialGradient3047"
cx="24.8125"
cy="39.125"
fx="24.8125"
fy="39.125"
r="17.6875"
gradientTransform="matrix(1,0,0,0.374558,0,24.47041)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3049"
id="linearGradient3055"
x1="19.648342"
y1="42.253601"
x2="20.631224"
y2="6.7758031"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781242,0,0,0.5781242,18.403053,19.358231)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3061"
id="linearGradient3067"
x1="50.152931"
y1="-3.6324477"
x2="25.291086"
y2="-4.3002653"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781241,1.5114326e-8,-1.5114326e-8,0.5781241,26.70774,0.3313471)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3077"
id="linearGradient3083"
x1="38.227654"
y1="13.602527"
x2="37.53537"
y2="6.6285896"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781242,0,0,0.5781242,18.607451,19.767027)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3087"
id="linearGradient3093"
x1="9.7503242"
y1="32.28376"
x2="16.915297"
y2="39.443218"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781242,0,0,0.5781242,18.403053,19.358231)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2257"
id="linearGradient2263"
x1="12.004697"
y1="35.688461"
x2="10.650805"
y2="33.194965"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6630284,-1.7355022e-2,1.7355022e-2,0.6630284,17.78194,16.140366)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2265"
id="linearGradient2271"
x1="14.017542"
y1="36.942543"
x2="15.415793"
y2="38.268368"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5780117,-1.1403384e-2,1.1403384e-2,0.5780117,18.157326,18.765946)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2250"
id="linearGradient2256"
x1="31.177404"
y1="19.821514"
x2="40.859177"
y2="9.6568537"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6582534,0,0,0.6582534,16.733072,16.088238)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3041"
id="radialGradient2260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.374558,0,24.47041)"
cx="24.8125"
cy="39.125"
fx="24.8125"
fy="39.125"
r="17.6875" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3041"
id="radialGradient6612"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.374558,0,24.47041)"
cx="24.8125"
cy="39.125"
fx="24.8125"
fy="39.125"
r="17.6875" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3041"
id="radialGradient6614"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.374558,0,24.47041)"
cx="24.8125"
cy="39.125"
fx="24.8125"
fy="39.125"
r="17.6875" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3049"
id="linearGradient6616"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781242,0,0,0.5781242,18.403053,19.358231)"
x1="19.648342"
y1="42.253601"
x2="20.631224"
y2="6.7758031" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3061"
id="linearGradient6618"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781241,1.5114326e-8,-1.5114326e-8,0.5781241,26.70774,0.3313471)"
x1="50.152931"
y1="-3.6324477"
x2="25.291086"
y2="-4.3002653" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3077"
id="linearGradient6620"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781242,0,0,0.5781242,18.607451,19.767027)"
x1="38.227654"
y1="13.602527"
x2="37.53537"
y2="6.6285896" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2250"
id="linearGradient6622"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6582534,0,0,0.6582534,16.733072,16.088238)"
x1="31.177404"
y1="19.821514"
x2="40.859177"
y2="9.6568537" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3087"
id="linearGradient6624"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781242,0,0,0.5781242,18.403053,19.358231)"
x1="9.7503242"
y1="32.28376"
x2="16.915297"
y2="39.443218" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2257"
id="linearGradient6626"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6630284,-1.7355022e-2,1.7355022e-2,0.6630284,17.78194,16.140366)"
x1="12.004697"
y1="35.688461"
x2="10.650805"
y2="33.194965" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2265"
id="linearGradient6628"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5780117,-1.1403384e-2,1.1403384e-2,0.5780117,18.157326,18.765946)"
x1="14.017542"
y1="36.942543"
x2="15.415793"
y2="38.268368" />
</defs>
<sodipodi:namedview
stroke="#204a87"
fill="#3465a4"
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="0.25490196"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="7.3937143"
inkscape:cy="25.90748"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:showpageshadow="false"
inkscape:window-width="1034"
inkscape:window-height="818"
inkscape:window-x="359"
inkscape:window-y="30" />
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengi</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://jimmac.musichall.cz</dc:source>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by/3.0/" />
<dc:title>Config view gramps</dc:title>
<dc:subject>
<rdf:Bag>
<rdf:li>preferences</rdf:li>
<rdf:li>settings</rdf:li>
<rdf:li>control panel</rdf:li>
<rdf:li>tweaks</rdf:li>
<rdf:li>system</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:description>Based on icons of Jakub Steiner, http://jimmac.musichall.cz/</dc:description>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
id="g3822"
transform="matrix(2.26737,0,0,2.26737,-10.422637,-14.964283)">
<rect
ry="1.1061544"
rx="1.1061546"
y="7.5499992"
x="5.5"
height="15.884013"
width="16.086679"
id="rect3818"
style="opacity:1;fill:url(#linearGradient3838);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
ry="0.22227083"
rx="0.22227085"
y="9"
x="7"
height="2"
width="13"
id="rect3820"
style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g1882"
transform="matrix(0.6754595,0,0,0.4847519,3.9756023,11.614163)">
<rect
ry="39.809116"
rx="2.458369"
y="20.110189"
x="1.4279501"
height="7.1999536"
width="11.941131"
id="rect1862"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient1589);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="21.062389"
x="2.1631713"
height="5.2430906"
width="10.156818"
id="rect3038"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient1586);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path5908"
d="M 13.914813,23.727545 L 15.79802,23.727545 L 15.79802,11.591317 L 17.053492,11.591317"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
id="path5910"
d="M 13.914813,23.649618 L 15.79802,23.649618 L 15.79802,35.785846 L 17.053492,35.785846"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccc"
id="path5912"
d="M 29.922078,11.172827 L 31.805285,11.172827 L 31.805285,17.309055 L 34.420851,17.309055"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccc"
id="path5914"
d="M 29.922078,36.143584 L 31.805285,36.143584 L 31.805285,42.279812 L 34.420851,42.279812"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccc"
id="path5916"
d="M 29.922078,11.170373 L 31.805285,11.170373 L 31.805285,5.0341468 L 34.420851,5.0341468"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccc"
id="path5918"
d="M 29.922078,36.107074 L 31.805285,36.107074 L 31.805285,29.970847 L 34.420851,29.970847"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="8.150569"
x="17.60751"
height="7.1999536"
width="11.941131"
id="rect6008"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient1600);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="9.1027689"
x="18.342731"
height="5.2430906"
width="10.156818"
id="rect6010"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient1597);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="32.26609"
x="17.60751"
height="7.1999536"
width="11.941131"
id="rect6036"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient1611);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="33.218288"
x="18.342731"
height="5.2430906"
width="10.156818"
id="rect6038"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient1608);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="1.6116494"
x="34.922562"
height="7.1999536"
width="11.941131"
id="rect6064"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient1622);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="2.5638494"
x="35.65778"
height="5.2430906"
width="10.156818"
id="rect6066"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient1619);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="14.026871"
x="34.922562"
height="7.1999536"
width="11.941131"
id="rect6092"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient1633);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="14.979071"
x="35.65778"
height="5.2430906"
width="10.156818"
id="rect6094"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient1630);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="26.442091"
x="34.922562"
height="7.1999536"
width="11.941131"
id="rect6120"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient1644);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="27.394291"
x="35.65778"
height="5.2430906"
width="10.156818"
id="rect6122"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient1641);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="38.857311"
x="34.922562"
height="7.1999536"
width="11.941131"
id="rect6148"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient1655);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="39.809509"
x="35.65778"
height="5.2430906"
width="10.156818"
id="rect6150"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient1652);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g6597"
transform="matrix(1.2924452,0,0,1.2924452,-14.319106,-13.767298)">
<path
sodipodi:type="arc"
style="opacity:0.19886367;fill:url(#radialGradient6612);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path2258"
sodipodi:cx="24.8125"
sodipodi:cy="39.125"
sodipodi:rx="17.6875"
sodipodi:ry="6.625"
d="M 42.5,39.125 A 17.6875,6.625 0 1 1 7.125,39.125 A 17.6875,6.625 0 1 1 42.5,39.125 z"
transform="matrix(0.4944259,0,0,0.3809332,27.950282,28.834268)" />
<path
transform="matrix(0.5503465,0,0,0.4511905,11.493634,26.434539)"
d="M 42.5,39.125 A 17.6875,6.625 0 1 1 7.125,39.125 A 17.6875,6.625 0 1 1 42.5,39.125 z"
sodipodi:ry="6.625"
sodipodi:rx="17.6875"
sodipodi:cy="39.125"
sodipodi:cx="24.8125"
id="path3039"
style="opacity:0.3125;fill:url(#radialGradient6614);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cczcccccccccsc"
id="path2140"
d="M 28.520226,30.053528 L 41.022162,42.844526 C 41.52802,43.42265 43.130883,43.869466 44.201845,42.844526 C 45.236044,41.854767 44.996765,40.459763 43.985048,39.448046 L 31.988971,26.584783 C 33.470041,22.4707 30.472429,19.015154 26.60519,19.755689 L 25.774136,20.514477 L 28.375695,22.971505 L 28.520226,25.139473 L 26.577825,26.912546 L 24.256561,26.657049 L 21.871799,24.416818 C 21.871799,24.416818 21.035737,25.242863 21.035737,25.242863 C 20.646865,28.956278 24.529565,32.275133 28.520226,30.053528 z"
style="opacity:1;fill:url(#linearGradient6616);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:0.65825313;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.42613639;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.65825284;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 28.658902,29.213876 L 41.299263,42.397119 C 41.690863,42.844661 42.931684,43.190554 43.760745,42.397119 C 44.561348,41.630919 44.376115,40.551008 43.592917,39.767809 L 31.420804,26.852118 C 32.408184,22.573471 30.197251,20.266531 26.905984,20.348813 L 26.728169,20.528764 L 29.099805,22.659048 L 29.185487,25.411728 L 26.806614,27.582965 L 24.014102,27.281347 L 21.923106,25.312195 L 21.690982,25.595283 C 21.485278,29.524233 25.964177,31.312059 28.658902,29.213876 z"
id="path3057"
sodipodi:nodetypes="cczccccccccccc" />
<rect
transform="matrix(0.6979381,0.7161581,-0.7161581,0.6979381,0,0)"
ry="0.58181739"
rx="0.58181739"
y="-2.4785337"
x="41.75346"
height="1.3530338"
width="15.316419"
id="rect3059"
style="opacity:0.17045456;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6618);stroke-width:0.6582514;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
sodipodi:nodetypes="ccccccccc"
id="path2144"
d="M 31.542979,35.918371 C 32.09166,35.448073 40.287107,27.065844 40.287107,27.065844 L 42.310542,26.921313 L 45.490225,22.513114 L 42.841198,20.153149 L 38.722063,23.694162 L 38.722063,25.717597 L 30.339263,34.425592 C 29.941803,34.823052 31.037121,36.351964 31.542979,35.918371 z"
style="opacity:1;fill:url(#linearGradient6620);fill-opacity:1;fill-rule:nonzero;stroke:#878f9d;stroke-width:0.65825313;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.53977272;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6622);stroke-width:0.65825349;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 31.479256,35.233837 C 31.904996,34.868916 40.052611,26.525272 40.052611,26.525272 L 41.980361,26.362026 L 44.754185,22.634952 L 42.85201,20.957071 L 39.247034,24.062363 L 39.349233,25.939014 L 31.005145,34.68873 C 30.696741,34.997134 31.086742,35.570276 31.479256,35.233837 z"
id="path3085"
sodipodi:nodetypes="ccccccccc" />
<path
sodipodi:nodetypes="ccccccscc"
id="path2142"
d="M 22.305392,44.795695 C 23.17204,45.760187 25.579337,46.196566 26.646865,44.328391 C 27.11232,43.513845 28.02521,41.232756 32.097945,37.567295 C 32.781967,36.952374 33.506548,35.545708 32.892291,34.78692 L 31.302449,33.197078 C 30.652059,32.474423 28.844258,32.811507 28.102564,33.822996 C 25.891651,36.848456 22.279607,39.256798 21.46506,39.547708 C 19.906369,40.104383 20.081799,42.401993 21.113011,43.494916 L 22.305392,44.795695 z"
style="fill:url(#linearGradient6624);fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.65825313;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
transform="matrix(0.5781242,0,0,0.5781242,18.330788,19.430496)"
d="M 43.25,37.5 A 1.375,1.375 0 1 1 40.5,37.5 A 1.375,1.375 0 1 1 43.25,37.5 z"
sodipodi:ry="1.375"
sodipodi:rx="1.375"
sodipodi:cy="37.5"
sodipodi:cx="41.875"
id="path2146"
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:1.13860166;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
transform="matrix(0.375781,0,0,0.375781,22.759282,23.494319)"
d="M 20.771261,28.20101 A 1.767767,1.767767 0 1 1 17.235727,28.20101 A 1.767767,1.767767 0 1 1 20.771261,28.20101 z"
sodipodi:ry="1.767767"
sodipodi:rx="1.767767"
sodipodi:cy="28.20101"
sodipodi:cx="19.003494"
id="path3101"
style="opacity:0.60227272;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cc"
id="path3103"
d="M 29.028524,35.588867 C 29.028524,35.588867 24.308919,40.393862 22.098007,41.208409"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6626);stroke-width:1.51036835;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.19886367;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.65825301;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 22.529652,44.055245 C 23.47837,45.204303 25.557311,45.477881 26.210052,43.811303 C 26.658525,42.666263 28.40442,40.08178 31.606139,37.200232 C 32.143872,36.716821 32.713491,35.610992 32.230602,35.014482 L 30.980771,33.764652 C 30.469478,33.196548 29.048302,33.461541 28.46523,34.256708 C 26.727154,36.635128 22.88104,39.746247 21.95132,40.05304 C 20.511855,40.528043 20.781608,42.173471 21.59228,43.032657 L 22.529652,44.055245 z"
id="path2270"
sodipodi:nodetypes="csccccscc" />
<path
sodipodi:nodetypes="cc"
id="path2247"
d="M 30.440937,36.665912 C 30.440937,36.665912 25.620703,41.021841 24.573429,43.814573"
style="opacity:0.27840911;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6628);stroke-width:1.51036835;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -0,0 +1,965 @@
<?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="38.400002pt"
height="38.400002pt"
id="svg1771"
sodipodi:version="0.32"
inkscape:version="0.46"
version="1.0"
sodipodi:docbase="/home/benny/programms/gramps/myicons"
sodipodi:docname="gramps-fanchart.svg"
inkscape:export-filename="/home/cristina/programs/gramps/trunk/src/images/48x48/gramps-fanchart.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs1773">
<linearGradient
inkscape:collect="always"
id="linearGradient4114">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop4116" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop4118" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4114"
id="radialGradient4120"
gradientTransform="matrix(-1.4732639,1.0200104,-1.2426542,-1.1612173,127.13091,96.557918)"
cx="15.580562"
cy="63.331493"
fx="15.580562"
fy="63.331493"
r="12.289036"
gradientUnits="userSpaceOnUse" />
<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="perspective2886" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient6018"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.234339,-1.154632e-14,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
<linearGradient
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
id="linearGradient3085">
<stop
id="stop3087"
offset="0"
style="stop-color:#e09a2c;stop-opacity:1;" />
<stop
id="stop3089"
offset="1"
style="stop-color:#7c5312;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient1914">
<stop
style="stop-color:#d3d7cf;stop-opacity:1;"
offset="0"
id="stop1916" />
<stop
style="stop-color:#e2e5e0;stop-opacity:1;"
offset="1"
id="stop1918" />
</linearGradient>
<linearGradient
id="linearGradient3048">
<stop
style="stop-color:#564238;stop-opacity:1;"
offset="0"
id="stop3050" />
<stop
style="stop-color:#a97f43;stop-opacity:1;"
offset="1"
id="stop3052" />
</linearGradient>
<linearGradient
id="linearGradient1938">
<stop
style="stop-color:#babdb6;stop-opacity:1"
offset="0"
id="stop1940" />
<stop
style="stop-color:#d3d7cf;stop-opacity:1;"
offset="1"
id="stop1942" />
</linearGradient>
<linearGradient
id="linearGradient1946">
<stop
style="stop-color:#eeeeec;stop-opacity:1"
offset="0"
id="stop1948" />
<stop
style="stop-color:white;stop-opacity:1;"
offset="1"
id="stop1950" />
</linearGradient>
<linearGradient
id="linearGradient1954">
<stop
style="stop-color:#eeeeec;stop-opacity:1"
offset="0"
id="stop1956" />
<stop
style="stop-color:white;stop-opacity:1;"
offset="1"
id="stop1958" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3737">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop3739" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop3741" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3040">
<stop
style="stop-color:white;stop-opacity:1;"
offset="0"
id="stop3042" />
<stop
style="stop-color:white;stop-opacity:0;"
offset="1"
id="stop3044" />
</linearGradient>
<linearGradient
id="linearGradient3635">
<stop
id="stop3637"
offset="0"
style="stop-color:#d3d7cf;stop-opacity:1" />
<stop
id="stop3639"
offset="1"
style="stop-color:#888a85;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient3615">
<stop
style="stop-color:#eeeeec;stop-opacity:1"
offset="0"
id="stop3617" />
<stop
style="stop-color:#d3d7cf;stop-opacity:1"
offset="1"
id="stop3619" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5724"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5726"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5728"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient5730"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.234339,1.802999e-22,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient5732"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.317531,0,0,0.317531,0.62019,14.47876)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient5734"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.289094,0,0,0.254217,1.302677,16.15795)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5752"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5754"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5756"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient5758"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.234339,-8.881784e-15,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient5760"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.317531,0,0,0.317531,0.62019,14.47876)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient5762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.289094,0,0,0.254217,1.302677,16.15795)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5780"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5782"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5784"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient5786"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.234339,-1.154632e-14,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient5788"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.317531,0,0,0.317531,0.62019,14.47876)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient5790"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.289094,0,0,0.254217,1.302677,16.15795)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5808"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5810"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5812"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient5814"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.234339,7.460697e-14,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient5816"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.317531,0,0,0.317531,0.62019,14.47876)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient5818"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.289094,0,0,0.254217,1.302677,16.15795)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5836"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5838"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5840"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient5842"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.234339,4.796162e-14,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient5844"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.317531,0,0,0.317531,0.62019,14.47876)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient5846"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.289094,0,0,0.254217,1.302677,16.15795)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5864"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5866"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5868"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient5870"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.234339,-2.930992e-14,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient5872"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.317531,0,0,0.317531,0.62019,14.47876)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient5874"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.289094,0,0,0.254217,1.302677,16.15795)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5892"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5894"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5896"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient5898"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.234339,-9.059422e-14,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient5900"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.317531,0,0,0.317531,0.62019,14.47876)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient5902"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.289094,0,0,0.254217,1.302677,16.15795)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient5945"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,1.330573,12.19072)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient5948"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,0.733697,9.951002)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient5972"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,0.733697,9.951002)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient5974"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,1.330573,12.19072)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient1662"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient1664"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient1666"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient2542"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-6.220738e-2,0,0,1.086152e-2,47.63574,41.60641)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient2545"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(6.220738e-2,0,0,1.086152e-2,2.693166,41.60641)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient2548"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(6.220738e-2,0,0,1.086152e-2,2.680924,41.60641)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient3431"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(6.220738e-2,0,0,1.086152e-2,2.680924,41.60641)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient3433"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(6.220738e-2,0,0,1.086152e-2,2.693166,41.60641)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient3435"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-6.220738e-2,0,0,1.086152e-2,47.63574,41.60641)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient4135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.234339,-1.154632e-14,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3737"
id="radialGradient4139"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,-8.673617e-19,5.081417e-20,0.234339,-1.154073e-14,25.79321)"
cx="24.8125"
cy="33.6875"
fx="24.8125"
fy="33.6875"
r="26.9375" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="9.5581596"
inkscape:cx="27.216177"
inkscape:cy="20.043701"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="1111"
inkscape:window-height="770"
inkscape:window-x="144"
inkscape:window-y="96"
showgrid="false" />
<metadata
id="metadata1776">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:subject>
<rdf:Bag>
<rdf:li>application</rdf:li>
<rdf:li>gramps</rdf:li>
<rdf:li>pedigree</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:creator>
<cc:Agent>
<dc:title>B. Malengier</dc:title>
</cc:Agent>
</dc:creator>
<dc:title>GRAMPS</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
<dc:contributor>
<cc:Agent>
<dc:title>rework of original design of Don Allingham</dc:title>
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Attribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<path
sodipodi:type="arc"
style="fill:url(#radialGradient4120);fill-opacity:1;stroke:none;stroke-opacity:1"
id="path4112"
sodipodi:cx="24.849752"
sodipodi:cy="38.908627"
sodipodi:rx="23.655598"
sodipodi:ry="18.91993"
d="M 48.50535,38.908627 A 23.655598,18.91993 0 1 1 1.1941547,38.908627 A 23.655598,18.91993 0 1 1 48.50535,38.908627 z"
transform="matrix(1,0,0,1.243244,-1.1004109,-24.95924)" />
<path
sodipodi:type="arc"
style="fill:#3465a4;fill-opacity:1;stroke:#204a87;stroke-width:0.69999999000000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3690"
sodipodi:cx="8.5790577"
sodipodi:cy="6.9356093"
sodipodi:rx="21.343021"
sodipodi:ry="21.343021"
d="M 8.5790583,28.278631 A 21.343021,21.343021 0 0 1 -12.763798,7.0196356 L 8.5790577,6.9356093 z"
transform="translate(15.79802,16.164201)"
sodipodi:start="1.5707963"
sodipodi:end="3.1376557" />
<path
sodipodi:type="arc"
style="fill:#75507f;fill-opacity:0.94117647;stroke:#204a87;stroke-width:0.69999999000000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3692"
sodipodi:cx="8.5790577"
sodipodi:cy="6.9356093"
sodipodi:rx="21.343021"
sodipodi:ry="21.343021"
d="M -12.763964,6.9356105 A 21.343021,21.343021 0 0 1 8.5790581,-14.407412 L 8.5790577,6.9356093 z"
transform="matrix(-1,0,0,-1,32.956136,30.035418)"
sodipodi:start="3.1415926"
sodipodi:end="4.712389" />
<path
sodipodi:type="arc"
style="fill:#ad7fa8;fill-opacity:1;stroke:#204a87;stroke-width:0.69999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3688"
sodipodi:cx="8.5790577"
sodipodi:cy="6.9356093"
sodipodi:rx="21.343021"
sodipodi:ry="21.343021"
d="M 8.5790583,28.278631 A 21.343021,21.343021 0 0 1 -12.763964,6.9356084 L 8.5790577,6.9356093 z"
transform="matrix(-1,0,0,-1,32.956136,30.035419)"
sodipodi:start="1.5707963"
sodipodi:end="3.1415927" />
<path
sodipodi:type="arc"
style="fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:0.69999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3686"
sodipodi:cx="8.5790577"
sodipodi:cy="6.9356093"
sodipodi:rx="21.343021"
sodipodi:ry="21.343021"
d="M -12.763735,7.0344198 A 21.343021,21.343021 0 0 1 8.5790581,-14.407412 L 8.5790577,6.9356093 z"
transform="translate(15.693397,16.1642)"
sodipodi:start="3.136963"
sodipodi:end="4.712389" />
<path
sodipodi:type="arc"
style="fill:#e9b96e;fill-opacity:1;stroke:#8f5902;stroke-width:0.69999999000000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3682"
sodipodi:cx="8.5790577"
sodipodi:cy="6.9356093"
sodipodi:rx="11.508492"
sodipodi:ry="11.508492"
d="M 8.579058,18.444102 A 11.508492,11.508492 0 1 1 8.5790579,-4.5728831 L 8.5790577,6.9356093 z"
transform="translate(15.902643,16.1642)"
sodipodi:start="1.5707963"
sodipodi:end="4.712389" />
<path
sodipodi:type="arc"
style="fill:#c17d11;fill-opacity:1;stroke:#8f5902;stroke-width:0.69999999000000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3684"
sodipodi:cx="8.5790577"
sodipodi:cy="6.9356093"
sodipodi:rx="11.508492"
sodipodi:ry="11.508492"
d="M 8.579058,18.444102 A 11.508492,11.508492 0 1 1 8.5790579,-4.5728831 L 8.5790577,6.9356093 z"
transform="matrix(-1,0,0,-1,32.956135,30.035418)"
sodipodi:start="1.5707963"
sodipodi:end="4.712389" />
<path
sodipodi:type="arc"
style="fill:#edd400;fill-opacity:1;stroke:#c4a00f;stroke-width:0.69999999000000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.94117647"
id="path3680"
sodipodi:cx="8.5790577"
sodipodi:cy="6.9356093"
sodipodi:rx="3.2433021"
sodipodi:ry="3.0863681"
d="M 11.82236,6.9356093 A 3.2433021,3.0863681 0 1 1 5.3357556,6.9356093 A 3.2433021,3.0863681 0 1 1 11.82236,6.9356093 z"
transform="translate(15.902643,15.902643)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -2,7 +2,7 @@
<!-- 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: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"
@ -11,7 +11,7 @@
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="gramps-gramplet.svg"
sodipodi:docbase="/home/benny/programms/gramps/gramps30/src/images/scalable"
inkscape:version="0.45.1"
inkscape:version="0.46"
sodipodi:version="0.32"
id="svg2963"
height="48px"
@ -22,6 +22,13 @@
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs3">
<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="perspective6547" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3844"
@ -982,7 +989,7 @@
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
rdf:resource="http://creativecommons.org/licenses/by/3.0/" />
<dc:description>release of GRAMPS
</dc:description>
<dc:contributor>
@ -992,19 +999,17 @@
</dc:contributor>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
rdf:about="http://creativecommons.org/licenses/by/3.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Attribution" />
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 58 KiB

View File

@ -2,7 +2,7 @@
<!-- 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: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"
@ -13,7 +13,7 @@
height="48px"
id="svg2108"
sodipodi:version="0.32"
inkscape:version="0.45"
inkscape:version="0.46"
sodipodi:docbase="/home/benny/programms/gramps/gramps23/src/images/scalable"
sodipodi:docname="gramps-parents-open.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
@ -23,6 +23,13 @@
sodipodi:modified="true">
<defs
id="defs3">
<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="perspective5188" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
@ -665,7 +672,7 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="18.263989"
inkscape:cx="-6.298511"
inkscape:cy="16.851119"
inkscape:current-layer="g2292"
showgrid="false"
@ -675,7 +682,7 @@
stroke="#727e0a"
inkscape:window-width="914"
inkscape:window-height="790"
inkscape:window-x="232"
inkscape:window-x="24"
inkscape:window-y="0" />
<metadata
id="metadata4">
@ -699,7 +706,7 @@
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
rdf:resource="http://creativecommons.org/licenses/by/3.0/" />
<dc:contributor>
<cc:Agent>
<dc:title>Benny Malengier, book
@ -708,19 +715,17 @@ Benny Malengier, grouping</dc:title>
</dc:contributor>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
rdf:about="http://creativecommons.org/licenses/by/3.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Attribution" />
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -0,0 +1,362 @@
<?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="48px"
height="48px"
id="svg4198"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
sodipodi:docname="gramps-tree-group.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs4200">
<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="perspective37" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5031"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5029"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5027"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
inkscape:collect="always"
id="linearGradient3558">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3560" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3562" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3558"
id="radialGradient3564"
cx="22.571428"
cy="30.857143"
fx="22.571428"
fy="30.857143"
r="15.571428"
gradientTransform="matrix(1.000000,0.000000,0.000000,0.651376,4.638648e-15,10.75754)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient15218">
<stop
style="stop-color:#f8f8f7;stop-opacity:1;"
offset="0"
id="stop15220" />
<stop
id="stop2269"
offset="0.59928656"
style="stop-color:#e8e8e8;stop-opacity:1;" />
<stop
style="stop-color:#e2e2de;stop-opacity:1;"
offset="1"
id="stop15222" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient15218"
id="linearGradient2240"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.342704,0.000000,0.000000,1.235378,-8.219611,-6.577189)"
x1="20.794008"
y1="18.378813"
x2="35.596001"
y2="39.60046" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#bebebe"
borderopacity="1.0000000"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="25.70605"
inkscape:cy="24.096559"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1280"
inkscape:window-height="818"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:showpageshadow="false" />
<metadata
id="metadata4203">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>tree list</dc:title>
<dc:date>2005-10-29</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengier</dc:title>
</cc:Agent>
</dc:creator>
<dc:subject>
<rdf:Bag>
<rdf:li>justify</rdf:li>
<rdf:li>left</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
<dc:description>based on justify, left, Andreas Nilsson</dc:description>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
style="display:inline"
id="g5022"
transform="matrix(2.330573e-2,0,0,1.227058e-2,44.47891,44.41691)">
<rect
y="-150.69685"
x="-1559.2523"
height="478.35718"
width="1339.6335"
id="rect4173"
style="opacity:0.40206185;color:black;fill:url(#linearGradient5027);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
sodipodi:nodetypes="cccc"
id="path5058"
d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z "
style="opacity:0.40206185;color:black;fill:url(#radialGradient5029);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.40206185;color:black;fill:url(#radialGradient5031);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z "
id="path5018"
sodipodi:nodetypes="cccc" />
</g>
<rect
style="opacity:1;fill:url(#linearGradient2240);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976000000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4238"
width="38.996792"
height="45.003101"
x="4.5016017"
y="1.4968988"
rx="0.56650788"
ry="0.56650823" />
<rect
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2245"
width="37.025566"
height="43.022316"
x="5.4997125"
y="2.4997177"
rx="0"
ry="0" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect4248"
width="8.8803883"
height="2.0883884"
x="10.864836"
y="4.4184837" />
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3520"
width="8.8803883"
height="2.0883884"
x="10.864836"
y="10.291389" />
<g
id="g3524"
transform="translate(1.8648358,6.1548228)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3526"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3528"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3530"
transform="translate(1.8648358,12.027729)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3532"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3534"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3536"
transform="translate(1.8648358,17.900637)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3538"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3540"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<rect
style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3544"
width="8.8803883"
height="2.0883884"
x="10.864836"
y="33.78302" />
<g
id="g3548"
transform="translate(1.8648358,29.646453)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3550"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3552"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.41262874px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 8.2799839,4.7825066 L 8.2799839,5.6350426 L 8.7418559,5.2314256 L 8.2799839,4.7825066 z"
id="path4354" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.41262874px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 8.8231618,10.645967 L 7.9706258,10.645967 L 8.3742428,11.107839 L 8.8231618,10.645967 z"
id="path4356" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.4, 0.4;stroke-dashoffset:0;stroke-opacity:1"
d="M 8.308505,12.202729 L 8.308505,28.73135 L 9.6343303,28.73135"
id="path4362"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.4, 0.4;stroke-dashoffset:0;stroke-opacity:1"
d="M 8.2201166,22.89772 L 9.5459419,22.89772"
id="path4364"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.4, 0.4;stroke-dashoffset:0;stroke-opacity:1"
d="M 8.308505,17.152476 L 9.5459419,17.152476"
id="path4366"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.41262874px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 8.9115497,34.301112 L 8.0590137,34.301112 L 8.4626307,34.762984 L 8.9115497,34.301112 z"
id="path4368" />
<path
style="fill:none;fill-rule:evenodd;stroke:#60615d;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.4, 0.4;stroke-dashoffset:0;stroke-opacity:1"
d="M 8.4410875,35.681096 L 8.4410875,40.530339 L 9.7669128,40.530339"
id="path4372"
sodipodi:nodetypes="ccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,363 @@
<?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="48px"
height="48px"
id="svg4198"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
sodipodi:docname="gramps-tree-list.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs4200">
<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="perspective37" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5031"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5029"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5027"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
inkscape:collect="always"
id="linearGradient3558">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3560" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3562" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3558"
id="radialGradient3564"
cx="22.571428"
cy="30.857143"
fx="22.571428"
fy="30.857143"
r="15.571428"
gradientTransform="matrix(1.000000,0.000000,0.000000,0.651376,4.638648e-15,10.75754)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient15218">
<stop
style="stop-color:#f8f8f7;stop-opacity:1;"
offset="0"
id="stop15220" />
<stop
id="stop2269"
offset="0.59928656"
style="stop-color:#e8e8e8;stop-opacity:1;" />
<stop
style="stop-color:#e2e2de;stop-opacity:1;"
offset="1"
id="stop15222" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient15218"
id="linearGradient2240"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.342704,0.000000,0.000000,1.235378,-8.219611,-6.577189)"
x1="20.794008"
y1="18.378813"
x2="35.596001"
y2="39.60046" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#bebebe"
borderopacity="1.0000000"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="7.4736419"
inkscape:cy="24.096559"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1280"
inkscape:window-height="818"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:showpageshadow="false" />
<metadata
id="metadata4203">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>tree list</dc:title>
<dc:date>2005-10-29</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengier</dc:title>
</cc:Agent>
</dc:creator>
<dc:subject>
<rdf:Bag>
<rdf:li>justify</rdf:li>
<rdf:li>left</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
<dc:description>based on justify, left, Andreas Nilsson</dc:description>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
style="display:inline"
id="g5022"
transform="matrix(2.330573e-2,0,0,1.227058e-2,44.47891,44.41691)">
<rect
y="-150.69685"
x="-1559.2523"
height="478.35718"
width="1339.6335"
id="rect4173"
style="opacity:0.40206185;color:black;fill:url(#linearGradient5027);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
sodipodi:nodetypes="cccc"
id="path5058"
d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z "
style="opacity:0.40206185;color:black;fill:url(#radialGradient5029);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.40206185;color:black;fill:url(#radialGradient5031);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z "
id="path5018"
sodipodi:nodetypes="cccc" />
</g>
<rect
style="opacity:1;fill:url(#linearGradient2240);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4238"
width="38.996792"
height="45.003101"
x="4.5016017"
y="1.4968988"
rx="0.56650788"
ry="0.56650823" />
<rect
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2245"
width="37.025566"
height="43.022316"
x="5.4997125"
y="2.4997177"
rx="0"
ry="0" />
<g
id="g3514"
transform="translate(-4.6775752e-2,-1.9999986)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect4248"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3512"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3518"
transform="translate(-4.6775752e-2,3.2062415)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3520"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3522"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3524"
transform="translate(-4.6775752e-2,8.412481)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3526"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3528"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3530"
transform="translate(-4.6775752e-2,13.61872)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3532"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3534"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3536"
transform="translate(-4.6775752e-2,18.824958)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3538"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3540"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3542"
transform="translate(-4.6775752e-2,24.031197)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3544"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3546"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3548"
transform="translate(-4.6775752e-2,29.237437)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3550"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3552"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,452 @@
<?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="48px"
height="48px"
id="svg4198"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
sodipodi:docname="gramps-tree-select.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs4200">
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
id="linearGradient9977"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,34.751323,26.539682)"
x1="8.7275133"
y1="7.8306885"
x2="22.679893"
y2="14.095237" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
id="linearGradient9975"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,25.0582,1.7354494)"
x1="-6.6627526"
y1="20.072517"
x2="6.8253312"
y2="13.903621" />
<linearGradient
id="linearGradient7989">
<stop
id="stop7991"
offset="0"
style="stop-color:#e2e2e2;stop-opacity:0.94845361;" />
<stop
id="stop7993"
offset="1"
style="stop-color:#ffffff;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7989"
id="linearGradient9973"
gradientUnits="userSpaceOnUse"
x1="4.8333335"
y1="14.349207"
x2="15.314814"
y2="22.814814" />
<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="perspective37" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5031"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5029"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5027"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
inkscape:collect="always"
id="linearGradient3558">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3560" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3562" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3558"
id="radialGradient3564"
cx="22.571428"
cy="30.857143"
fx="22.571428"
fy="30.857143"
r="15.571428"
gradientTransform="matrix(1.000000,0.000000,0.000000,0.651376,4.638648e-15,10.75754)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient15218">
<stop
style="stop-color:#f8f8f7;stop-opacity:1;"
offset="0"
id="stop15220" />
<stop
id="stop2269"
offset="0.59928656"
style="stop-color:#e8e8e8;stop-opacity:1;" />
<stop
style="stop-color:#e2e2de;stop-opacity:1;"
offset="1"
id="stop15222" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient15218"
id="linearGradient2240"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.342704,0.000000,0.000000,1.235378,-8.219611,-6.577189)"
x1="20.794008"
y1="18.378813"
x2="35.596001"
y2="39.60046" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#bebebe"
borderopacity="1.0000000"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="-9.9335367"
inkscape:cy="24.096559"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1280"
inkscape:window-height="818"
inkscape:window-x="73"
inkscape:window-y="73"
inkscape:showpageshadow="false" />
<metadata
id="metadata4203">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>tree list select</dc:title>
<dc:date>2005-10-29</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengier</dc:title>
</cc:Agent>
</dc:creator>
<dc:subject>
<rdf:Bag>
<rdf:li>justify</rdf:li>
<rdf:li>left</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by/3.0/" />
<dc:description>based on justify, left, Andreas Nilsson, and gramps-parents-open</dc:description>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
style="display:inline"
id="g5022"
transform="matrix(2.330573e-2,0,0,1.227058e-2,44.47891,44.41691)">
<rect
y="-150.69685"
x="-1559.2523"
height="478.35718"
width="1339.6335"
id="rect4173"
style="opacity:0.40206185;color:black;fill:url(#linearGradient5027);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
sodipodi:nodetypes="cccc"
id="path5058"
d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z "
style="opacity:0.40206185;color:black;fill:url(#radialGradient5029);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<path
style="opacity:0.40206185;color:black;fill:url(#radialGradient5031);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z "
id="path5018"
sodipodi:nodetypes="cccc" />
</g>
<rect
style="opacity:1;fill:url(#linearGradient2240);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4238"
width="38.996792"
height="45.003101"
x="4.5016017"
y="1.4968988"
rx="0.56650788"
ry="0.56650823" />
<rect
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2245"
width="37.025566"
height="43.022316"
x="5.4997125"
y="2.4997177"
rx="0"
ry="0" />
<g
id="g3514"
transform="translate(-4.6775752e-2,-1.9999986)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect4248"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3512"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3518"
transform="translate(-4.6775752e-2,3.2062415)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3520"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3522"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3524"
transform="translate(-4.6775752e-2,8.412481)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3526"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3528"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3530"
transform="translate(-4.6775752e-2,13.61872)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3532"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3534"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3536"
transform="translate(-4.6775752e-2,18.824958)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3538"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3540"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3542"
transform="translate(-4.6775752e-2,24.031197)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3544"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3546"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
id="g3548"
transform="translate(-4.6775752e-2,29.237437)">
<rect
y="10.009475"
x="9"
height="2.0883884"
width="8.8803883"
id="rect3550"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
<rect
y="10.009475"
x="19.513048"
height="2.0883884"
width="17.542446"
id="rect3552"
style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<g
style="opacity:1;display:inline"
id="g9963"
transform="matrix(0.7382338,0,0,0.8681841,0.7652976,-1.282076)">
<path
sodipodi:nodetypes="ccccccccc"
id="path7979"
d="M 24.126984,5.5873016 L 31.830688,23.78836 L 18.962963,30.433863 L 14.47619,30.26455 L 7.5343915,24.042328 L 0.33862434,4.1481481 L 9.6507937,12.952381 L 12.275133,13.037037 L 24.126984,5.5873016 z"
style="fill:#3467c1;fill-opacity:1;fill-rule:evenodd;stroke:#114fb7;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccccsc"
id="path7977"
d="M 19.047619,29.62963 C 19.89418,29.079366 30.814814,23.492063 30.814814,23.492063 L 23.703704,6.6031746 L 12.698413,13.883598 L 9.9894183,13.798942 L 1.4391534,5.5873016 L 7.957672,23.280423 C 7.957672,23.280423 14.645503,29.544974 15.068783,29.544974 C 15.492063,29.544974 18.243386,29.62963 19.047619,29.62963 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#4f88d4;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
id="path7002"
d="M 11.174603,13.460317 L 1.8624339,5.5873016 L 8.4656085,23.195768 L 15.322751,29.037037 L 17.523809,29.206349 L 11.174603,13.460317 z"
style="fill:url(#linearGradient9973);fill-opacity:1;fill-rule:evenodd;stroke:#8d9ac9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
id="path8003"
d="M 11.25926,13.502645 L 23.026454,6.0529102 L 30.222222,23.322752 L 18.793652,29.037037 L 17.439154,29.206349 L 11.25926,13.502645 z"
style="fill:url(#linearGradient9975);fill-opacity:1;fill-rule:evenodd;stroke:#8d9ac9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccc"
id="path9957"
d="M 10.476191,13.671958 L 16.21164,28.486772 L 15.57672,28.31746 L 9.1428571,22.899471 L 3.1746032,7.4074074 L 10.476191,13.671958 z"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
id="path9961"
d="M 22.666667,6.9841274 L 29.333333,22.899471 L 18.328042,28.444445 L 12.74074,13.883599 L 22.666667,6.9841274 z"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
id="path8015"
d="M 17.227514,29.037038 L 23.915344,18.243386 L 17.227513,2.6666659 L 11.132275,13.121694 L 17.227514,29.037038 z"
style="fill:url(#linearGradient9977);fill-opacity:1;fill-rule:evenodd;stroke:#8d9ac9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccc"
id="path9959"
d="M 17.20635,4.0634929 L 23.365079,18.328042 L 17.354498,27.640212 L 11.89418,13.079366 L 17.20635,4.0634929 z"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,705 @@
<?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"
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
inkscape:export-filename="/home/cristina/programs/gramps/trunk/src/images/48x48/gramps-view.png"
width="48px"
height="48px"
id="svg11300"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/categories"
sodipodi:docname="gramps-view.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs3">
<linearGradient
inkscape:collect="always"
id="linearGradient3040">
<stop
style="stop-color:white;stop-opacity:1;"
offset="0"
id="stop3042" />
<stop
style="stop-color:white;stop-opacity:0;"
offset="1"
id="stop3044" />
</linearGradient>
<linearGradient
id="linearGradient3048">
<stop
style="stop-color:#564238;stop-opacity:1;"
offset="0"
id="stop3050" />
<stop
style="stop-color:#a97f43;stop-opacity:1;"
offset="1"
id="stop3052" />
</linearGradient>
<linearGradient
id="linearGradient3832">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3834" />
<stop
style="stop-color:#e0e0e0;stop-opacity:1;"
offset="1"
id="stop3836" />
</linearGradient>
<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="perspective60" />
<linearGradient
inkscape:collect="always"
id="linearGradient2250">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2252" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop2254" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2265">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop2267" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop2269" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2257">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2259" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop2261" />
</linearGradient>
<linearGradient
id="linearGradient3087">
<stop
style="stop-color:#3465a4;stop-opacity:1;"
offset="0"
id="stop3089" />
<stop
id="stop3095"
offset="0"
style="stop-color:#9fbce1;stop-opacity:1;" />
<stop
style="stop-color:#6b95ca;stop-opacity:1;"
offset="0"
id="stop2242" />
<stop
id="stop2244"
offset="0.75"
style="stop-color:#3d6aa5;stop-opacity:1;" />
<stop
style="stop-color:#386eb4;stop-opacity:1;"
offset="1"
id="stop3091" />
</linearGradient>
<linearGradient
id="linearGradient3077">
<stop
style="stop-color:#98a0a9;stop-opacity:1;"
offset="0"
id="stop3079" />
<stop
style="stop-color:#c3d0dd;stop-opacity:1;"
offset="1"
id="stop3081" />
</linearGradient>
<linearGradient
id="linearGradient3061">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3063" />
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="1"
id="stop3065" />
</linearGradient>
<linearGradient
id="linearGradient3049">
<stop
style="stop-color:#b6b6b6;stop-opacity:1;"
offset="0"
id="stop3051" />
<stop
id="stop2262"
offset="0.5"
style="stop-color:#f2f2f2;stop-opacity:1;" />
<stop
style="stop-color:#fafafa;stop-opacity:1;"
offset="0.67612958"
id="stop2264" />
<stop
id="stop2268"
offset="0.84051722"
style="stop-color:#d8d8d8;stop-opacity:1;" />
<stop
id="stop2266"
offset="0.875"
style="stop-color:#f2f2f2;stop-opacity:1;" />
<stop
style="stop-color:#dbdbdb;stop-opacity:1;"
offset="1"
id="stop3053" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3041">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3043" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3045" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3041"
id="radialGradient3047"
cx="24.8125"
cy="39.125"
fx="24.8125"
fy="39.125"
r="17.6875"
gradientTransform="matrix(1,0,0,0.374558,0,24.47041)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3049"
id="linearGradient3055"
x1="19.648342"
y1="42.253601"
x2="20.631224"
y2="6.7758031"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781242,0,0,0.5781242,18.403053,19.358231)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3061"
id="linearGradient3067"
x1="50.152931"
y1="-3.6324477"
x2="25.291086"
y2="-4.3002653"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781241,1.5114326e-8,-1.5114326e-8,0.5781241,26.70774,0.3313471)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3077"
id="linearGradient3083"
x1="38.227654"
y1="13.602527"
x2="37.53537"
y2="6.6285896"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781242,0,0,0.5781242,18.607451,19.767027)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3087"
id="linearGradient3093"
x1="9.7503242"
y1="32.28376"
x2="16.915297"
y2="39.443218"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5781242,0,0,0.5781242,18.403053,19.358231)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2257"
id="linearGradient2263"
x1="12.004697"
y1="35.688461"
x2="10.650805"
y2="33.194965"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6630284,-1.7355022e-2,1.7355022e-2,0.6630284,17.78194,16.140366)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2265"
id="linearGradient2271"
x1="14.017542"
y1="36.942543"
x2="15.415793"
y2="38.268368"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5780117,-1.1403384e-2,1.1403384e-2,0.5780117,18.157326,18.765946)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2250"
id="linearGradient2256"
x1="31.177404"
y1="19.821514"
x2="40.859177"
y2="9.6568537"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6582534,0,0,0.6582534,16.733072,16.088238)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3041"
id="radialGradient2260"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.374558,0,24.47041)"
cx="24.8125"
cy="39.125"
fx="24.8125"
fy="39.125"
r="17.6875" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3041"
id="radialGradient4607"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.374558,0,24.47041)"
cx="24.8125"
cy="39.125"
fx="24.8125"
fy="39.125"
r="17.6875" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3832"
id="linearGradient4609"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-0.441941)"
x1="17.88068"
y1="11.072588"
x2="17.88068"
y2="21.767578" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient4611"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,0.733697,11.42789)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient4613"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,1.330573,13.66761)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient4615"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,16.91326,-0.53173)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient4617"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,17.51013,1.70799)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient4619"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,16.91326,23.58379)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient4621"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,17.51013,25.82351)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient4623"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,34.22831,-7.07065)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient4625"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,34.82518,-4.83093)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient4627"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,34.22831,5.344571)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient4629"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,34.82518,7.584291)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient4631"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,34.22831,17.75979)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient4633"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,34.82518,19.99951)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3048"
id="linearGradient4635"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.2777,0,0,0.423526,34.22831,30.17501)"
x1="2.3864853"
y1="34.399788"
x2="0.51148534"
y2="15.856615" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3040"
id="linearGradient4637"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.25283,0,0,0.339077,34.82518,32.41473)"
x1="3"
y1="24.871992"
x2="70.421181"
y2="76.251137" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3832"
id="linearGradient5175"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.5166041,0,0,2.5166041,-9.3963627,-17.833574)"
x1="17.88068"
y1="11.072588"
x2="17.88068"
y2="21.767578" />
</defs>
<sodipodi:namedview
stroke="#204a87"
fill="#3465a4"
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="0.25490196"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="23.505434"
inkscape:cy="25.029834"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:showpageshadow="false"
inkscape:window-width="1034"
inkscape:window-height="818"
inkscape:window-x="359"
inkscape:window-y="30" />
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:creator>
<cc:Agent>
<dc:title>Benny Malengi</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://jimmac.musichall.cz</dc:source>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by/3.0/" />
<dc:title>Config view gramps</dc:title>
<dc:subject>
<rdf:Bag>
<rdf:li>preferences</rdf:li>
<rdf:li>settings</rdf:li>
<rdf:li>control panel</rdf:li>
<rdf:li>tweaks</rdf:li>
<rdf:li>system</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:description>Based on icons of Jakub Steiner, http://jimmac.musichall.cz/</dc:description>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
sodipodi:type="arc"
style="opacity:0.3125;fill:url(#radialGradient4607);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path3039"
sodipodi:cx="24.8125"
sodipodi:cy="39.125"
sodipodi:rx="17.6875"
sodipodi:ry="6.625"
d="M 42.5,39.125 A 17.6875,6.625 0 1 1 7.125,39.125 A 17.6875,6.625 0 1 1 42.5,39.125 z"
transform="matrix(1.2609342,0,0,0.6472389,-7.6559833,17.818879)" />
<rect
style="fill:url(#linearGradient5175);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3818"
width="40.483803"
height="39.973774"
x="4.4449596"
y="2.278976"
rx="2.7837532"
ry="2.7837529" />
<rect
style="fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect3820"
width="32.715855"
height="5.0332084"
x="8.2198658"
y="5.9280539"
rx="0.55936772"
ry="0.55936766" />
<g
id="g1882"
transform="matrix(0.7497074,0,0,0.5380368,6.5845613,12.778622)">
<rect
ry="39.809116"
rx="2.458369"
y="20.110189"
x="1.4279501"
height="7.1999536"
width="11.941131"
id="rect1862"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient4611);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="21.062389"
x="2.1631713"
height="5.2430906"
width="10.156818"
id="rect3038"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4613);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path5908"
d="M 13.914813,23.727545 L 15.79802,23.727545 L 15.79802,11.591317 L 17.053492,11.591317"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
id="path5910"
d="M 13.914813,23.649618 L 15.79802,23.649618 L 15.79802,35.785846 L 17.053492,35.785846"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccc"
id="path5912"
d="M 29.922078,11.172827 L 31.805285,11.172827 L 31.805285,17.309055 L 34.420851,17.309055"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccc"
id="path5914"
d="M 29.922078,36.143584 L 31.805285,36.143584 L 31.805285,42.279812 L 34.420851,42.279812"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccc"
id="path5916"
d="M 29.922078,11.170373 L 31.805285,11.170373 L 31.805285,5.0341468 L 34.420851,5.0341468"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccc"
id="path5918"
d="M 29.922078,36.107074 L 31.805285,36.107074 L 31.805285,29.970847 L 34.420851,29.970847"
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="8.150569"
x="17.60751"
height="7.1999536"
width="11.941131"
id="rect6008"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient4615);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="9.1027689"
x="18.342731"
height="5.2430906"
width="10.156818"
id="rect6010"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4617);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="32.26609"
x="17.60751"
height="7.1999536"
width="11.941131"
id="rect6036"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient4619);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="33.218288"
x="18.342731"
height="5.2430906"
width="10.156818"
id="rect6038"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4621);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="1.6116494"
x="34.922562"
height="7.1999536"
width="11.941131"
id="rect6064"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient4623);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="2.5638494"
x="35.65778"
height="5.2430906"
width="10.156818"
id="rect6066"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4625);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="14.026871"
x="34.922562"
height="7.1999536"
width="11.941131"
id="rect6092"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient4627);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="14.979071"
x="35.65778"
height="5.2430906"
width="10.156818"
id="rect6094"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4629);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="26.442091"
x="34.922562"
height="7.1999536"
width="11.941131"
id="rect6120"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient4631);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="27.394291"
x="35.65778"
height="5.2430906"
width="10.156818"
id="rect6122"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4633);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="39.809116"
rx="2.458369"
y="38.857311"
x="34.922562"
height="7.1999536"
width="11.941131"
id="rect6148"
style="fill:#ead4bc;fill-opacity:1;stroke:url(#linearGradient4635);stroke-width:1.08004546;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:11;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="7.6130581"
rx="1.0535868"
y="39.809509"
x="35.65778"
height="5.2430906"
width="10.156818"
id="rect6150"
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4637);stroke-width:0.92209893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:11;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -583,6 +583,17 @@ class FanChartView(NavigationView):
context_popup_callback=self.on_popup)
return self.fan
def get_stock(self):
"""
The category stock icon
"""
return 'gramps-relation'
def get_viewtype_stock(self):
"""Type of view in category
"""
return 'gramps-fanchart'
def ui_definition(self):
return '''<ui>
<toolbar name="ToolBar">

View File

@ -577,6 +577,19 @@ class GeoView(HtmlView):
HtmlView.set_inactive(self)
self.dbstate.disconnect(self.key_active_changed)
def get_stock(self):
"""
Returns the name of the stock icon to use for the display.
This assumes that this icon has already been registered
as a stock icon.
"""
return 'gramps-geo'
def get_viewtype_stock(self):
"""Type of view in category
"""
return 'gramps-geo'
def _savezoomandposition(self, timeloop=None):
"""
The only way we have to save the zoom and position is to change the

View File

@ -1171,6 +1171,11 @@ class GrampletView(PageView):
"""
return 'gramps-gramplet'
def get_viewtype_stock(self):
"""Type of view in category
"""
return 'gramps-gramplet'
def build_tree(self):
return

View File

@ -546,10 +546,15 @@ class HtmlView(PageView):
def get_stock(self):
"""
Returns the name of the stock icon to use for the display.
This assumes that this icon has already been registered with
GNOME as a stock icon.
This assumes that this icon has already been registered
as a stock icon.
"""
return 'gramps-geo'
return 'gramps-view'
def get_viewtype_stock(self):
"""Type of view in category
"""
return 'gramps-view'
def ui_definition(self):
"""

View File

@ -414,9 +414,12 @@ class PedigreeView(NavigationView):
def get_stock(self):
"""
Return the name of the stock icon to use for the display.
This assumes that this icon has already been registered with
GNOME as a stock icon.
The category stock icon
"""
return 'gramps-relation'
def get_viewtype_stock(self):
"""Type of view in category
"""
return 'gramps-pedigree'

View File

@ -163,6 +163,11 @@ class PersonView(ListView):
Use the gramps-person stock icon
"""
return 'gramps-person'
def get_viewtype_stock(self):
"""Type of view in category
"""
return 'gramps-tree-group'
def ui_definition(self):
"""

View File

@ -235,6 +235,11 @@ class RelationshipView(NavigationView):
GNOME as a stock icon.
"""
return 'gramps-relation'
def get_viewtype_stock(self):
"""Type of view in category
"""
return 'gramps-relation'
def build_widget(self):