diff --git a/po/POTFILES.in b/po/POTFILES.in
index c4d58c051..19cb79601 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -775,6 +775,26 @@ src/widgets/validatedmaskedentry.py
src/plugins/docgen/gtkprintpreview.glade
src/glade/edit_person.glade
src/glade/gramps.glade
+
+# widgets split off from gramps.glade
+# as part of libglade to GtkBuilder migration
+
+src/glade/grampletview.glade
+src/glade/baseselector.glade
+src/glade/reorder.glade
+src/glade/tipofday.glade
+src/glade/displaystate.glade
+src/glade/addmedia.glade
+src/glade/questiondialog.glade
+src/glade/columnorder.glade
+src/glade/grampscfg.glade
+src/glade/dateedit.glade
+src/glade/editsource.glade
+src/glade/styleeditor.glade
+src/glade/dbmanager.glade
+
+# end of widgets split off from gramps.glade
+
src/glade/mergedata.glade
src/glade/plugins.glade
src/glade/rule.glade
diff --git a/src/ColumnOrder.py b/src/ColumnOrder.py
index ddf7e940d..e4064dca8 100644
--- a/src/ColumnOrder.py
+++ b/src/ColumnOrder.py
@@ -29,6 +29,7 @@ Handle the column ordering
#-------------------------------------------------------------------------
from gettext import gettext as _
import logging
+import os
#-------------------------------------------------------------------------
#
@@ -36,7 +37,6 @@ import logging
#
#-------------------------------------------------------------------------
import gtk
-from gtk import glade
import gobject
#-------------------------------------------------------------------------
@@ -53,6 +53,7 @@ import ManagedWindow
#
#-------------------------------------------------------------------------
__LOG = logging.getLogger(".ColumnOrder")
+_GLADE_FILE = 'columnorder.glade'
class ColumnOrder(ManagedWindow.ManagedWindow):
@@ -66,11 +67,13 @@ class ColumnOrder(ManagedWindow.ManagedWindow):
"""
ManagedWindow.ManagedWindow.__init__(self, uistate, [], self)
- self.glade = glade.XML(const.GLADE_FILE, "columns", "gramps")
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.glade = gtk.Builder()
+ self.glade.add_from_file(glade_file)
- self.set_window(self.glade.get_widget('columns'), None, win_name)
+ self.set_window(self.glade.get_object('columns'), None, win_name)
- self.tree = self.glade.get_widget('list')
+ self.tree = self.glade.get_object('list')
self.arglist = arglist
self.callback = callback
@@ -91,9 +94,9 @@ class ColumnOrder(ManagedWindow.ManagedWindow):
column_n.set_min_width(225)
self.tree.append_column(column_n)
- self.glade.get_widget('okbutton').connect('clicked',
+ self.glade.get_object('okbutton').connect('clicked',
self.ok_clicked)
- self.glade.get_widget('cancelbutton').connect('clicked',
+ self.glade.get_object('cancelbutton').connect('clicked',
self.cancel_clicked)
for item in self.arglist:
diff --git a/src/DataViews/GrampletView.py b/src/DataViews/GrampletView.py
index d9782540e..d122b6c0b 100644
--- a/src/DataViews/GrampletView.py
+++ b/src/DataViews/GrampletView.py
@@ -30,7 +30,6 @@ GrampletView interface.
#
#-------------------------------------------------------------------------
import gtk
-from gtk import glade
import gobject
import pango
@@ -60,6 +59,7 @@ import GrampsDisplay
#
#-------------------------------------------------------------------------
WIKI_HELP_PAGE = const.URL_MANUAL_PAGE + '_-_Gramplets'
+_GLADE_FILE = 'grampletview.glade'
#-------------------------------------------------------------------------
#
@@ -89,7 +89,8 @@ def register_gramplet(data_dict):
AVAILABLE_GRAMPLETS[base_opts["name"]] = base_opts
else: # go with highest version (or current one in case of tie)
# GRAMPS loads system plugins first
- loaded_version = [int(i) for i in AVAILABLE_GRAMPLETS[base_opts["name"]]["version"].split(".")]
+ loaded_version = [int(i) for i in
+ AVAILABLE_GRAMPLETS[base_opts["name"]]["version"].split(".")]
current_version = [int(i) for i in base_opts["version"].split(".")]
if current_version >= loaded_version:
AVAILABLE_GRAMPLETS[base_opts["name"]] = base_opts
@@ -638,27 +639,33 @@ class GuiGramplet:
self.tooltip = None # text
self.tooltips = None # gtk tooltip widget
self.tooltips_text = None
- self.xml = glade.XML(const.GLADE_FILE, 'gvgramplet', "gramps")
- self.mainframe = self.xml.get_widget('gvgramplet')
- self.gvoptions = self.xml.get_widget('gvoptions')
- self.textview = self.xml.get_widget('gvtextview')
+
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.xml = gtk.Builder()
+ self.xml.add_from_file(glade_file)
+ self.gvwin = self.xml.get_object('gvwin')
+ self.mainframe = self.xml.get_object('gvgramplet')
+ self.gvwin.remove(self.mainframe)
+
+ self.gvoptions = self.xml.get_object('gvoptions')
+ self.textview = self.xml.get_object('gvtextview')
self.buffer = self.textview.get_buffer()
- self.scrolledwindow = self.xml.get_widget('gvscrolledwindow')
- self.vboxtop = self.xml.get_widget('vboxtop')
- self.titlelabel = self.xml.get_widget('gvtitle')
+ self.scrolledwindow = self.xml.get_object('gvscrolledwindow')
+ self.vboxtop = self.xml.get_object('vboxtop')
+ self.titlelabel = self.xml.get_object('gvtitle')
self.titlelabel.set_text("%s" % self.title)
self.titlelabel.set_use_markup(True)
- self.gvclose = self.xml.get_widget('gvclose')
+ self.gvclose = self.xml.get_object('gvclose')
self.gvclose.connect('clicked', self.close)
- self.gvstate = self.xml.get_widget('gvstate')
+ self.gvstate = self.xml.get_object('gvstate')
self.gvstate.connect('clicked', self.change_state)
- self.gvproperties = self.xml.get_widget('gvproperties')
+ self.gvproperties = self.xml.get_object('gvproperties')
self.gvproperties.connect('clicked', self.set_properties)
- self.xml.get_widget('gvcloseimage').set_from_stock(gtk.STOCK_CLOSE,
+ self.xml.get_object('gvcloseimage').set_from_stock(gtk.STOCK_CLOSE,
gtk.ICON_SIZE_MENU)
- self.xml.get_widget('gvstateimage').set_from_stock(gtk.STOCK_REMOVE,
+ self.xml.get_object('gvstateimage').set_from_stock(gtk.STOCK_REMOVE,
gtk.ICON_SIZE_MENU)
- self.xml.get_widget('gvpropertiesimage').set_from_stock(gtk.STOCK_PROPERTIES,
+ self.xml.get_object('gvpropertiesimage').set_from_stock(gtk.STOCK_PROPERTIES,
gtk.ICON_SIZE_MENU)
# source:
@@ -695,7 +702,7 @@ class GuiGramplet:
self.state = state
if state == "minimized":
self.scrolledwindow.hide()
- self.xml.get_widget('gvstateimage').set_from_stock(gtk.STOCK_ADD,
+ self.xml.get_object('gvstateimage').set_from_stock(gtk.STOCK_ADD,
gtk.ICON_SIZE_MENU)
column = self.mainframe.get_parent() # column
expand,fill,padding,pack = column.query_child_packing(self.mainframe)
@@ -703,7 +710,7 @@ class GuiGramplet:
else:
self.scrolledwindow.show()
- self.xml.get_widget('gvstateimage').set_from_stock(gtk.STOCK_REMOVE,
+ self.xml.get_object('gvstateimage').set_from_stock(gtk.STOCK_REMOVE,
gtk.ICON_SIZE_MENU)
column = self.mainframe.get_parent() # column
expand,fill,padding,pack = column.query_child_packing(self.mainframe)
diff --git a/src/DateEdit.py b/src/DateEdit.py
index ce2ea8ad3..18f6007f1 100644
--- a/src/DateEdit.py
+++ b/src/DateEdit.py
@@ -48,6 +48,7 @@ unambiguously built using UI controls such as menus and spin buttons.
#-------------------------------------------------------------------------
import logging
__LOG = logging.getLogger(".DateEdit")
+import os
#-------------------------------------------------------------------------
#
@@ -55,7 +56,6 @@ __LOG = logging.getLogger(".DateEdit")
#
#-------------------------------------------------------------------------
import gtk
-from gtk import glade
#-------------------------------------------------------------------------
#
@@ -100,6 +100,7 @@ CAL_TO_MONTHS_NAMES = {
WIKI_HELP_PAGE = '%s_-_Entering_and_Editing_Data:_Detailed_-_part_1' % const.URL_MANUAL_PAGE
WIKI_HELP_SEC = _('manual|Editing_Dates')
+_GLADE_FILE = 'dateedit.glade'
#-------------------------------------------------------------------------
#
# DateEdit
@@ -190,36 +191,38 @@ class DateEditorDialog(ManagedWindow.ManagedWindow):
# Create self.date as a copy of the given Date object.
self.date = Date(date)
-
- self.top = glade.XML(const.GLADE_FILE, "date_edit","gramps" )
+
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.top = gtk.Builder()
+ self.top.add_from_file(glade_file)
self.set_window(
- self.top.get_widget('date_edit'),
- self.top.get_widget('title'),
+ self.top.get_object('date_edit'),
+ self.top.get_object('title'),
_('Date selection'))
- self.calendar_box = self.top.get_widget('calendar_box')
+ self.calendar_box = self.top.get_object('calendar_box')
for name in Date.ui_calendar_names:
- self.calendar_box.append_text(name)
+ self.calendar_box.get_model().append([name])
self.calendar_box.set_active(self.date.get_calendar())
self.calendar_box.connect('changed', self.switch_calendar)
- self.quality_box = self.top.get_widget('quality_box')
+ self.quality_box = self.top.get_object('quality_box')
for item_number in range(len(QUAL_TEXT)):
self.quality_box.append_text(QUAL_TEXT[item_number][1])
if self.date.get_quality() == QUAL_TEXT[item_number][0]:
self.quality_box.set_active(item_number)
- self.type_box = self.top.get_widget('type_box')
+ self.type_box = self.top.get_object('type_box')
for item_number in range(len(MOD_TEXT)):
self.type_box.append_text(MOD_TEXT[item_number][1])
if self.date.get_modifier() == MOD_TEXT[item_number][0]:
self.type_box.set_active(item_number)
self.type_box.connect('changed', self.switch_type)
- self.start_month_box = self.top.get_widget('start_month_box')
- self.stop_month_box = self.top.get_widget('stop_month_box')
+ self.start_month_box = self.top.get_object('start_month_box')
+ self.stop_month_box = self.top.get_object('stop_month_box')
month_names = CAL_TO_MONTHS_NAMES[self.date.get_calendar()]
for name in month_names:
self.start_month_box.append_text(name)
@@ -227,18 +230,18 @@ class DateEditorDialog(ManagedWindow.ManagedWindow):
self.start_month_box.set_active(self.date.get_month())
self.stop_month_box.set_active(self.date.get_stop_month())
- self.start_day = self.top.get_widget('start_day')
+ self.start_day = self.top.get_object('start_day')
self.start_day.set_value(self.date.get_day())
- self.start_year = self.top.get_widget('start_year')
+ self.start_year = self.top.get_object('start_year')
self.start_year.set_value(self.date.get_year())
- self.stop_day = self.top.get_widget('stop_day')
+ self.stop_day = self.top.get_object('stop_day')
self.stop_day.set_value(self.date.get_stop_day())
- self.stop_year = self.top.get_widget('stop_year')
+ self.stop_year = self.top.get_object('stop_year')
self.stop_year.set_value(self.date.get_stop_year())
- self.dual_dated = self.top.get_widget('dualdated')
- self.new_year = self.top.get_widget('newyear')
+ self.dual_dated = self.top.get_object('dualdated')
+ self.new_year = self.top.get_object('newyear')
self.new_year.set_active(self.date.get_new_year())
# Disable second date controls if not compound date
@@ -257,7 +260,7 @@ class DateEditorDialog(ManagedWindow.ManagedWindow):
self.dual_dated.set_sensitive(0)
self.new_year.set_sensitive(0)
- self.text_entry = self.top.get_widget('date_text_entry')
+ self.text_entry = self.top.get_object('date_text_entry')
self.text_entry.set_text(self.date.get_text())
if self.date.get_slash():
diff --git a/src/DbManager.py b/src/DbManager.py
index c355ccddb..ab2ca73c0 100644
--- a/src/DbManager.py
+++ b/src/DbManager.py
@@ -59,7 +59,6 @@ else:
#
#-------------------------------------------------------------------------
import gtk
-from gtk import glade
from gtk.gdk import ACTION_COPY
import pango
@@ -91,6 +90,7 @@ NAME_FILE = "name.txt"
META_NAME = "meta_data.db"
ARCHIVE = "rev.gramps"
ARCHIVE_V = "rev.gramps,v"
+_GLADE_FILE = "dbmanager.glade"
NAME_COL = 0
PATH_COL = 1
@@ -341,21 +341,20 @@ class DbManager(CLIDbManager):
the GTK widgets that are needed.
"""
CLIDbManager.__init__(self, dbstate)
- self.glade = glade.XML(const.GLADE_FILE, "dbmanager", "gramps")
- self.top = self.glade.get_widget('dbmanager')
+
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.glade = gtk.Builder()
+ self.glade.add_from_file(glade_file)
+
+ self.top = self.glade.get_object('dbmanager')
if parent:
self.top.set_transient_for(parent)
- self.connect = self.glade.get_widget('connect')
- self.cancel = self.glade.get_widget('cancel')
- self.new = self.glade.get_widget('new')
- self.remove = self.glade.get_widget('remove')
- self.dblist = self.glade.get_widget('dblist')
- self.rename = self.glade.get_widget('rename')
- self.repair = self.glade.get_widget('repair')
- self.rcs = self.glade.get_widget('rcs')
- self.msg = self.glade.get_widget('msg')
- self.model = None
+ for attr in ['connect', 'cancel', 'new', 'remove',
+ 'dblist', 'rename', 'repair', 'rcs', 'msg']:
+ setattr(self, attr, self.glade.get_object(attr))
+
+ self.model = None
self.column = None
self.lock_file = None
self.data_to_delete = None
@@ -527,8 +526,7 @@ class DbManager(CLIDbManager):
#use current names to set up the model
for items in self.current_names:
- data = [items[0], items[1], items[2], items[3],
- items[4], items[5], items[6]]
+ data = list(items[:7])
node = self.model.append(None, data)
for rdata in find_revisions(os.path.join(items[1], ARCHIVE_V)):
data = [ rdata[2], rdata[0], items[1], rdata[1], 0, False, "" ]
@@ -1120,10 +1118,13 @@ def check_in(dbase, filename, callback, cursor_func = None):
init = [ "rcs", '-x,v', '-i', '-U', '-q', '-t-"GRAMPS database"' ]
ci_cmd = [ "ci", '-x,v', "-q", "-f" ]
archive_name = filename + ",v"
-
- glade_xml_file = glade.XML(const.GLADE_FILE, "comment", "gramps")
- top = glade_xml_file.get_widget('comment')
- text = glade_xml_file.get_widget('description')
+
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.glade = gtk.Builder()
+ self.glade.add_from_file(glade_file)
+
+ top = self.glade.get_object('comment')
+ text = self.glade.get_object('description')
top.run()
comment = text.get_text()
diff --git a/src/DisplayState.py b/src/DisplayState.py
index 189f1e881..79da1c622 100644
--- a/src/DisplayState.py
+++ b/src/DisplayState.py
@@ -28,6 +28,7 @@
#-------------------------------------------------------------------------
from cStringIO import StringIO
from gettext import gettext as _
+import os
#-------------------------------------------------------------------------
#
@@ -43,7 +44,6 @@ _LOG = logging.getLogger(".DisplayState")
#
#-------------------------------------------------------------------------
import gtk
-from gtk import glade
import gobject
#-------------------------------------------------------------------------
@@ -59,6 +59,7 @@ import ManagedWindow
from gen.plug import PluginManager
DISABLED = -1
+_GLADE_FILE = 'displaystate.glade'
#-------------------------------------------------------------------------
#
@@ -284,7 +285,9 @@ class WarnHandler(RotateHandler):
def display(self, obj):
obj.hide()
- xml = glade.XML(const.GLADE_FILE, 'scrollmsg')
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.xml = gtk.Builder()
+ self.xml.add_from_file(glade_file)
top = xml.get_widget('scrollmsg')
msg = xml.get_widget('msg')
buf = msg.get_buffer()
diff --git a/src/Editors/AddMedia.py b/src/Editors/AddMedia.py
index ecc57e3f5..1f3a0a150 100644
--- a/src/Editors/AddMedia.py
+++ b/src/Editors/AddMedia.py
@@ -44,7 +44,6 @@ from gettext import gettext as _
#
#-------------------------------------------------------------------------
import gtk
-from gtk import glade
#-------------------------------------------------------------------------
#
@@ -64,7 +63,7 @@ from QuestionDialog import ErrorDialog, WarningDialog
# global variables
#
#-------------------------------------------------------------------------
-
+_GLADE_FILE = 'addmedia.glade'
#-------------------------------------------------------------------------
@@ -94,17 +93,19 @@ class AddMediaObject(ManagedWindow.ManagedWindow):
self.last_directory = Config.get(Config.ADDMEDIA_IMGDIR)
self.relative_path = Config.get(Config.ADDMEDIA_RELPATH)
-
- self.glade = glade.XML(const.GLADE_FILE, "imageSelect", "gramps")
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.glade = gtk.Builder()
+ self.glade.add_from_file(glade_file)
+
self.set_window(
- self.glade.get_widget("imageSelect"),
- self.glade.get_widget('title'),
+ self.glade.get_object("imageSelect"),
+ self.glade.get_object('title'),
_('Select a media object'))
- self.description = self.glade.get_widget("photoDescription")
- self.image = self.glade.get_widget("image")
- self.file_text = self.glade.get_widget("fname")
+ self.description = self.glade.get_object("photoDescription")
+ self.image = self.glade.get_object("image")
+ self.file_text = self.glade.get_object("fname")
if not(self.last_directory and os.path.isdir(self.last_directory)):
self.last_directory = const.USER_HOME
#if existing path, use dir of path
@@ -121,16 +122,16 @@ class AddMediaObject(ManagedWindow.ManagedWindow):
if not self.obj.get_description() == "":
self.description.set_text(self.obj.get_description())
- self.relpath = self.glade.get_widget('relpath')
+ self.relpath = self.glade.get_object('relpath')
self.relpath.set_active(self.relative_path)
self.temp_name = ""
self.object = None
- self.glade.get_widget('fname').connect('update_preview',
+ self.glade.get_object('fname').connect('update_preview',
self.on_name_changed)
- self.ok_button = self.glade.get_widget('button79')
- self.help_button = self.glade.get_widget('button103')
- self.cancel_button = self.glade.get_widget('button81')
+ self.ok_button = self.glade.get_object('button79')
+ self.help_button = self.glade.get_object('button103')
+ self.cancel_button = self.glade.get_object('button81')
self.ok_button.connect('clicked',self.save)
self.ok_button.set_sensitive(not self.dbase.readonly)
self.help_button.connect('clicked', lambda x: GrampsDisplay.help())
@@ -171,8 +172,7 @@ class AddMediaObject(ManagedWindow.ManagedWindow):
return
mtype = Mime.get_type(full_file)
- if description == "":
- description = os.path.basename(filename)
+ description = description or os.path.basename(filename)
self.obj.set_description(description)
self.obj.set_mime_type(mtype)
diff --git a/src/Editors/_EditSource.py b/src/Editors/_EditSource.py
index 1a355bfd8..4bdb2a841 100644
--- a/src/Editors/_EditSource.py
+++ b/src/Editors/_EditSource.py
@@ -27,7 +27,7 @@
#
#-------------------------------------------------------------------------
from gettext import gettext as _
-
+import os
import logging
log = logging.getLogger(".")
@@ -37,7 +37,6 @@ log = logging.getLogger(".")
#
#-------------------------------------------------------------------------
import gtk
-from gtk import glade
#-------------------------------------------------------------------------
#
@@ -59,6 +58,8 @@ from QuestionDialog import ErrorDialog
# Constants
#
#-------------------------------------------------------------------------
+_GLADE_FILE = "editsource.glade"
+
class EditSource(EditPrimary):
def __init__(self, dbstate, uistate, track, source):
@@ -82,39 +83,42 @@ class EditSource(EditPrimary):
self.width_key = Config.SOURCE_WIDTH
self.height_key = Config.SOURCE_HEIGHT
assert(self.obj)
- self.glade = glade.XML(const.GLADE_FILE, "source_editor","gramps")
+
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.glade = gtk.Builder()
+ self.glade.add_from_file(glade_file)
- self.set_window(self.glade.get_widget("source_editor"), None,
+ self.set_window(self.glade.get_object("source_editor"), None,
self.get_menu_title())
def _connect_signals(self):
- self.define_ok_button(self.glade.get_widget('ok'),self.save)
- self.define_cancel_button(self.glade.get_widget('cancel'))
- self.define_help_button(self.glade.get_widget('help'))
+ self.define_ok_button(self.glade.get_object('ok'),self.save)
+ self.define_cancel_button(self.glade.get_object('cancel'))
+ self.define_help_button(self.glade.get_object('help'))
def _setup_fields(self):
- self.author = MonitoredEntry(self.glade.get_widget("author"),
+ self.author = MonitoredEntry(self.glade.get_object("author"),
self.obj.set_author, self.obj.get_author,
self.db.readonly)
- self.pubinfo = MonitoredEntry(self.glade.get_widget("pubinfo"),
+ self.pubinfo = MonitoredEntry(self.glade.get_object("pubinfo"),
self.obj.set_publication_info,
self.obj.get_publication_info,
self.db.readonly)
- self.gid = MonitoredEntry(self.glade.get_widget("gid"),
+ self.gid = MonitoredEntry(self.glade.get_object("gid"),
self.obj.set_gramps_id,
self.obj.get_gramps_id, self.db.readonly)
- self.priv = PrivacyButton(self.glade.get_widget("private"), self.obj,
+ self.priv = PrivacyButton(self.glade.get_object("private"), self.obj,
self.db.readonly)
- self.abbrev = MonitoredEntry(self.glade.get_widget("abbrev"),
+ self.abbrev = MonitoredEntry(self.glade.get_object("abbrev"),
self.obj.set_abbreviation,
self.obj.get_abbreviation,
self.db.readonly)
- self.title = MonitoredEntry(self.glade.get_widget("source_title"),
+ self.title = MonitoredEntry(self.glade.get_object("source_title"),
self.obj.set_title, self.obj.get_title,
self.db.readonly)
@@ -161,7 +165,7 @@ class EditSource(EditPrimary):
self._setup_notebook_tabs(notebook)
notebook.show_all()
- self.glade.get_widget('vbox').pack_start(notebook, True)
+ self.glade.get_object('vbox').pack_start(notebook, True)
def build_menu_names(self, source):
return (_('Edit Source'), self.get_menu_title())
diff --git a/src/GrampsCfg.py b/src/GrampsCfg.py
index 970c57de4..d81785e81 100644
--- a/src/GrampsCfg.py
+++ b/src/GrampsCfg.py
@@ -37,7 +37,6 @@ from xml.sax.saxutils import escape
#
#-------------------------------------------------------------------------
import gtk
-from gtk import glade
import gobject
#-------------------------------------------------------------------------
@@ -70,6 +69,7 @@ if not const.VERSION.find('SVN') == -1:
# Constants
#
#-------------------------------------------------------------------------
+_GLADE_FILE = 'grampscfg.glade'
_surname_styles = [
_("Father's surname"),
@@ -471,6 +471,7 @@ class GrampsPreferences(ManagedWindow.ManagedWindow):
def __edit_name(self, obj):
store, node = self.format_list.get_selection().get_selected()
path = self.fmt_model.get_path(node)
+ self.__current_path = path
self.edit_button.set_sensitive(False)
self.remove_button.set_sensitive(False)
self.insert_button.set_sensitive(False)
@@ -1106,18 +1107,21 @@ class NameFormatEditDlg:
self.fmt_str = fmt_str
self.name = name
self.valid = True
-
- self.top = glade.XML(const.GLADE_FILE, 'namefmt_edit', 'gramps')
- self.dlg = self.top.get_widget('namefmt_edit')
+ print "here"
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.top = gtk.Builder()
+ self.top.add_from_file(glade_file)
+
+ self.dlg = self.top.get_object('namefmt_edit')
ManagedWindow.set_titles(self.dlg, None, _('Name Format Editor'))
- self.examplelabel = self.top.get_widget('example_label')
+ self.examplelabel = self.top.get_object('example_label')
- self.nameentry = self.top.get_widget('name_entry')
+ self.nameentry = self.top.get_object('name_entry')
self.nameentry.set_text('%s' % self.fmt_name)
self.nameentry.set_use_markup(True)
- self.formatentry = self.top.get_widget('format_entry')
+ self.formatentry = self.top.get_object('format_entry')
self.formatentry.connect('changed', self.cb_format_changed)
self.formatentry.set_text(self.fmt_str)
diff --git a/src/QuestionDialog.py b/src/QuestionDialog.py
index 8825a6d10..d19836362 100644
--- a/src/QuestionDialog.py
+++ b/src/QuestionDialog.py
@@ -26,6 +26,7 @@
#
#-------------------------------------------------------------------------
from gettext import gettext as _
+import os
#-------------------------------------------------------------------------
#
@@ -33,7 +34,6 @@ from gettext import gettext as _
#
#-------------------------------------------------------------------------
import gtk
-from gtk import glade
from gtk.gdk import pixbuf_new_from_file
#-------------------------------------------------------------------------
@@ -44,6 +44,8 @@ from gtk.gdk import pixbuf_new_from_file
import const
import Config
+_GLADE_FILE = 'questiondialog.glade'
+
try:
ICON = pixbuf_new_from_file(const.ICON)
except:
@@ -51,20 +53,23 @@ except:
class SaveDialog:
def __init__(self,msg1,msg2,task1,task2,parent=None):
- self.xml = glade.XML(const.GLADE_FILE,"savedialog","gramps")
- self.top = self.xml.get_widget('savedialog')
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.xml = gtk.Builder()
+ self.xml.add_from_file(glade_file)
+
+ self.top = self.xml.get_object('savedialog')
self.top.set_icon(ICON)
self.top.set_title("%s - GRAMPS" % msg1)
- self.dontask = self.xml.get_widget('dontask')
+ self.dontask = self.xml.get_object('dontask')
self.task1 = task1
self.task2 = task2
- label1 = self.xml.get_widget('label1')
+ label1 = self.xml.get_object('sd_label1')
label1.set_text('%s' % msg1)
label1.set_use_markup(True)
- label2 = self.xml.get_widget('label2')
+ label2 = self.xml.get_object('sd_label2')
label2.set_text(msg2)
label2.set_use_markup(True)
if parent:
@@ -81,20 +86,23 @@ class SaveDialog:
class QuestionDialog:
def __init__(self,msg1,msg2,label,task,parent=None):
- self.xml = glade.XML(const.GLADE_FILE,"questiondialog","gramps")
- self.top = self.xml.get_widget('questiondialog')
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.xml = gtk.Builder()
+ self.xml.add_from_file(glade_file)
+
+ self.top = self.xml.get_object('questiondialog')
self.top.set_icon(ICON)
self.top.set_title("%s - GRAMPS" % msg1)
- label1 = self.xml.get_widget('label1')
+ label1 = self.xml.get_object('qd_label1')
label1.set_text('%s' % msg1)
label1.set_use_markup(True)
- label2 = self.xml.get_widget('label2')
+ label2 = self.xml.get_object('qd_label2')
label2.set_text(msg2)
label2.set_use_markup(True)
- self.xml.get_widget('okbutton').set_label(label)
+ self.xml.get_object('okbutton').set_label(label)
if parent:
self.top.set_transient_for(parent)
@@ -106,23 +114,26 @@ class QuestionDialog:
class QuestionDialog2:
def __init__(self,msg1,msg2,label_msg1,label_msg2,parent=None):
- self.xml = glade.XML(const.GLADE_FILE,"questiondialog","gramps")
- self.top = self.xml.get_widget('questiondialog')
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.xml = gtk.Builder()
+ self.xml.add_from_file(glade_file)
+
+ self.top = self.xml.get_object('questiondialog')
self.top.set_icon(ICON)
self.top.set_title("%s - GRAMPS" % msg1)
- label1 = self.xml.get_widget('label1')
+ label1 = self.xml.get_object('qd_label1')
label1.set_text('%s' % msg1)
label1.set_use_markup(True)
- label2 = self.xml.get_widget('label2')
+ label2 = self.xml.get_object('qd_label2')
label2.set_text(msg2)
label2.set_use_markup(True)
- self.xml.get_widget('okbutton').set_label(label_msg1)
- self.xml.get_widget('okbutton').set_use_underline(True)
- self.xml.get_widget('no').set_label(label_msg2)
- self.xml.get_widget('no').set_use_underline(True)
+ self.xml.get_object('okbutton').set_label(label_msg1)
+ self.xml.get_object('okbutton').set_use_underline(True)
+ self.xml.get_object('no').set_label(label_msg2)
+ self.xml.get_object('no').set_use_underline(True)
if parent:
self.top.set_transient_for(parent)
@@ -135,21 +146,24 @@ class QuestionDialog2:
class OptionDialog:
def __init__(self,msg1,msg2,btnmsg1,task1,btnmsg2,task2,parent=None):
- self.xml = glade.XML(const.GLADE_FILE,"optiondialog","gramps")
- self.top = self.xml.get_widget('optiondialog')
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.xml = gtk.Builder()
+ self.xml.add_from_file(glade_file)
+
+ self.top = self.xml.get_object('optiondialog')
self.top.set_icon(ICON)
self.top.set_title("%s - GRAMPS" % msg1)
- label1 = self.xml.get_widget('label1')
+ label1 = self.xml.get_object('od_label1')
label1.set_text('%s' % msg1)
label1.set_use_markup(True)
- label2 = self.xml.get_widget('label2')
+ label2 = self.xml.get_object('od_label2')
label2.set_text(msg2)
label2.set_use_markup(True)
- self.xml.get_widget('option1').set_label(btnmsg1)
- self.xml.get_widget('option2').set_label(btnmsg2)
+ self.xml.get_object('option1').set_label(btnmsg1)
+ self.xml.get_object('option2').set_label(btnmsg2)
if parent:
self.top.set_transient_for(parent)
self.top.show()
@@ -236,16 +250,19 @@ class InfoDialog:
Dialog to show selectable info in a scrolled window
"""
def __init__(self, msg1, infotext, parent=None):
- self.xml = glade.XML(const.GLADE_FILE, "infodialog", "gramps")
- self.top = self.xml.get_widget('infodialog')
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.xml = gtk.Builder()
+ self.xml.add_from_file(glade_file)
+
+ self.top = self.xml.get_object('infodialog')
self.top.set_icon(ICON)
self.top.set_title("%s - GRAMPS" % msg1)
- label = self.xml.get_widget('toplabel')
+ label = self.xml.get_object('toplabel')
label.set_text('%s' % msg1)
label.set_use_markup(True)
- infoview = self.xml.get_widget('infoview')
+ infoview = self.xml.get_object('infoview')
infobuffer = gtk.TextBuffer()
infobuffer.set_text(infotext)
infoview.set_buffer(infobuffer)
@@ -262,8 +279,11 @@ class InfoDialog:
class MissingMediaDialog:
def __init__(self,msg1,msg2,task1,task2,task3,parent=None):
- self.xml = glade.XML(const.GLADE_FILE,"missmediadialog","gramps")
- self.top = self.xml.get_widget('missmediadialog')
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.xml = gtk.Builder()
+ self.xml.add_from_file(glade_file)
+
+ self.top = self.xml.get_object('missmediadialog')
self.top.set_icon(ICON)
self.top.set_title("%s - GRAMPS" % msg1)
@@ -271,15 +291,15 @@ class MissingMediaDialog:
self.task2 = task2
self.task3 = task3
- label1 = self.xml.get_widget('label4')
+ label1 = self.xml.get_object('label4')
label1.set_text('%s' % msg1)
label1.set_use_markup(True)
- label2 = self.xml.get_widget('label3')
+ label2 = self.xml.get_object('label3')
label2.set_text(msg2)
label2.set_use_markup(True)
- check_button = self.xml.get_widget('use_always')
+ check_button = self.xml.get_object('use_always')
if parent:
self.top.set_transient_for(parent)
@@ -316,20 +336,22 @@ class MissingMediaDialog:
class MessageHideDialog:
def __init__(self, title, message, key, parent=None):
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.xml = gtk.Builder()
+ self.xml.add_from_file(glade_file)
- glade_xml = glade.XML(const.GLADE_FILE, "hide_dialog", "gramps")
- top = glade_xml.get_widget('hide_dialog')
+ top = self.xml.get_object('hide_dialog')
top.set_icon(ICON)
top.set_title("%s - GRAMPS" % title)
- dont_show = glade_xml.get_widget('dont_show')
+ dont_show = self.xml.get_object('dont_show')
dont_show.set_active(Config.get(key))
- title_label = glade_xml.get_widget('title')
+ title_label = self.xml.get_object('title')
title_label.set_text(
'%s' % title)
title_label.set_use_markup(True)
- glade_xml.get_widget('message').set_text(message)
+ self.xml.get_object('message').set_text(message)
dont_show.connect('toggled',self.update_checkbox, key)
top.run()
diff --git a/src/Reorder.py b/src/Reorder.py
index 599c36ce8..7be84212c 100644
--- a/src/Reorder.py
+++ b/src/Reorder.py
@@ -20,7 +20,8 @@
from gettext import gettext as _
-from gtk import glade
+import gtk
+import os
import const
@@ -30,13 +31,15 @@ import ManagedWindow
PARENT_TITLES = [(_('Father'), -1, 200), (_('Mother'), -1, 200), ('', -1, 0)]
FAMILY_TITLES = [(_('Spouse'), -1, 200), (_('Relationship'), -1, 200), ('', -1, 0)]
-
+_GLADE_FILE = 'reorder.glade'
class Reorder(ManagedWindow.ManagedWindow):
def __init__(self, state, uistate, track, handle):
- xml = glade.XML(const.GLADE_FILE, "reorder", "gramps")
- top = xml.get_widget('reorder')
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ xml = gtk.Builder()
+ xml.add_from_file(glade_file)
+ top = xml.get_object('reorder')
self.dbstate = state
ManagedWindow.ManagedWindow.__init__(self, uistate, track, self)
@@ -50,28 +53,28 @@ class Reorder(ManagedWindow.ManagedWindow):
self.set_window(top, None, _("Reorder Relationships"))
- self.ptree = xml.get_widget('ptree')
+ self.ptree = xml.get_object('ptree')
self.pmodel = ListModel.ListModel(self.ptree, PARENT_TITLES)
- self.ftree = xml.get_widget('ftree')
+ self.ftree = xml.get_object('ftree')
self.fmodel = ListModel.ListModel(self.ftree, FAMILY_TITLES)
- xml.get_widget('ok').connect('clicked', self.ok_clicked)
- xml.get_widget('cancel').connect('clicked', self.cancel_clicked)
+ xml.get_object('ok').connect('clicked', self.ok_clicked)
+ xml.get_object('cancel').connect('clicked', self.cancel_clicked)
- fup = xml.get_widget('fup')
+ fup = xml.get_object('fup')
fup.connect('clicked', self.fup_clicked)
fup.set_sensitive(fenable)
- fdown = xml.get_widget('fdown')
+ fdown = xml.get_object('fdown')
fdown.connect('clicked', self.fdown_clicked)
fdown.set_sensitive(fenable)
- pup = xml.get_widget('pup')
+ pup = xml.get_object('pup')
pup.connect('clicked', self.pup_clicked)
pup.set_sensitive(penable)
- pdown = xml.get_widget('pdown')
+ pdown = xml.get_object('pdown')
pdown.connect('clicked', self.pdown_clicked)
pdown.set_sensitive(penable)
diff --git a/src/ReportBase/_StyleEditor.py b/src/ReportBase/_StyleEditor.py
index 8c4e05754..f95316701 100644
--- a/src/ReportBase/_StyleEditor.py
+++ b/src/ReportBase/_StyleEditor.py
@@ -32,6 +32,7 @@ Paragraph/Font style editor
#
#------------------------------------------------------------------------
from TransUtils import sgettext as _
+import os
import logging
log = logging.getLogger(".")
@@ -42,7 +43,6 @@ log = logging.getLogger(".")
#------------------------------------------------------------------------
import gtk
from gtk.gdk import Color
-from gtk import glade
#------------------------------------------------------------------------
#
@@ -55,6 +55,13 @@ import BaseDoc
import ListModel
import ManagedWindow
+#------------------------------------------------------------------------
+#
+# Constants
+#
+#------------------------------------------------------------------------
+_GLADE_FILE = "styleeditor.glade"
+
#------------------------------------------------------------------------
#
# StyleList class
@@ -77,14 +84,18 @@ class StyleListDisplay:
self.callback = callback
self.sheetlist = stylesheetlist
- self.top = glade.XML(const.GLADE_FILE, "styles", "gramps")
- self.window = self.top.get_widget('styles')
+
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.top = gtk.Builder()
+ self.top.add_from_file(glade_file)
+
+ self.window = self.top.get_object('styles')
ManagedWindow.set_titles( self.window,
- self.top.get_widget('title'),
+ self.top.get_object('title'),
_('Document Styles') )
- self.top.signal_autoconnect({
+ self.top.connect_signals({
"destroy_passed_object" : self.__close,
"on_ok_clicked" : self.on_ok_clicked,
"on_add_clicked" : self.on_add_clicked,
@@ -93,11 +104,11 @@ class StyleListDisplay:
"on_edit_clicked" : self.on_edit_clicked
})
- title_label = self.top.get_widget('title')
+ title_label = self.top.get_object('title')
title_label.set_text(Utils.title(_('Style Editor')))
title_label.set_use_markup(True)
- self.list = ListModel.ListModel(self.top.get_widget("list"),
+ self.list = ListModel.ListModel(self.top.get_object("list"),
[(_('Style'), -1, 10)], )
self.redraw()
if parent_window:
@@ -190,29 +201,31 @@ class StyleEditor:
self.style = BaseDoc.StyleSheet(style)
self.parent = parent
- self.top = glade.XML(const.GLADE_FILE, "editor", "gramps")
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.top = gtk.Builder()
+ self.top.add_from_file(glade_file)
- self.top.signal_autoconnect({
+ self.top.connect_signals({
"on_save_style_clicked" : self.on_save_style_clicked,
"destroy_passed_object" : self.__close,
})
- self.window = self.top.get_widget("editor")
- self.pname = self.top.get_widget('pname')
- self.pdescription = self.top.get_widget('pdescription')
+ self.window = self.top.get_object("editor")
+ self.pname = self.top.get_object('pname')
+ self.pdescription = self.top.get_object('pdescription')
ManagedWindow.set_titles( self.window,
- self.top.get_widget('title'),
+ self.top.get_object('title'),
_('Style editor'))
- self.top.get_widget("label6").set_text(_("point size|pt"))
+ self.top.get_object("label6").set_text(_("point size|pt"))
titles = [(_('Paragraph'), 0, 130)]
- self.plist = ListModel.ListModel(self.top.get_widget("ptree"), titles,
+ self.plist = ListModel.ListModel(self.top.get_object("ptree"), titles,
self.change_display)
- self.top.get_widget('color').connect('color-set', self.fg_color_set)
- self.top.get_widget('bgcolor').connect('color-set', self.bg_color_set)
- self.top.get_widget("style_name").set_text(name)
+ self.top.get_object('color').connect('color-set', self.fg_color_set)
+ self.top.get_object('bgcolor').connect('color-set', self.bg_color_set)
+ self.top.get_object("style_name").set_text(name)
names = self.style.get_paragraph_style_names()
names.reverse()
@@ -237,100 +250,97 @@ class StyleEditor:
self.pname.set_use_markup(True)
descr = p.get_description()
- if descr:
- self.pdescription.set_text(descr)
- else:
- self.pdescription.set_text(_("No description available"))
+ self.pdescription.set_text(descr or _("No description available") )
font = p.get_font()
- self.top.get_widget("size").set_value(font.get_size())
+ self.top.get_object("size").set_value(font.get_size())
if font.get_type_face() == BaseDoc.FONT_SERIF:
- self.top.get_widget("roman").set_active(1)
+ self.top.get_object("roman").set_active(1)
else:
- self.top.get_widget("swiss").set_active(1)
- self.top.get_widget("bold").set_active(font.get_bold())
- self.top.get_widget("italic").set_active(font.get_italic())
- self.top.get_widget("underline").set_active(font.get_underline())
+ self.top.get_object("swiss").set_active(1)
+ self.top.get_object("bold").set_active(font.get_bold())
+ self.top.get_object("italic").set_active(font.get_italic())
+ self.top.get_object("underline").set_active(font.get_underline())
if p.get_alignment() == BaseDoc.PARA_ALIGN_LEFT:
- self.top.get_widget("lalign").set_active(1)
+ self.top.get_object("lalign").set_active(1)
elif p.get_alignment() == BaseDoc.PARA_ALIGN_RIGHT:
- self.top.get_widget("ralign").set_active(1)
+ self.top.get_object("ralign").set_active(1)
elif p.get_alignment() == BaseDoc.PARA_ALIGN_CENTER:
- self.top.get_widget("calign").set_active(1)
+ self.top.get_object("calign").set_active(1)
else:
- self.top.get_widget("jalign").set_active(1)
- self.top.get_widget("rmargin").set_value(p.get_right_margin())
- self.top.get_widget("lmargin").set_value(p.get_left_margin())
- self.top.get_widget("pad").set_value(p.get_padding())
- self.top.get_widget("tmargin").set_value(p.get_top_margin())
- self.top.get_widget("bmargin").set_value(p.get_bottom_margin())
- self.top.get_widget("indent").set_value(p.get_first_indent())
- self.top.get_widget("tborder").set_active(p.get_top_border())
- self.top.get_widget("lborder").set_active(p.get_left_border())
- self.top.get_widget("rborder").set_active(p.get_right_border())
- self.top.get_widget("bborder").set_active(p.get_bottom_border())
+ self.top.get_object("jalign").set_active(1)
+ self.top.get_object("rmargin").set_value(p.get_right_margin())
+ self.top.get_object("lmargin").set_value(p.get_left_margin())
+ self.top.get_object("pad").set_value(p.get_padding())
+ self.top.get_object("tmargin").set_value(p.get_top_margin())
+ self.top.get_object("bmargin").set_value(p.get_bottom_margin())
+ self.top.get_object("indent").set_value(p.get_first_indent())
+ self.top.get_object("tborder").set_active(p.get_top_border())
+ self.top.get_object("lborder").set_active(p.get_left_border())
+ self.top.get_object("rborder").set_active(p.get_right_border())
+ self.top.get_object("bborder").set_active(p.get_bottom_border())
self.fg_color = font.get_color()
c = Color(self.fg_color[0] << 8,
self.fg_color[1] << 8,
self.fg_color[2] << 8)
- self.top.get_widget("color").set_color(c)
- self.top.get_widget('color_code').set_text(
+ self.top.get_object("color").set_color(c)
+ self.top.get_object('color_code').set_text(
"#%02X%02X%02X" % self.fg_color)
self.bg_color = p.get_background_color()
c = Color(self.bg_color[0] << 8,
self.bg_color[1] << 8,
self.bg_color[2] << 8)
- self.top.get_widget("bgcolor").set_color(c)
- self.top.get_widget('bgcolor_code').set_text(
+ self.top.get_object("bgcolor").set_color(c)
+ self.top.get_object('bgcolor_code').set_text(
"#%02X%02X%02X" % self.bg_color)
def bg_color_set(self, x):
c = x.get_color()
self.bg_color = (c.red >> 8, c.green >> 8, c.blue >> 8)
- self.top.get_widget('bgcolor_code').set_text(
+ self.top.get_object('bgcolor_code').set_text(
"#%02X%02X%02X" % self.bg_color)
def fg_color_set(self, x):
c = x.get_color()
self.fg_color = (c.red >> 8, c.green >> 8, c.blue >> 8)
- self.top.get_widget('color_code').set_text(
+ self.top.get_object('color_code').set_text(
"#%02X%02X%02X" % self.fg_color)
def save_paragraph(self):
"""Saves the current paragraph displayed on the dialog"""
p = self.current_p
font = p.get_font()
- font.set_size(self.top.get_widget("size").get_value_as_int())
+ font.set_size(self.top.get_object("size").get_value_as_int())
- if self.top.get_widget("roman").get_active():
+ if self.top.get_object("roman").get_active():
font.set_type_face(BaseDoc.FONT_SERIF)
else:
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
- font.set_bold(self.top.get_widget("bold").get_active())
- font.set_italic(self.top.get_widget("italic").get_active())
- font.set_underline(self.top.get_widget("underline").get_active())
- if self.top.get_widget("lalign").get_active():
+ font.set_bold(self.top.get_object("bold").get_active())
+ font.set_italic(self.top.get_object("italic").get_active())
+ font.set_underline(self.top.get_object("underline").get_active())
+ if self.top.get_object("lalign").get_active():
p.set_alignment(BaseDoc.PARA_ALIGN_LEFT)
- elif self.top.get_widget("ralign").get_active():
+ elif self.top.get_object("ralign").get_active():
p.set_alignment(BaseDoc.PARA_ALIGN_RIGHT)
- elif self.top.get_widget("calign").get_active():
+ elif self.top.get_object("calign").get_active():
p.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
else:
p.set_alignment(BaseDoc.PARA_ALIGN_JUSTIFY)
- p.set_right_margin(self.top.get_widget("rmargin").get_value())
- p.set_left_margin(self.top.get_widget("lmargin").get_value())
- p.set_top_margin(self.top.get_widget("tmargin").get_value())
- p.set_bottom_margin(self.top.get_widget("bmargin").get_value())
- p.set_padding(self.top.get_widget("pad").get_value())
- p.set_first_indent(self.top.get_widget("indent").get_value())
- p.set_top_border(self.top.get_widget("tborder").get_active())
- p.set_left_border(self.top.get_widget("lborder").get_active())
- p.set_right_border(self.top.get_widget("rborder").get_active())
- p.set_bottom_border(self.top.get_widget("bborder").get_active())
+ p.set_right_margin(self.top.get_object("rmargin").get_value())
+ p.set_left_margin(self.top.get_object("lmargin").get_value())
+ p.set_top_margin(self.top.get_object("tmargin").get_value())
+ p.set_bottom_margin(self.top.get_object("bmargin").get_value())
+ p.set_padding(self.top.get_object("pad").get_value())
+ p.set_first_indent(self.top.get_object("indent").get_value())
+ p.set_top_border(self.top.get_object("tborder").get_active())
+ p.set_left_border(self.top.get_object("lborder").get_active())
+ p.set_right_border(self.top.get_object("rborder").get_active())
+ p.set_bottom_border(self.top.get_object("bborder").get_active())
font.set_color(self.fg_color)
p.set_background_color(self.bg_color)
@@ -342,7 +352,7 @@ class StyleEditor:
Saves the current style sheet and causes the parent to be updated with
the changes.
"""
- name = unicode(self.top.get_widget("style_name").get_text())
+ name = unicode(self.top.get_object("style_name").get_text())
self.save_paragraph()
self.style.set_name(name)
diff --git a/src/Selectors/_BaseSelector.py b/src/Selectors/_BaseSelector.py
index ae3f20ebd..bb6017e1b 100644
--- a/src/Selectors/_BaseSelector.py
+++ b/src/Selectors/_BaseSelector.py
@@ -28,7 +28,7 @@
#-------------------------------------------------------------------------
import gtk
import pango
-from gtk import glade
+import os
#-------------------------------------------------------------------------
#
@@ -40,6 +40,8 @@ import ManagedWindow
from Filters import SearchBar
from DisplayModels import PeopleModel
+_GLADE_FILE = 'baseselector.glade'
+
#-------------------------------------------------------------------------
#
# SelectEvent
@@ -74,12 +76,16 @@ class BaseSelector(ManagedWindow.ManagedWindow):
self.renderer.set_property('ellipsize',pango.ELLIPSIZE_END)
self.db = dbstate.db
- self.glade = glade.XML(const.GLADE_FILE,"select_person","gramps")
- window = self.glade.get_widget('select_person')
- self.showall = self.glade.get_widget('showall')
- title_label = self.glade.get_widget('title')
- vbox = self.glade.get_widget('select_person_vbox')
- self.tree = self.glade.get_widget('plist')
+
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ self.glade = gtk.Builder()
+ self.glade.add_from_file(glade_file)
+
+ window = self.glade.get_object('select_person')
+ self.showall = self.glade.get_object('showall')
+ title_label = self.glade.get_object('title')
+ vbox = self.glade.get_object('select_person_vbox')
+ self.tree = self.glade.get_object('plist')
self.tree.set_headers_visible(True)
self.tree.set_headers_clickable(True)
self.tree.connect('row-activated', self._on_row_activated)
@@ -156,15 +162,10 @@ class BaseSelector(ManagedWindow.ManagedWindow):
id_list = self.get_selected_ids()
self.close()
if id_list and id_list[0]:
- return_value = self.get_from_handle_func()(id_list[0])
- else:
- return_value = None
- return return_value
+ return self.get_from_handle_func()(id_list[0])
elif val != gtk.RESPONSE_DELETE_EVENT:
self.close()
- return None
- else:
- return None
+ return None
def _on_row_activated(self, treeview, path, view_col):
self.window.response(gtk.RESPONSE_OK)
@@ -210,10 +211,7 @@ class BaseSelector(ManagedWindow.ManagedWindow):
"""
mlist = []
self.selection.selected_foreach(self.begintree, mlist)
- if mlist:
- return mlist[0]
- else:
- return None
+ return mlist[0] if mlist else None
def column_order(self):
"""
@@ -303,10 +301,7 @@ class BaseSelector(ManagedWindow.ManagedWindow):
return True
def show_toggle(self, obj):
- if obj.get_active():
- filter = None
- else:
- filter = self.filter
+ filter = None if obj.get_active() else self.filter
self.model = PeopleModel(self.db, (PeopleModel.FAST, filter),
skip=self.skip_list)
diff --git a/src/Selectors/_SelectObject.py b/src/Selectors/_SelectObject.py
index a995d7a73..6b0d4cb9b 100644
--- a/src/Selectors/_SelectObject.py
+++ b/src/Selectors/_SelectObject.py
@@ -86,7 +86,7 @@ class SelectObject(BaseSelector):
self.preview = gtk.Image()
self.preview.set_size_request(int(const.THUMBSCALE),
int(const.THUMBSCALE))
- vbox = self.glade.get_widget('select_person_vbox')
+ vbox = self.glade.get_object('select_person_vbox')
vbox.pack_start(self.preview,False)
vbox.reorder_child(self.preview,1)
self.preview.show()
diff --git a/src/TipOfDay.py b/src/TipOfDay.py
index 928561751..5c9bf4446 100644
--- a/src/TipOfDay.py
+++ b/src/TipOfDay.py
@@ -39,7 +39,7 @@ import os
# GTK/GNOME modules
#
#-------------------------------------------------------------------------
-from gtk import glade
+import gtk
#-------------------------------------------------------------------------
#
@@ -51,6 +51,8 @@ import Config
import ManagedWindow
from QuestionDialog import ErrorDialog
+_GLADE_FILE = 'tipofday.glade'
+
#-------------------------------------------------------------------------
#
# Tip Display class
@@ -61,22 +63,25 @@ class TipOfDay(ManagedWindow.ManagedWindow):
ManagedWindow.ManagedWindow.__init__(self, uistate, [], self)
- xml = glade.XML(const.GLADE_FILE, "tod_window", "gramps")
- window = xml.get_widget("tod_window")
+ glade_file = os.path.join(const.GLADE_DIR, _GLADE_FILE)
+ xml = gtk.Builder()
+ xml.add_from_file(glade_file)
+
+ window = xml.get_object("tod_window")
self.set_window(window,
- xml.get_widget("title"),
+ xml.get_object("title"),
_("Tip of the Day"),
_("Tip of the Day"))
- self.tip = xml.get_widget("tip")
- self.use = xml.get_widget('usetips')
+ self.tip = xml.get_object("tip")
+ self.use = xml.get_object('usetips')
self.use.set_active(Config.get(Config.USE_TIPS))
- image = xml.get_widget('image')
+ image = xml.get_object('image')
image.set_from_file(os.path.join(const.IMAGE_DIR, 'splash.jpg'))
- next = xml.get_widget('next')
+ next = xml.get_object('next')
next.connect("clicked", self.next_tip_cb)
- close = xml.get_widget('close')
+ close = xml.get_object('close')
close.connect("clicked", self.close_cb)
try:
@@ -107,10 +112,7 @@ class TipOfDay(ManagedWindow.ManagedWindow):
tip_text = self.escape(self.tip_list[self.new_index[self.index]])
self.tip.set_text(_(tip_text))
self.tip.set_use_markup(True)
- if self.index >= len(self.tip_list)-1:
- self.index = 0
- else:
- self.index += 1
+ self.index = (self.index + 1) % len(self.tip_list)
def close_cb(self, dummy=None):
Config.set(Config.USE_TIPS, self.use.get_active())
diff --git a/src/glade/Makefile.am b/src/glade/Makefile.am
index 707c99e5d..05878ba09 100644
--- a/src/glade/Makefile.am
+++ b/src/glade/Makefile.am
@@ -10,5 +10,20 @@ dist_pkgdata_DATA = \
plugins.glade\
rule.glade\
scratchpad.glade\
- paper_settings.glade
+ paper_settings.glade \
+ grampletview.glade \
+ gramps.glade \
+ baseselector.glade \
+ reorder.glade \
+ tipofday.glade \
+ displaystate.glade \
+ addmedia.glade \
+ questiondialog.glade \
+ columnorder.glade \
+ grampscfg.glade \
+ dateedit.glade \
+ editsource.glade \
+ styleeditor.glade \
+ dbmanager.glade
+
diff --git a/src/glade/addmedia.glade b/src/glade/addmedia.glade
new file mode 100644
index 000000000..9819c96a6
--- /dev/null
+++ b/src/glade/addmedia.glade
@@ -0,0 +1,207 @@
+
+
+
+
+
+
diff --git a/src/glade/baseselector.glade b/src/glade/baseselector.glade
new file mode 100644
index 000000000..c6d4555f3
--- /dev/null
+++ b/src/glade/baseselector.glade
@@ -0,0 +1,118 @@
+
+
+
+
+
+ True
+ center-on-parent
+ 600
+ 450
+ dialog
+ False
+
+
+ True
+
+
+ True
+ 6
+ vertical
+ 6
+
+
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ automatic
+ automatic
+ in
+
+
+ True
+ True
+ True
+ True
+
+
+
+
+ 1
+
+
+
+
+ Show all
+ True
+ False
+ True
+ True
+
+
+ False
+ False
+ 2
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ True
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ True
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ cancelbutton1
+ okbutton1
+
+
+
diff --git a/src/glade/columnorder.glade b/src/glade/columnorder.glade
new file mode 100644
index 000000000..514e02b58
--- /dev/null
+++ b/src/glade/columnorder.glade
@@ -0,0 +1,94 @@
+
+
+
+
+
+ True
+ dialog
+ False
+
+
+ True
+
+
+ True
+ 12
+ 3
+ 6
+ 6
+
+
+ 400
+ 300
+ True
+ True
+ automatic
+ automatic
+ in
+
+
+ True
+ True
+ True
+
+
+
+
+ 3
+
+
+
+
+ 6
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ cancelbutton
+ okbutton
+
+
+
diff --git a/src/glade/dateedit.glade b/src/glade/dateedit.glade
new file mode 100644
index 000000000..5ddc9e340
--- /dev/null
+++ b/src/glade/dateedit.glade
@@ -0,0 +1,646 @@
+
+
+
+
+
+ 31
+ 1
+ 10
+
+
+ -9999
+ 99999
+ 1
+ 10
+
+
+ 31
+ 1
+ 10
+
+
+ -9999
+ 99999
+ 1
+ 10
+
+
+ dialog
+ False
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+
+
+ True
+ 0
+ Calenda_r:
+ True
+ calendar_box
+
+
+ False
+ 6
+ 0
+
+
+
+
+ True
+ calendar_model
+
+
+
+ 0
+
+
+
+
+ 6
+ 1
+
+
+
+
+ False
+ 6
+ 0
+
+
+
+
+ True
+
+
+ True
+
+
+ False
+ False
+ 15
+ 0
+
+
+
+
+ Dua_l dated
+ True
+ True
+ False
+ Old Style/New Style
+ True
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ True
+ 1
+ Ne_w year begins:
+ True
+ right
+
+
+ 2
+
+
+
+
+ True
+ newyear_model
+
+
+
+
+ 0
+
+
+
+
+ 3
+
+
+
+
+ 6
+ 1
+
+
+
+
+ True
+ 5
+ 8
+ 6
+ 6
+
+
+ True
+ 0
+ 6
+ <b>Q_uality</b>
+ True
+ True
+ quality_box
+
+
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ quality_model
+
+
+
+ 0
+
+
+
+
+ 1
+ 4
+ 1
+ 2
+ GTK_FILL
+ GTK_FILL
+ 6
+ 6
+
+
+
+
+ True
+ 0
+ 6
+ <b>_Type</b>
+ True
+ True
+ type_box
+
+
+ 4
+ 8
+ GTK_FILL
+
+
+
+
+
+ True
+ type_model
+
+
+
+ 0
+
+
+
+
+ 5
+ 8
+ 1
+ 2
+ GTK_FILL
+ GTK_FILL
+ 6
+ 6
+
+
+
+
+ True
+ 0
+ 6
+ <b>Date</b>
+ True
+
+
+ 4
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ _Day
+ True
+ start_day
+
+
+ 1
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ _Month
+ True
+ start_month_box
+
+
+ 2
+ 3
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ _Year
+ True
+ start_year
+
+
+ 3
+ 4
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ adjustment1
+ 1
+ True
+
+
+ 1
+ 2
+ 4
+ 5
+
+ 6
+
+
+
+
+ True
+ month_model1
+
+
+
+ 0
+
+
+
+
+ 2
+ 3
+ 4
+ 5
+ GTK_FILL
+ 6
+
+
+
+
+ True
+ True
+ adjustment2
+ 1
+ True
+
+
+ 3
+ 4
+ 4
+ 5
+
+ 6
+
+
+
+
+ True
+ 0
+ 6
+ <b>Second date</b>
+ True
+
+
+ 4
+ 8
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ D_ay
+ True
+ stop_day
+
+
+ 5
+ 6
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ Mo_nth
+ True
+ stop_month_box
+
+
+ 6
+ 7
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ Y_ear
+ True
+ stop_year
+
+
+ 7
+ 8
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ adjustment3
+ 1
+ True
+
+
+ 5
+ 6
+ 4
+ 5
+
+ 6
+
+
+
+
+ True
+ month_model2
+
+
+
+ 0
+
+
+
+
+ 6
+ 7
+ 4
+ 5
+ GTK_FILL
+ 6
+
+
+
+
+ True
+ True
+ adjustment4
+ 1
+ True
+
+
+ 7
+ 8
+ 4
+ 5
+
+ 6
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ False
+ False
+ 6
+ 2
+
+
+
+
+ True
+
+
+ True
+ Te_xt comment:
+ True
+ date_text_entry
+
+
+ False
+ False
+ 6
+ 0
+
+
+
+
+ True
+ True
+
+
+ 6
+ 1
+
+
+
+
+ 3
+
+
+
+
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-help
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-cancel
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ button174
+ button175
+ button176
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ January 1
+
+
+ March 1
+
+
+ March 25
+
+
+ September 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/glade/dbmanager.glade b/src/glade/dbmanager.glade
new file mode 100644
index 000000000..3ec6e64c7
--- /dev/null
+++ b/src/glade/dbmanager.glade
@@ -0,0 +1,376 @@
+
+
+
+
+
+ 6
+ Family Trees - GRAMPS
+ center-on-parent
+ 710
+ 300
+ dialog
+ False
+
+
+ True
+
+
+ True
+ 6
+
+
+ True
+
+
+ True
+
+
+ True
+ True
+ automatic
+ automatic
+ in
+
+
+ True
+ True
+
+
+
+
+ 0
+
+
+
+
+ True
+ center
+
+
+ False
+ False
+ 6
+ 1
+
+
+
+
+ 0
+
+
+
+
+ True
+
+
+ True
+ 12
+
+
+ True
+ 6
+ start
+
+
+ gtk-new
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-delete
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ _Rename
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 2
+
+
+
+
+ Re_pair
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 3
+
+
+
+
+ _Archive
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 4
+
+
+
+
+
+
+ 0
+
+
+
+
+ False
+ 6
+ 1
+
+
+
+
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ True
+ True
+ True
+ False
+
+
+ True
+ 0
+ 0
+ 2
+
+
+ True
+ 2
+
+
+ True
+ gtk-close
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ _Close Window
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ True
+ False
+
+
+ True
+ 0
+ 0
+
+
+ True
+ 2
+
+
+ True
+ gtk-apply
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ _Load Family Tree
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ cancel
+ connect
+
+
+
+
diff --git a/src/glade/displaystate.glade b/src/glade/displaystate.glade
new file mode 100644
index 000000000..df8f28785
--- /dev/null
+++ b/src/glade/displaystate.glade
@@ -0,0 +1,65 @@
+
+
+
+
+
+ True
+ GRAMPS
+ center-always
+ 650
+ 500
+ dialog
+
+
+ True
+
+
+ True
+ True
+ automatic
+ automatic
+ in
+
+
+ True
+ True
+
+
+
+
+ 2
+
+
+
+
+ True
+ end
+
+
+ gtk-close
+ True
+ True
+ True
+ True
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ close
+
+
+
diff --git a/src/glade/editsource.glade b/src/glade/editsource.glade
new file mode 100644
index 000000000..7e289c3fa
--- /dev/null
+++ b/src/glade/editsource.glade
@@ -0,0 +1,278 @@
+
+
+
+
+
+ dialog
+ False
+
+
+
+ True
+ 8
+
+
+ True
+
+
+ True
+ 12
+ 5
+ 2
+ 12
+ 6
+
+
+ True
+ 1
+ _Title:
+ True
+ center
+ source_title
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 1
+ _Author:
+ True
+ center
+ author
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ True
+
+
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+ True
+ 1
+ _Publication information:
+ True
+ center
+ pubinfo
+
+
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 4
+ 5
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+ True
+ 1
+ A_bbreviation:
+ True
+ center
+ abbrev
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 1
+ _ID:
+ True
+ gid
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 12
+
+
+ True
+ True
+ ●
+
+
+ 0
+
+
+
+
+ True
+ True
+ False
+ Indicates if the record is private
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ False
+ Abandon changes and close window
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ cancel
+ ok
+ help
+
+
+
diff --git a/src/glade/grampletview.glade b/src/glade/grampletview.glade
new file mode 100644
index 000000000..02e92b374
--- /dev/null
+++ b/src/glade/grampletview.glade
@@ -0,0 +1,151 @@
+
+
+
+
+
+ window2
+
+
+ True
+
+
+ True
+ 10
+ 0
+ in
+
+
+ True
+ vertical
+
+
+ True
+ True
+
+
+
+
+
+ True
+ Options
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ automatic
+ automatic
+
+
+ True
+ True
+ False
+ word
+
+
+
+
+ 1
+
+
+
+
+
+
+ True
+
+
+ True
+ True
+ True
+ True
+ Drag to move; click to detach
+ Drag to move; click to detach
+
+
+ True
+ gtk-properties
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ True
+ True
+ Click to expand/collapse
+ Click to expand/collapse
+
+
+ True
+ gtk-remove
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ True
+ True
+ True
+ True
+ Click to delete gramplet from view
+ Click to delete gramplet from view
+
+
+ True
+ gtk-close
+
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ True
+ 0
+ 0
+ 7
+ 9
+ <b><i>Gramplet</i></b>
+ True
+
+
+ 3
+
+
+
+
+
+
+ 0
+
+
+
+
+
+
diff --git a/src/glade/gramps.glade b/src/glade/gramps.glade
index a39c23858..d14754b63 100644
--- a/src/glade/gramps.glade
+++ b/src/glade/gramps.glade
@@ -1,16811 +1,6912 @@
-
-
-
+
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 8
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- Abandon changes and close window
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 5
- 2
- False
- 6
- 12
-
-
-
- True
- _Title:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- source_title
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Author:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- author
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- _Publication information:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- pubinfo
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 4
- 5
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 3
- 4
-
-
-
-
-
-
- True
- A_bbreviation:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- abbrev
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- False
- 12
-
-
-
- True
- True
- True
- True
- 0
-
- True
- ●
- False
-
-
- 0
- True
- True
-
-
-
-
-
- True
- Indicates if the record is private
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 1
- 2
- 2
- 3
- fill
- fill
-
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 12
- True
- 3
- 1
- False
- 6
- 6
-
-
-
- 400
- 300
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- True
- True
- False
- False
- False
-
-
-
-
- 0
- 1
- 0
- 3
-
-
-
-
- 6
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- Abandon changes and close window
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- 0
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- 0
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- True
- False
-
-
-
- 6
- True
- False
- 12
-
-
-
- True
- False
- 0
-
-
-
- 6
- 132
- True
- 4
- 2
- False
- 6
- 12
-
-
-
- True
- Name:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- 10
- fill
-
-
-
-
-
-
- True
- Birth:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- 10
- fill
-
-
-
-
-
-
- True
- Death:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- 10
- fill
-
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Father</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
-
- True
- gtk-index
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
-
- True
- gtk-add
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- gtk-remove
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- gtk-edit
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- 2
- 0
- 1
- fill
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 2
- 3
- fill
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 3
- 4
- fill
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_END
- -1
- False
- 0
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
-
-
- 0
- True
- True
- GTK_PACK_END
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- 132
- True
- 4
- 2
- False
- 6
- 12
-
-
-
- True
- Name:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- 10
- fill
-
-
-
-
-
-
- True
- Birth:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- 10
- fill
-
-
-
-
-
-
- True
- Death:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- 10
- fill
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 3
- 4
- fill
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 2
- 3
- fill
-
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Mother</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
-
- True
- gtk-index
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
-
- True
- gtk-add
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- Indicates if the record is private
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
- GTK_PACK_END
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- gtk-remove
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- gtk-edit
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- 2
- 0
- 1
- fill
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_END
- -1
- False
- 0
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- 6
- True
- 2
- 6
- False
- 6
- 12
-
-
-
- True
- <b>Relationship Information</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 6
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- 10
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
- 6
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- _Type:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- marriage_type
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- _Marker:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- marker
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 5
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- False
- True
- True
-
-
- 3
- 4
- 1
- 2
- shrink|fill
- fill
-
-
-
-
-
- True
- False
- True
- True
-
-
- 5
- 6
- 1
- 2
- shrink|fill
- fill
-
-
-
-
- 0
- False
- True
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 3
- 4
- False
- 6
- 6
-
-
-
- True
- _Place Name:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- place_title
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- L_atitude:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- lat_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- _Longitude:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- lon_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 4
- 0
- 1
-
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- ●
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 2
- 3
-
-
-
-
-
-
-
- True
- ValidatableMaskedEntry
- 0
- 0
- Fri, 23 Mar 2007 20:18:43 GMT
-
-
- 3
- 4
- 1
- 2
- fill
-
-
-
-
-
- True
- ValidatableMaskedEntry
- 0
- 0
- Fri, 23 Mar 2007 20:17:51 GMT
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
-
- 12
- True
- 5
- 4
- False
- 6
- 12
-
-
-
- True
- C_ity:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- city
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- S_treet:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- street
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- ●
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 3
- 4
- 1
- 2
-
-
-
-
-
-
- True
- Ch_urch parish:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- parish
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- Co_unty:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- county
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- _State:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- state
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 3
- 4
- 2
- 3
-
-
-
-
-
-
- True
- Count_ry:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- country
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 3
- 4
-
-
-
-
-
-
- True
- _ZIP/Postal code:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- postal
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 3
- 4
- 3
- 4
-
-
-
-
-
-
- True
- Phon_e:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- phone
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 4
- 5
-
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-file
- 1
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>Location</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
- tab
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- 600
- 450
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 6
- True
- False
- 6
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- False
- True
- True
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- Show all
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 400
- 300
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- 0
-
-
-
-
-
- True
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- 0
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 10
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- False
- 6
-
-
-
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- GTK_BUTTONBOX_START
- 10
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-add
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-edit
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-remove
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- 0
-
-
-
-
-
-
- True
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- 0
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 5
- 5
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 10
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- Style n_ame:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- style_name
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 10
- False
- False
-
-
-
-
-
- True
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- 12
- True
- True
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- 175
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
- True
- False
-
-
-
-
-
- True
- True
- True
- False
- GTK_POS_TOP
- False
- False
-
-
-
- 12
- True
- False
- 12
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>Description</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
-
- 12
- True
- 11
- 4
- False
- 6
- 12
-
-
-
- True
- <b>Type face</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 4
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- _Roman (Times, serif)
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 4
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- _Swiss (Arial, Helvetica, sans-serif)
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
- roman
-
-
- 1
- 4
- 2
- 3
- fill
-
-
-
-
-
-
- True
- <b>Size</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 4
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 0 100 1 10 0
-
-
- 1
- 3
- 4
- 5
- fill
-
-
-
-
-
-
- True
- point size|pt
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 3
- 4
- 4
- 5
- fill
-
-
-
-
-
-
- True
- <b>Color</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 4
- 5
- 6
- fill
-
-
-
-
-
-
- True
- <b>Options</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 4
- 7
- 8
- fill
- fill
-
-
-
-
-
- True
- True
- _Bold
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 4
- 8
- 9
- fill
-
-
-
-
-
-
- True
- True
- _Italic
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 4
- 9
- 10
- fill
-
-
-
-
-
-
- True
- True
- _Underline
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 4
- 10
- 11
- fill
-
-
-
-
-
-
- True
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- True
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 6
- 7
- fill
-
-
-
-
-
-
- True
- True
- False
- True
-
-
- 1
- 2
- 6
- 7
- fill
-
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>Font options</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
-
- 12
- True
- 14
- 5
- False
- 6
- 12
-
-
-
- True
- True
- _Left
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- _Right
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
- lalign
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- J_ustify
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
- lalign
-
-
- 4
- 5
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- Cen_ter
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
- lalign
-
-
- 3
- 4
- 1
- 2
- fill
-
-
-
-
-
-
- True
- <b>Alignment</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 5
- 0
- 1
- fill
- fill
-
-
-
-
-
- True
- <b>Background color</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 5
- 2
- 3
- fill
-
-
-
-
-
-
- True
- First li_ne:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- indent
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 7
- 8
- fill
-
-
-
-
-
-
- True
- cm
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 5
- 5
- 6
- fill
-
-
-
-
-
-
- True
- cm
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 5
- 6
- 7
- fill
-
-
-
-
-
-
- True
- cm
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 5
- 7
- 8
- fill
-
-
-
-
-
-
- True
- R_ight:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- rmargin
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 6
- 7
- fill
-
-
-
-
-
-
- True
- L_eft:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- lmargin
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 5
- 6
- fill
-
-
-
-
-
-
- True
- <b>Spacing</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 5
- 8
- 9
- fill
-
-
-
-
-
-
- True
- Abo_ve:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- tmargin
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 9
- 10
- fill
-
-
-
-
-
-
- True
- Belo_w:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- bmargin
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 10
- 11
- fill
-
-
-
-
-
-
- True
- cm
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 5
- 9
- 10
- fill
-
-
-
-
-
-
- True
- cm
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 5
- 10
- 11
- fill
-
-
-
-
-
-
- True
- <b>Borders</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 5
- 11
- 12
- fill
-
-
-
-
-
-
- True
- True
- 1
- 2
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 -100 100 0.1 1 0
-
-
- 2
- 4
- 6
- 7
-
-
-
-
-
-
- True
- True
- 1
- 2
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 2 -100 100 0.1 1 0
-
-
- 2
- 4
- 7
- 8
-
-
-
-
-
-
- True
- True
- 1
- 2
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 -100 100 0.1 1 0
-
-
- 2
- 4
- 5
- 6
-
-
-
-
-
-
- True
- True
- 1
- 2
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 -100 100 0.1 1 0
-
-
- 2
- 4
- 9
- 10
-
-
-
-
-
-
- True
- True
- 1
- 2
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 -100 100 0.1 1 0
-
-
- 2
- 4
- 10
- 11
-
-
-
-
-
-
- True
- True
- Le_ft
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 2
- 13
- 14
- fill
-
-
-
-
-
-
- True
- True
- Righ_t
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 2
- 3
- 13
- 14
- fill
-
-
-
-
-
-
- True
- True
- _Top
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 3
- 4
- 13
- 14
- fill
-
-
-
-
-
-
- True
- _Padding:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- pad
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 12
- 13
- fill
-
-
-
-
-
-
- True
- True
- 1
- 2
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0.2 0 100 0.1 1 0
-
-
- 2
- 4
- 12
- 13
-
-
-
-
-
-
- True
- cm
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 5
- 12
- 13
- fill
-
-
-
-
-
-
- True
- True
- _Bottom
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 4
- 5
- 13
- 14
- fill
-
-
-
-
-
-
- True
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- True
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 3
- 4
- fill
-
-
-
-
-
-
- True
- <b>Indentation</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 5
- 4
- 5
- fill
-
-
-
-
-
-
- True
- True
- False
- True
-
-
- 1
- 2
- 3
- 4
- fill
-
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>Paragraph options</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 650
- 450
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 8
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
- True
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 6
- True
- False
- 6
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
-
- 12
- True
- 1
- 2
- False
- 6
- 12
-
-
-
- True
- GTK_FILE_CHOOSER_ACTION_OPEN
- True
- False
- False
-
-
-
- 0
- 1
- 0
- 1
-
-
-
-
-
- True
- 0
- 0.5
- GTK_SHADOW_ETCHED_IN
-
-
-
- 100
- 100
- True
- 0.5
- 0.5
- 0
- 0
-
-
-
-
-
- True
- <b>Preview</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- 2
- 2
- False
- 6
- 6
-
-
-
- True
- _Title:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- photoDescription
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- Convert to a relative path
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 600
- 450
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 8
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 6
- True
- False
- 6
-
-
-
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
-
- 12
- True
- 4
- 5
- False
- 6
- 12
-
-
-
- True
- Corner 2: X
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 3
- 4
- fill
-
-
-
-
-
-
- True
- Y coordinate|Y
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 3
- 4
- 3
- 4
- fill
-
-
-
-
-
-
- True
- <b>Referenced Region</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 5
- 1
- 2
- fill
-
-
-
-
-
-
- True
- If media is an image, select a region of the image that is referenced. Point (0,0) is the top left corner. Do this by giving two corners on a diagonal of the rectangular region you want to use.
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 0 100 1 10 0
-
-
- 4
- 5
- 3
- 4
-
-
-
-
-
-
- True
- If media is an image, select a region of the image that is referenced. Point (0,0) is the top left corner. Do this by giving two corners on a diagonal of the rectangular region you want to use.
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 0 100 1 10 0
-
-
- 2
- 3
- 3
- 4
-
-
-
-
-
-
- True
- 0
- 0.5
- GTK_SHADOW_ETCHED_IN
-
-
-
- True
- True
- False
-
-
-
- 100
- 100
- True
- 0.5
- 0.5
- 0
- 0
-
-
-
-
-
-
-
- True
- <b>Preview</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- 1
- 2
- 4
- fill
- fill
-
-
-
-
-
- True
- Corner 1: X
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 2
- 3
- fill
-
-
-
-
-
-
- True
- If media is an image, select a region of the image that is referenced. Point (0,0) is the top left corner. Do this by giving two corners on a diagonal of the rectangular region you want to use.
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 0 100 1 10 0
-
-
- 2
- 3
- 2
- 3
-
-
-
-
-
-
- True
- If media is an image, select a region of the image that is referenced. Point (0,0) is the top left corner. Do this by giving two corners on a diagonal of the rectangular region you want to use.
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 0 100 1 10 0
-
-
- 4
- 5
- 2
- 3
-
-
-
-
-
-
- True
- Y coordinate|Y
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 3
- 4
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
-
-
-
- True
- 1
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- 5
- 0
- 1
-
-
-
-
-
-
- False
- True
-
-
-
-
-
- True
- General
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
- 10
- True
- True
-
-
-
-
-
- True
- True
- True
- 0
-
-
-
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
- 12
- True
- 5
- 3
- False
- 6
- 12
-
-
-
- True
- _Path:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- path
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 2
- 3
- fill
-
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Title:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- description
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 1
- 2
- fill
- fill
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 2
- 3
- 1
- 2
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 2
- 3
- 2
- 3
-
-
-
-
-
-
- 6
- False
- 12
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>Note:</b> Any changes in the shared event information will be reflected in the event itself, for all participants in the event.
- True
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
- 0
- 3
- 4
- 5
- fill
-
-
-
-
-
- True
- 0
- 0.5
- GTK_SHADOW_ETCHED_IN
-
-
-
- True
- Double click image to view in an external viewer
- True
- False
-
-
-
- 100
- 100
- True
- 0.5
- 0.5
- 0
- 0
-
-
-
-
-
-
-
- True
- <b>Preview</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- 1
- 0
- 4
- fill
- fill
-
-
-
-
-
- True
- _Type:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- type
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 3
- 4
- fill
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 3
- 4
- fill
-
-
-
-
-
-
- True
- False
- 12
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
-
-
-
- True
- 1
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 2
- 3
- 0
- 1
- fill
- fill
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>General</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
-
-
-
- True
- <b>Shared Information</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 8
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- 0
-
-
-
-
-
-
- True
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- 0
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 12
- True
- False
- 6
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 4
- 4
- False
- 6
- 12
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
-
-
- True
- _Title:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- description
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Date:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- date_edit
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 2
- 3
- fill
-
-
-
-
-
-
- True
- Path:
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 3
- 4
- fill
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- 0
- 0.5
- GTK_SHADOW_ETCHED_IN
-
-
-
- True
- Double click image to view in an external viewer
- True
- False
-
-
-
- 100
- 100
- True
- 0.5
- 0.5
- 0
- 0
-
-
-
-
-
-
-
- True
- <b>Preview</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- 1
- 0
- 3
- fill
- fill
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 2
- 3
- 3
- 4
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 2
- 4
- 0
- 1
-
-
-
-
-
-
- True
- Invoke date editor
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 4
- gramps-date
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 3
- 4
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- gtk-open
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 3
- 4
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 2
- 3
- 1
- 2
-
-
-
-
-
-
- True
- Indicates if the record is private
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 3
- 4
- 1
- 2
- fill
-
-
-
-
-
-
- 27
- True
- ValidatableMaskedEntry
- 0
- 0
- Sat, 24 Mar 2007 00:20:48 GMT
-
-
- 2
- 3
- 2
- 3
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- Close _without saving
- True
- GTK_RELIEF_NORMAL
- True
- -9
-
-
-
-
-
- True
- True
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
- True
- True
- True
- gtk-save
- True
- GTK_RELIEF_NORMAL
- True
- -8
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 12
- True
- 3
- 3
- False
- 0
- 0
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 6
- 12
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0
- 0
- 0
-
-
- 0
- 1
- 0
- 2
- fill
- fill
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 6
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- expand|shrink|fill
-
-
-
-
-
-
- True
- True
- Do not ask again
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 3
- 2
- 3
- fill
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
- True
- True
- True
-
- True
- GTK_RELIEF_NORMAL
- True
- -3
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 12
- True
- 2
- 3
- False
- 0
- 0
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 6
- 12
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- gtk-dialog-question
- 6
- 0.5
- 0
- 0
- 0
-
-
- 0
- 1
- 0
- 2
- fill
- fill
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 6
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- expand|shrink|fill
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
-
- True
- GTK_RELIEF_NORMAL
- True
- -9
-
-
-
-
-
- True
- True
- True
-
- True
- GTK_RELIEF_NORMAL
- True
- -8
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 12
- True
- 2
- 3
- False
- 0
- 0
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 6
- 12
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0
- 0
- 0
-
-
- 0
- 1
- 0
- 2
- fill
- fill
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 6
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- expand|shrink|fill
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- Remove object and all references to it from the database
- True
- True
- GTK_RELIEF_NORMAL
- True
- 1
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
- True
- False
- 2
-
-
-
- True
- gtk-delete
- 4
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- _Remove Object
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
-
-
- True
- Keep reference to the missing file
- True
- True
- _Keep Reference
- True
- GTK_RELIEF_NORMAL
- True
- 2
-
-
-
-
-
- True
- Select replacement for the missing file
- True
- True
- True
- True
- GTK_RELIEF_NORMAL
- True
- 3
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
- True
- False
- 2
-
-
-
- True
- gtk-find
- 4
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- _Select File
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 12
- True
- 3
- 3
- False
- 0
- 0
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 6
- 24
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0
- 0
- 0
-
-
- 0
- 1
- 0
- 2
- fill
- fill
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 6
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- expand|shrink|fill
-
-
-
-
-
-
- True
- If you check this button, all the missing media files will be automatically treated according to the currently selected option. No further dialogs will be presented for any missing media files.
- True
- _Use this selection for all missing media files
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 2
- 3
- 2
- 3
- fill
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- 400
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- Close window without changes
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 4
- 5
- False
- 6
- 12
-
-
-
- True
- _Event type:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- personal_events
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Date:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- date_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- 33
- 33
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 4
- gramps-date
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 4
- 5
- 0
- 1
- fill
-
-
-
-
-
-
- True
- De_scription:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- event_description
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 4
- 5
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 4
- 1
- 2
-
-
-
-
-
-
- True
- _Place:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 3
- select_place
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 4
- 5
- 3
- 4
- fill
-
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_END
- -1
- False
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 4
- gtk-index
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 1
- 4
- 3
- 4
- fill
- fill
-
-
-
-
-
- True
- False
- True
- True
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- ●
- False
-
-
- 1
- 4
- 2
- 3
-
-
-
-
-
-
- 27
- True
- ValidatableMaskedEntry
- 0
- 0
- Sat, 24 Mar 2007 00:10:06 GMT
-
-
- 3
- 4
- 0
- 1
-
-
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 2
- 3
- False
- 6
- 12
-
-
-
- True
- _Attribute:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- attr_menu
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Value:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- attr_value
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 3
- 1
- 2
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 1
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 0
- 1
-
-
-
-
-
-
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 550
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 5
- 4
- False
- 6
- 12
-
-
-
- True
- C_ity:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- city
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- S_treet:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- city
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Ch_urch parish:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- parish
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 3
- 4
- 1
- 2
-
-
-
-
-
-
- True
- Co_unty:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- county
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- _State:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- state
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 3
- 4
- 2
- 3
-
-
-
-
-
-
- True
- Cou_ntry:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- country
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 3
- 4
-
-
-
-
-
-
- True
- _Zip/Postal code:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- postal
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 3
- 4
- 3
- 4
-
-
-
-
-
-
- True
- Phon_e:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- phone
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 4
- 5
-
-
-
-
-
-
- True
- True
- True
- True
- True
- 0
-
- True
- ●
- False
-
-
- 1
- 4
- 0
- 1
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 600
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 3
- 3
- False
- 6
- 12
-
-
-
- True
- _Web address:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- url_addr
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- _Description:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- url_des
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- _Type:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- type
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
- False
- True
- True
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
- 3
-
-
-
-
-
-
- True
- True
- gtk-jump-to
- True
- GTK_RELIEF_NORMAL
- True
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 3
- 2
- 3
-
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 600
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- Abandon changes and close window
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 4
- 5
- False
- 6
- 12
-
-
-
- True
- _Given:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- alt_given
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- P_atronymic:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- patronymic
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 3
- 4
-
-
-
-
-
-
- True
- _Family:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- alt_surname
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- _Prefix:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- alt_prefix
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Tit_le:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- alt_title
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- Suffi_x:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- alt_suffix
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 2
- 3
- fill
-
-
-
-
-
-
- True
- _Type:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0
- 1
- 0
- name_type
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 3
- 5
- 0
- 1
-
-
-
-
-
-
- True
- False
- True
- True
-
-
- 3
- 5
- 3
- 4
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 3
- 4
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 1
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 4
- 5
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- Call _Name:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- call
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- ●
- False
-
-
- 3
- 5
- 1
- 2
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
-
- 12
- True
- 5
- 4
- False
- 6
- 12
-
-
-
- True
- G_roup as:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- group_as
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
-
-
- True
- _Sort as:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- sort_as
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 2
- 3
- fill
-
-
-
-
-
-
- True
- _Display as:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- display_as
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 3
- 4
- fill
-
-
-
-
-
-
- True
- <b>Options</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
-
- False
- True
-
-
- 2
- 3
- 3
- 4
- fill
- fill
-
-
-
-
-
- True
- Dat_e:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- date_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 4
- 5
- fill
-
-
-
-
-
-
- True
-
- False
- True
-
-
- 2
- 3
- 2
- 3
- fill
-
-
-
-
-
- True
- Invoke date editor
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 4
- gramps-date
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 3
- 4
- 4
- 5
- fill
-
-
-
-
-
-
- True
- False
- 6
-
-
-
- True
- False
- True
- False
- True
- 0
-
- True
- *
- False
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
- O_verride
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
-
- 0
- False
- False
-
-
-
-
- 2
- 4
- 1
- 2
- fill
- fill
-
-
-
-
-
- 27
- True
- ValidatableMaskedEntry
- 0
- 0
- Sat, 24 Mar 2007 00:23:06 GMT
-
-
- 2
- 3
- 4
- 5
-
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- General
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
- tab
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- Calenda_r:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- calendar_box
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- True
-
-
-
-
-
- True
-
- False
- True
-
-
- 6
- True
- True
-
-
-
-
- 6
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 15
- False
- False
-
-
-
-
-
- True
- Old Style/New Style
- True
- Dua_l dated
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 0
- False
- False
-
-
-
-
-
- True
- Ne_w year begins:
- True
- False
- GTK_JUSTIFY_RIGHT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- January 1
-March 1
-March 25
-September 1
-
- False
- True
-
-
-
- 0
- True
- True
-
-
-
-
- 6
- True
- True
-
-
-
-
-
- True
- 5
- 8
- False
- 6
- 6
-
-
-
- True
- <b>Q_uality</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 6
- 0
- quality_box
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 4
- 0
- 1
- fill
-
-
-
-
-
-
- True
-
- False
- True
-
-
- 1
- 4
- 1
- 2
- 6
- 6
- fill
- fill
-
-
-
-
-
- True
- <b>_Type</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 6
- 0
- type_box
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 8
- 0
- 1
- fill
-
-
-
-
-
-
- True
-
- False
- True
-
-
- 5
- 8
- 1
- 2
- 6
- 6
- fill
- fill
-
-
-
-
-
- True
- <b>Date</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 6
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 4
- 2
- 3
- fill
-
-
-
-
-
-
- True
- _Day
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- start_day
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 3
- 4
- fill
-
-
-
-
-
-
- True
- _Month
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- start_month_box
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 3
- 4
- fill
-
-
-
-
-
-
- True
- _Year
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- start_year
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 3
- 4
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 0 31 1 10 0
-
-
- 1
- 2
- 4
- 5
- 6
-
-
-
-
-
-
- True
-
- False
- True
-
-
- 2
- 3
- 4
- 5
- 6
- fill
-
-
-
-
-
- True
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 -9999 99999 1 10 0
-
-
- 3
- 4
- 4
- 5
- 6
-
-
-
-
-
-
- True
- <b>Second date</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 6
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 8
- 2
- 3
- fill
-
-
-
-
-
-
- True
- D_ay
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- stop_day
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- 6
- 3
- 4
- fill
-
-
-
-
-
-
- True
- Mo_nth
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- stop_month_box
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- 7
- 3
- 4
- fill
-
-
-
-
-
-
- True
- Y_ear
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- stop_year
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 7
- 8
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 0 31 1 10 0
-
-
- 5
- 6
- 4
- 5
- 6
-
-
-
-
-
-
- True
-
- False
- True
-
-
- 6
- 7
- 4
- 5
- 6
- fill
-
-
-
-
-
- True
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 0 -9999 99999 1 10 0
-
-
- 7
- 8
- 4
- 5
- 6
-
-
-
-
-
- 6
- False
- False
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- Te_xt comment:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- date_text_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- GRAMPS
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ALWAYS
- False
- 650
- 500
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- True
- GTK_JUSTIFY_LEFT
- GTK_WRAP_NONE
- True
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 8
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- Abandon changes and close window
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 2
- 2
- False
- 6
- 12
-
-
-
- True
- _Name:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- repository_name
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Type:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- repository_type
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- False
- 12
-
-
-
- True
- False
- True
- True
-
-
- 0
- False
- True
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 0
- True
- True
-
-
-
-
-
- True
- Indicates if the record is private
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 1
- 2
- 1
- 2
- fill
- fill
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 600
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- <b>Reference information</b>
- True
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 12
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
- 12
- True
- 1
- 4
- False
- 6
- 12
-
-
-
- True
- _Role:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 3
- eer_role_combo
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 1
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 3
- 4
- 0
- 1
- fill
-
-
-
-
-
-
- True
- False
- True
- True
-
-
- 1
- 3
- 0
- 1
-
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 6
-
-
-
- True
- gtk-file
- 1
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>General</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
- tab
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- True
- True
- 6
-
-
-
- True
- True
- True
- False
- GTK_POS_TOP
- False
- False
-
-
-
-
- 12
- True
- 6
- 3
- False
- 6
- 12
-
-
-
- True
- _Event type:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- eer_type_combo
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Date:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- eer_date_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- De_scription:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- eer_description
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
- fill
-
-
-
-
-
-
- True
- _Place:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 3
- share_place
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 1
- 2
- 3
- 4
- fill
- fill
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 3
- 4
- fill
-
-
-
-
-
-
- 33
- 33
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 4
- gramps-date
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 1
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 1
- 4
- fill
-
-
-
-
-
-
- True
- False
- True
- True
-
-
- 1
- 2
- 0
- 1
- fill
- fill
-
-
-
-
-
- 27
- True
- ValidatableMaskedEntry
- 0
- 0
- Fri, 23 Mar 2007 23:47:44 GMT
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- ●
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 4
- 5
-
-
-
-
-
-
- 6
- False
- 12
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 400
- True
- <b>Note:</b> Any changes in the shared event information will be reflected in the event itself, for all participants in the event.
- True
- True
- GTK_JUSTIFY_FILL
- True
- False
- 0
- 0.5
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- True
- True
-
-
-
-
- 0
- 3
- 5
- 6
- expand|shrink|fill
- expand|shrink|fill
-
-
-
-
- False
- False
-
-
-
-
-
- True
- False
- 6
-
-
-
- True
- gtk-file
- 1
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>General</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
- tab
-
-
-
-
-
-
-
- True
- <b>Shared information</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 600
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- <b>Reference information</b>
- True
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 6
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
- 12
- True
- 3
- 3
- False
- 6
- 12
-
-
-
- True
- _Date:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- date_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Invoke date editor
- True
- GTK_RELIEF_NONE
- True
-
-
-
-
- True
- 4
- gramps-date
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- _Volume/Page:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- volume
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- Con_fidence:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- confidence
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 2
- 3
- fill
-
-
-
-
-
-
- True
- Very Low
+
+
+
+ 600
+ 450
+ dialog
+ False
+
+
+
+ True
+ 8
+
+
+ True
+ 6
+ 6
+
+
+ True
+ True
+
+
+
+ True
+ 12
+ 4
+ 5
+ 12
+ 6
+
+
+ True
+ 0
+ Corner 2: X
+
+
+ 1
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Y coordinate|Y
+
+
+ 3
+ 4
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ <b>Referenced Region</b>
+ True
+
+
+ 5
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ If media is an image, select a region of the image that is referenced. Point (0,0) is the top left corner. Do this by giving two corners on a diagonal of the rectangular region you want to use.
+ 0 0 100 1 10 0
+ 1
+ True
+
+
+ 4
+ 5
+ 3
+ 4
+
+
+
+
+
+ True
+ True
+ If media is an image, select a region of the image that is referenced. Point (0,0) is the top left corner. Do this by giving two corners on a diagonal of the rectangular region you want to use.
+ 0 0 100 1 10 0
+ 1
+ True
+
+
+ 2
+ 3
+ 3
+ 4
+
+
+
+
+
+ True
+ 0
+
+
+ True
+
+
+ 100
+ 100
+ True
+
+
+
+
+
+
+ True
+ <b>Preview</b>
+ True
+
+
+ label_item
+
+
+
+
+ 2
+ 4
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ Corner 1: X
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ If media is an image, select a region of the image that is referenced. Point (0,0) is the top left corner. Do this by giving two corners on a diagonal of the rectangular region you want to use.
+ 0 0 100 1 10 0
+ 1
+ True
+
+
+ 2
+ 3
+ 2
+ 3
+
+
+
+
+
+ True
+ True
+ If media is an image, select a region of the image that is referenced. Point (0,0) is the top left corner. Do this by giving two corners on a diagonal of the rectangular region you want to use.
+ 0 0 100 1 10 0
+ 1
+ True
+
+
+ 4
+ 5
+ 2
+ 3
+
+
+
+
+
+ True
+ 0
+ Y coordinate|Y
+
+
+ 3
+ 4
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+
+
+ True
+ gtk-dialog-authentication
+ 1
+
+
+
+
+ 5
+
+
+
+
+
+
+
+
+ True
+ General
+
+
+ False
+ tab
+
+
+
+
+ 10
+ 0
+
+
+
+
+ True
+ True
+ True
+
+
+ True
+ True
+
+
+ True
+ 12
+ 5
+ 3
+ 12
+ 6
+
+
+ True
+ 0
+ _Path:
+ True
+ center
+ path
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _ID:
+ True
+ center
+ gid
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Title:
+ True
+ center
+ description
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ True
+
+
+ 2
+ 3
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+
+
+ 2
+ 3
+ 2
+ 3
+
+
+
+
+
+ 6
+ 12
+
+
+ True
+ gtk-dialog-warning
+ 6
+
+
+ 0
+
+
+
+
+ True
+ 0
+ 3
+ <b>Note:</b> Any changes in the shared event information will be reflected in the event itself, for all participants in the event.
+ True
+ True
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ 3
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+ True
+ 0
+
+
+ True
+ Double click image to view in an external viewer
+
+
+ 100
+ 100
+ True
+
+
+
+
+
+
+ True
+ <b>Preview</b>
+ True
+
+
+ label_item
+
+
+
+
+ 4
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ _Type:
+ True
+ type
+
+
+ 1
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+
+
+ 2
+ 3
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 12
+
+
+ True
+ True
+
+
+ 0
+
+
+
+
+ True
+ True
+ False
+
+
+ True
+ gtk-dialog-authentication
+ 1
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 2
+ 3
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+
+
+ True
+ <b>General</b>
+ True
+
+
+ False
+ tab
+
+
+
+
+
+
+ True
+ <b>Shared Information</b>
+ True
+
+
+ label_item
+
+
+
+
+ 1
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ dialog
+ False
+
+
+
+ True
+ 8
+
+
+ True
+ 12
+ 6
+
+
+ True
+
+
+ True
+ 12
+ 4
+ 4
+ 12
+ 6
+
+
+ True
+ 0
+ _ID:
+ True
+ center
+ gid
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Title:
+ True
+ description
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Date:
+ True
+ date_edit
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Path:
+ center
+
+
+ 1
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ center
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+
+
+ True
+ Double click image to view in an external viewer
+
+
+ 100
+ 100
+ True
+
+
+
+
+
+
+ True
+ <b>Preview</b>
+ True
+
+
+ label_item
+
+
+
+
+ 3
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ True
+
+
+ 2
+ 3
+ 3
+ 4
+
+
+
+
+
+ True
+ True
+
+
+ 2
+ 4
+
+
+
+
+
+ True
+ True
+ False
+ Invoke date editor
+ none
+
+
+ True
+ gramps-date
+
+
+
+
+ 3
+ 4
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-open
+
+
+
+
+ 3
+ 4
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 2
+ 3
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+ False
+ Indicates if the record is private
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ 3
+ 4
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ 27
+ True
+ ValidatableMaskedEntry
+
+
+ 2
+ 3
+ 2
+ 3
+
+
+
+
+
+ 0
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ dialog
+ False
+
+
+
+ 400
+ True
+
+
+ True
+
+
+ True
+ 12
+ 4
+ 5
+ 12
+ 6
+
+
+ True
+ 0
+ _Event type:
+ True
+ center
+ personal_events
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Date:
+ True
+ center
+ date_entry
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ 33
+ 33
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-date
+
+
+
+
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ De_scription:
+ True
+ center
+ event_description
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ 4
+ 5
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 4
+ 1
+ 2
+
+
+
+
+
+ True
+ 0
+ 3
+ _Place:
+ True
+ center
+ select_place
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+
+
+
+
+ 4
+ 5
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ True
+ 0
+ end
+
+
+ 0
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-index
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 1
+ 4
+ 3
+ 4
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _ID:
+ True
+ gid
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ ●
+
+
+ 1
+ 4
+ 2
+ 3
+
+
+
+
+
+ 27
+ True
+ ValidatableMaskedEntry
+
+
+ 3
+ 4
+
+
+
+
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ True
+ False
+ Close window without changes
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 2
+ 3
+ 12
+ 6
+
+
+ True
+ 0
+ _Attribute:
+ True
+ center
+ attr_menu
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Value:
+ True
+ center
+ attr_value
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 3
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-dialog-authentication
+ 1
+
+
+
+
+ 2
+ 3
+
+
+
+
+
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+ False
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ 550
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 5
+ 4
+ 12
+ 6
+
+
+ True
+ 0
+ C_ity:
+ True
+ center
+ city
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+ True
+ 0
+ S_treet:
+ True
+ center
+ city
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Ch_urch parish:
+ True
+ center
+ parish
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 3
+ 4
+ 1
+ 2
+
+
+
+
+
+ True
+ 0
+ Co_unty:
+ True
+ center
+ county
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+ True
+ 0
+ _State:
+ True
+ center
+ state
+
+
+ 2
+ 3
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 3
+ 4
+ 2
+ 3
+
+
+
+
+
+ True
+ 0
+ Cou_ntry:
+ True
+ center
+ country
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+ True
+ 0
+ _Zip/Postal code:
+ True
+ postal
+
+
+ 2
+ 3
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 3
+ 4
+ 3
+ 4
+
+
+
+
+
+ True
+ 0
+ Phon_e:
+ True
+ phone
+
+
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 4
+ 5
+
+
+
+
+
+ True
+ True
+ True
+ ●
+
+
+ 1
+ 4
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ 600
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 3
+ 3
+ 12
+ 6
+
+
+ True
+ 0
+ _Web address:
+ True
+ center
+ url_addr
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Description:
+ True
+ center
+ url_des
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Type:
+ True
+ type
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-dialog-authentication
+
+
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+
+ 3
+
+
+
+
+ gtk-jump-to
+ True
+ True
+ False
+ True
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 3
+ 2
+ 3
+
+
+
+
+
+ False
+ 0
+
+
+
+
+ False
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ 600
+ dialog
+
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 4
+ 5
+ 12
+ 6
+
+
+ True
+ 0
+ _Given:
+ True
+ center
+ alt_given
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ P_atronymic:
+ True
+ patronymic
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+ True
+ 0
+ _Family:
+ True
+ center
+ alt_surname
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ True
+
+
+ 1
+ 2
+
+
+
+
+
+ True
+ 0
+ _Prefix:
+ True
+ center
+ alt_prefix
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Tit_le:
+ True
+ center
+ alt_title
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+ True
+ 0
+ Suffi_x:
+ True
+ center
+ alt_suffix
+
+
+ 2
+ 3
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ 0
+ 1
+ _Type:
+ True
+ center
+ name_type
+
+
+ 2
+ 3
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 3
+ 5
+
+
+
+
+
+ True
+
+
+ 3
+ 5
+ 3
+ 4
+
+
+
+
+
+ True
+ True
+
+
+ 3
+ 4
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-dialog-authentication
+ 1
+
+
+
+
+ 4
+ 5
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+ True
+ 0
+ Call _Name:
+ True
+ call
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ ●
+
+
+ 3
+ 5
+ 1
+ 2
+
+
+
+
+
+ 0
+
+
+
+
+ True
+ True
+
+
+
+ True
+ 12
+ 5
+ 4
+ 12
+ 6
+
+
+ True
+ 0
+ G_roup as:
+ True
+ group_as
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Sort as:
+ True
+ sort_as
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Display as:
+ True
+ display_as
+
+
+ 1
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ <b>Options</b>
+ True
+
+
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+
+ 2
+ 3
+ 3
+ 4
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ Dat_e:
+ True
+ center
+ date_entry
+
+
+ 1
+ 2
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+
+ 2
+ 3
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+ True
+ True
+ False
+ Invoke date editor
+ none
+
+
+ True
+ gramps-date
+
+
+
+
+ 3
+ 4
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ 6
+
+
+ True
+ False
+ True
+ False
+
+
+ 0
+
+
+
+
+ O_verride
+ True
+ True
+ False
+ True
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 2
+ 4
+ 1
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ 27
+ True
+ ValidatableMaskedEntry
+
+
+ 2
+ 3
+ 4
+ 5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+
+
+ True
+
+
+ 0
+
+
+
+
+ True
+ General
+ True
+ center
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ tab
+
+
+
+
+ 1
+
+
+
+
+ 2
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ Abandon changes and close window
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ dialog
+ False
+
+
+
+ True
+ 8
+
+
+ True
+
+
+ True
+ 12
+ 2
+ 2
+ 12
+ 6
+
+
+ True
+ 1
+ _Name:
+ True
+ center
+ repository_name
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 1
+ _Type:
+ True
+ center
+ repository_type
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ True
+
+
+ 1
+ 2
+
+
+
+
+
+ True
+ 12
+
+
+ True
+
+
+ False
+ 0
+
+
+
+
+ True
+ 1
+ _ID:
+ True
+ gid
+
+
+ False
+ False
+ 1
+
+
+
+
+ True
+ True
+
+
+ 2
+
+
+
+
+ True
+ True
+ False
+ Indicates if the record is private
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ False
+ False
+ 3
+
+
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ False
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ Abandon changes and close window
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ 600
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+ 0
+ 12
+ 3
+ <b>Reference information</b>
+ True
+ True
+ center
+
+
+ False
+ False
+ 1
+
+
+
+
+ True
+ True
+ 6
+
+
+ True
+ 12
+ 4
+ 12
+ 6
+
+
+ True
+ 0
+ 3
+ _Role:
+ True
+ center
+ eer_role_combo
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-unlock
+ 1
+
+
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ 1
+ 3
+
+
+
+
+
+
+
+ True
+ 6
+
+
+ True
+ gtk-file
+ 1
+
+
+ 0
+
+
+
+
+ True
+ <b>General</b>
+ True
+ center
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ tab
+
+
+
+
+ 2
+
+
+
+
+ True
+ True
+ 6
+ True
+ 6
+
+
+ True
+ True
+ False
+
+
+
+ True
+ 12
+ 6
+ 3
+ 12
+ 6
+
+
+ True
+ 0
+ _Event type:
+ True
+ center
+ eer_type_combo
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Date:
+ True
+ center
+ eer_date_entry
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ De_scription:
+ True
+ center
+ eer_description
+
+
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ 3
+ _Place:
+ True
+ center
+ share_place
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _ID:
+ True
+ gid
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ True
+ 0
+
+
+ 0
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 1
+ 2
+ 3
+ 4
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+
+
+
+
+ 2
+ 3
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ 33
+ 33
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-date
+
+
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-unlock
+ 1
+
+
+
+
+ 2
+ 3
+ 1
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ 1
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ 27
+ True
+ ValidatableMaskedEntry
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+ ●
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 4
+ 5
+
+
+
+
+
+ 6
+ 12
+
+
+ True
+ 0
+ gtk-dialog-warning
+ 6
+
+
+ False
+ False
+ 0
+
+
+
+
+ 400
+ True
+ 0
+ 3
+ <b>Note:</b> Any changes in the shared event information will be reflected in the event itself, for all participants in the event.
+ True
+ True
+ fill
+ True
+
+
+ 1
+
+
+
+
+ 3
+ 5
+ 6
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+
+
+
+
+
+
+
+
+
+
+ False
+
+
+
+
+ True
+ 6
+
+
+ True
+ gtk-file
+ 1
+
+
+ 0
+
+
+
+
+ True
+ <b>General</b>
+ True
+ center
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ tab
+
+
+
+
+
+
+ True
+ <b>Shared information</b>
+ True
+
+
+ label_item
+
+
+
+
+ False
+ False
+ 3
+
+
+
+
+ True
+ end
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ 600
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+ 0
+ 6
+ 3
+ <b>Reference information</b>
+ True
+ True
+ center
+
+
+ False
+ False
+ 1
+
+
+
+
+ True
+ True
+ 6
+
+
+ True
+ 12
+ 3
+ 3
+ 12
+ 6
+
+
+ True
+ 1
+ _Date:
+ True
+ center
+ date_entry
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ Invoke date editor
+ none
+
+
+
+ True
+ gramps-date
+
+
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+ True
+ 1
+ _Volume/Page:
+ True
+ center
+ volume
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 1
+ Con_fidence:
+ True
+ center
+ confidence
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ 2
+ 3
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ Very Low
Low
Normal
High
Very High
- False
- True
-
-
- 1
- 2
- 2
- 3
- fill
-
-
-
-
-
-
- 27
- True
- ValidatableMaskedEntry
- 0
- 0
- Sat, 24 Mar 2007 00:24:58 GMT
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>General</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- True
- True
- 6
-
-
-
- True
- True
- True
- False
- GTK_POS_TOP
- False
- False
-
-
-
-
- 12
- True
- 6
- 2
- False
- 6
- 12
-
-
-
- True
- _Title:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- title
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Author:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- author
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- A_bbreviation:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 3
- abbrev
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- _Publication Information:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- pub_info
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- 6
- False
- 12
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- True
- False
-
-
-
-
-
- True
- <b>Note:</b> Any changes in the shared source information will be reflected in the source itself, for all items that reference the source.
- True
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- True
- True
-
-
-
-
- 0
- 2
- 5
- 6
- expand|shrink|fill
- expand|shrink|fill
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 3
- 4
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 4
- 5
-
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- False
- 12
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 1
- 2
- 2
- 3
- fill
- fill
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- ●
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
- False
- False
-
-
-
-
-
- True
- False
- 0
-
-
-
- gtk-file
- 1
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>General</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
- tab
-
-
-
-
-
-
-
- True
- <b>Shared source information</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- False
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 8
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- Abandon changes and close window
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Reference information</b>
- True
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 6
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
- 12
- True
- 2
- 3
- False
- 6
- 12
-
-
-
- True
- _Media Type:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- media_type
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Call n_umber:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- call_number
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- False
- True
- True
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
-
- True
- Indicates if the record is private
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 0
- 1
- shrink
- shrink
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 3
- 1
- 2
- fill
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>General</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- True
- True
- 0
-
-
-
- 6
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
- 12
- True
- 4
- 2
- False
- 6
- 12
-
-
-
- True
- _Name:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- repo_name
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Type:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 1
- 0.5
- 0
- 0
- repo_type
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- 6
- False
- 12
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- True
- False
-
-
-
-
-
- True
- <b>Note:</b> Any changes in the shared repository information will be reflected in the repository itself, for all items that reference the repository.
- True
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 3
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- True
- True
-
-
-
-
- 0
- 2
- 3
- 4
- fill
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- gid
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- False
- 12
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 0
- True
- True
-
-
-
-
-
- True
- Indicates if the record is private
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 4
- gramps-unlock
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 1
- 2
- 2
- 3
- fill
- fill
-
-
-
-
-
- True
- False
- True
- True
-
-
- 1
- 2
- 1
- 2
- fill
- fill
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>General</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
-
-
-
- True
- <b>Shared information</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 600
- 450
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 6
- 3
- False
- 6
- 12
-
-
-
- True
- _Date:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- date_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- _Place:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- place
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 4
- gramps-date
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 3
- 4
-
- fill
-
-
-
-
-
- True
- Ordinance:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- LDS _Temple:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- temple
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
-
- False
- True
-
-
- 1
- 2
- 1
- 2
- fill
- fill
-
-
-
-
-
- Family:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 5
- 6
- fill
-
-
-
-
-
-
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 5
- 6
- fill
-
-
-
-
-
-
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- gtk-index
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 5
- 6
- fill
-
-
-
-
-
-
- True
- _Status:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- status
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
-
- False
- True
-
-
- 1
- 2
- 2
- 3
- fill
- fill
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 1
- 2
- 4
- 5
- fill
- fill
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 1
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 4
- 5
- fill
-
-
-
-
-
-
- True
-
- False
- True
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
-
- 27
- True
- ValidatableMaskedEntry
- 0
- 0
- Sat, 24 Mar 2007 00:15:59 GMT
-
-
- 1
- 2
- 3
- 4
-
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 5
- 7
- False
- 6
- 12
-
-
-
- True
- _Date:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- date_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Add_ress:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- street
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- C_ity/County:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- city
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 3
- 2
- 3
-
-
-
-
-
-
- True
- _State/Province:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- state
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 5
- 2
- 3
- fill
-
-
-
-
-
-
- True
- _ZIP/Postal code:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- postal
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 3
- 3
- 4
-
-
-
-
-
-
- True
- Cou_ntry:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- country
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- 5
- 3
- 4
- fill
-
-
-
-
-
-
- True
- Phon_e:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- phone
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 3
- 4
- 5
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 5
- 7
- 2
- 3
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 5
- 7
- 3
- 4
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 6
- 1
- 2
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 1
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 6
- 7
- 1
- 2
-
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- 4
- gramps-date
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 6
- 7
- 0
- 1
-
- fill
-
-
-
-
-
- 27
- True
- ValidatableMaskedEntry
- 0
- 0
- Sat, 24 Mar 2007 00:07:03 GMT
-
-
- 1
- 6
- 0
- 1
-
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 2
- 7
- False
- 6
- 12
-
-
-
- True
- _Person:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- person
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- _Association:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- relationship
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 6
- 1
- 2
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 1
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 6
- 7
- 1
- 2
-
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 6
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- True
- gtk-index
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 6
- 7
- 0
- 1
- fill
-
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 600
- 400
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- Accept changes and close window
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 3
- 7
- False
- 6
- 12
-
-
-
- True
- Relationship to _Mother:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- mrel
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- False
- True
- True
-
-
- 1
- 6
- 2
- 3
- fill
- fill
-
-
-
-
-
- True
- Relationship to _Father:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- frel
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- False
- True
- True
-
-
- 1
- 6
- 1
- 2
- fill
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 1
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 6
- 7
- 2
- 3
-
-
-
-
-
-
-
- True
- Name Child:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 6
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Open person editor of this child
- True
- GTK_RELIEF_NONE
- True
-
-
-
- True
- gtk-edit
- 1
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 6
- 7
- 0
- 1
- fill
-
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 8
- True
- window1
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 500
- 350
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_NORMAL
- GDK_GRAVITY_NORTH_WEST
- True
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- 3
- 3
- False
- 0
- 0
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0.5
- 0.5
- 6
- 6
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- fill
-
-
-
-
-
- True
- True
- _Display on startup
- True
- GTK_RELIEF_NORMAL
- True
- True
- False
- True
-
-
- 0
- 3
- 2
- 3
- expand
- fill
-
-
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- 1
- 0
- 2
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- GTK_BUTTONBOX_END
- 0
-
-
-
- True
- True
- True
- gtk-go-forward
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- 0
- False
- False
- GTK_PACK_END
-
-
-
-
-
-
-
- True
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- True
- 400
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 12
- True
- 4
- 2
- False
- 6
- 12
-
-
-
- True
- Format _name:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- name_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Format _definition:
- True
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- format_entry
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- •
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- •
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- True
- False
- 0
-
-
-
- True
- The following conventions are used:
-<tt> <b>%f</b> - Given Name <b>%F</b> - GIVEN NAME
- <b>%l</b> - Surname <b>%L</b> - SURNAME
- <b>%t</b> - Title <b>%T</b> - TITLE
- <b>%p</b> - Prefix <b>%P</b> - PREFIX
- <b>%s</b> - Suffix <b>%S</b> - SUFFIX
- <b>%c</b> - Call name <b>%C</b> - CALL NAME
- <b>%y</b> - Patronymic <b>%Y</b> - PATRONYMIC</tt>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 12
- 6
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
-
-
-
- True
- Format definition details
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- 2
- 3
- 4
- fill
-
-
-
-
-
- True
- Example:
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- example_label
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 360
-
-
- 1
- 2
- 2
- 3
- fill
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 12
- True
- 3
- 3
- False
- 6
- 6
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0
- 0
- 0
-
-
- 0
- 1
- 0
- 2
- fill
- fill
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- expand|shrink|fill
-
-
-
-
-
-
- True
- True
- Do not show this dialog again
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 3
- 2
- 3
-
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 12
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 12
- True
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 500
- 400
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- 5
- 3
- False
- 6
- 6
-
-
-
- True
- <b>Parent relationships</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 3
- 0
- 1
-
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- True
- gtk-go-up
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- True
- gtk-go-down
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
- 2
- 3
- 1
- 2
- fill
- fill
-
-
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
- True
- <b>Family relationships</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 3
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
- 1
- 2
- 4
- 5
- fill
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- True
- gtk-go-up
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- True
- gtk-go-down
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
- 2
- 3
- 4
- 5
- fill
- fill
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 500
- 400
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- False
- 6
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_NONE
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- StyledTextEditor
- 0
- 0
- Fri, 04 Apr 2008 11:46:59 GMT
-
-
-
-
- 0
- True
- True
- GTK_PACK_END
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- 2
- 5
- False
- 6
- 6
-
-
-
- True
- _Type:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- type
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- False
- True
- True
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
-
- True
- _ID:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- id
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- ●
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- _Marker:
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- marker
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
- When active the whitespace in your note will be respected in reports. Use this to add formatting layout with spaces, eg a table.
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ 27
+ True
+ ValidatableMaskedEntry
+
+
+ 1
+ 2
+
+
+
+
+
+
+
+
+
+
+ True
+ <b>General</b>
+ True
+
+
+ False
+ tab
+
+
+
+
+ 2
+
+
+
+
+ True
+ True
+ 6
+ True
+ 6
+
+
+ True
+ True
+ False
+
+
+
+ True
+ 12
+ 6
+ 2
+ 12
+ 6
+
+
+ True
+ 1
+ _Title:
+ True
+ center
+ title
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 1
+ _Author:
+ True
+ center
+ author
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 1
+ 3
+ A_bbreviation:
+ True
+ center
+ abbrev
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 1
+ _Publication Information:
+ True
+ center
+ pub_info
+
+
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+ 6
+ 12
+
+
+ True
+ gtk-dialog-warning
+ 6
+
+
+ False
+ 0
+
+
+
+
+ True
+ 0
+ 3
+ <b>Note:</b> Any changes in the shared source information will be reflected in the source itself, for all items that reference the source.
+ True
+ True
+ True
+
+
+ 1
+
+
+
+
+ 2
+ 5
+ 6
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 4
+ 5
+
+
+
+
+
+ True
+ 1
+ _ID:
+ True
+ gid
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 12
+
+
+ True
+ True
+
+
+ 0
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ True
+ ●
+
+
+ 1
+ 2
+
+
+
+
+
+ False
+
+
+
+
+ True
+
+
+ gtk-file
+ 1
+
+
+ 0
+
+
+
+
+ True
+ <b>General</b>
+ True
+ center
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ tab
+
+
+
+
+
+
+ True
+ <b>Shared source information</b>
+ True
+
+
+ label_item
+
+
+
+
+ False
+ 3
+
+
+
+
+ True
+ end
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ dialog
+ False
+
+
+
+ True
+ 8
+
+
+ True
+
+
+ True
+ 0
+ 6
+ 3
+ <b>Reference information</b>
+ True
+ True
+ center
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ 6
+
+
+ True
+ 12
+ 2
+ 3
+ 12
+ 6
+
+
+ True
+ 1
+ _Media Type:
+ True
+ center
+ media_type
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 1
+ Call n_umber:
+ True
+ center
+ call_number
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+ True
+ True
+ False
+ Indicates if the record is private
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ 2
+ 3
+ GTK_SHRINK
+ GTK_SHRINK
+
+
+
+
+ True
+ True
+
+
+ 1
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+
+ True
+ <b>General</b>
+ True
+
+
+ False
+ tab
+
+
+
+
+ False
+ 1
+
+
+
+
+ True
+ True
+ True
+
+
+ True
+ True
+ 6
+
+
+ True
+ 12
+ 4
+ 2
+ 12
+ 6
+
+
+ True
+ 1
+ _Name:
+ True
+ center
+ repo_name
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 1
+ _Type:
+ True
+ center
+ repo_type
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ True
+
+
+ 1
+ 2
+
+
+
+
+
+ 6
+ 12
+
+
+ True
+ gtk-dialog-warning
+ 6
+
+
+ False
+ 0
+
+
+
+
+ True
+ 0
+ 3
+ <b>Note:</b> Any changes in the shared repository information will be reflected in the repository itself, for all items that reference the repository.
+ True
+ True
+ True
+
+
+ 1
+
+
+
+
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+ True
+ 1
+ _ID:
+ True
+ gid
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 12
+
+
+ True
+ True
+
+
+ 0
+
+
+
+
+ True
+ True
+ False
+ Indicates if the record is private
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+
+
+ True
+ <b>General</b>
+ True
+
+
+ False
+ tab
+
+
+
+
+
+
+ True
+ <b>Shared information</b>
+ True
+
+
+ label_item
+
+
+
+
+ 2
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ Abandon changes and close window
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ 600
+ 450
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 6
+ 3
+ 12
+ 6
+
+
+ True
+ 0
+ _Date:
+ True
+ center
+ date_entry
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Place:
+ True
+ center
+ place
+
+
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-date
+
+
+
+
+ 2
+ 3
+ 3
+ 4
+
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ Ordinance:
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ LDS _Temple:
+ True
+ temple
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ 0
+ Family:
+
+
+ 5
+ 6
+ GTK_FILL
+
+
+
+
+
+ 0
+
+
+ 1
+ 2
+ 5
+ 6
+ GTK_FILL
+
+
+
+
+
+ True
+ False
+ none
+
+
+ True
+ gtk-index
+
+
+
+
+ 2
+ 3
+ 5
+ 6
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Status:
+ True
+ status
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+
+
+ True
+ 0
+
+
+ 0
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 1
+ 2
+ 4
+ 5
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-dialog-authentication
+ 1
+
+
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+
+
+
+
+ 2
+ 3
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+ 27
+ True
+ ValidatableMaskedEntry
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+
+
+
+
+
+
+ False
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 5
+ 7
+ 12
+ 6
+
+
+ True
+ 0
+ _Date:
+ True
+ center
+ date_entry
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Add_ress:
+ True
+ center
+ street
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ C_ity/County:
+ True
+ center
+ city
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 3
+ 2
+ 3
+
+
+
+
+
+ True
+ 0
+ _State/Province:
+ True
+ center
+ state
+
+
+ 4
+ 5
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _ZIP/Postal code:
+ True
+ center
+ postal
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 3
+ 3
+ 4
+
+
+
+
+
+ True
+ 0
+ Cou_ntry:
+ True
+ center
+ country
+
+
+ 4
+ 5
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Phon_e:
+ True
+ phone
+
+
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 3
+ 4
+ 5
+
+
+
+
+
+ True
+ True
+
+
+ 5
+ 7
+ 2
+ 3
+
+
+
+
+
+ True
+ True
+
+
+ 5
+ 7
+ 3
+ 4
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 6
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-dialog-authentication
+ 1
+
+
+
+
+ 6
+ 7
+ 1
+ 2
+
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-date
+
+
+
+
+ 6
+ 7
+
+ GTK_FILL
+
+
+
+
+ 27
+ True
+ ValidatableMaskedEntry
+
+
+ 1
+ 6
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ False
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ dialog
+ False
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 2
+ 7
+ 12
+ 6
+
+
+ True
+ 0
+ _Person:
+ True
+ center
+ person
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Association:
+ True
+ center
+ relationship
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 6
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-dialog-authentication
+ 1
+
+
+
+
+ 6
+ 7
+ 1
+ 2
+
+
+
+
+
+
+ True
+ 0
+
+
+ 1
+ 6
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+
+
+ True
+ gtk-index
+
+
+
+
+ 6
+ 7
+ GTK_FILL
+
+
+
+
+
+ False
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ 600
+ 400
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 3
+ 7
+ 12
+ 6
+
+
+ True
+ 0
+ Relationship to _Mother:
+ True
+ center
+ mrel
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ 1
+ 6
+ 2
+ 3
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ Relationship to _Father:
+ True
+ center
+ frel
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ 1
+ 6
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-dialog-authentication
+ 1
+
+
+
+
+ 6
+ 7
+ 2
+ 3
+
+
+
+
+
+
+ True
+ 0
+ Name Child:
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+
+
+ 1
+ 6
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+ Open person editor of this child
+ none
+
+
+ True
+ gtk-edit
+ 1
+
+
+
+
+ 6
+ 7
+ GTK_FILL
+
+
+
+
+
+
+
+
+ False
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ 500
+ 400
+ dialog
+ False
+
+
+ True
+
+
+ True
+ True
+
+
+ True
+
+
+ True
+ 6
+ 6
+
+
+ True
+ True
+ automatic
+ automatic
+
+
+ True
+ StyledTextEditor
+
+
+
+
+ end
+ 0
+
+
+
+
+ 0
+
+
+
+
+ True
+ 6
+ 2
+ 5
+ 6
+ 6
+
+
+ True
+ 0
+ _Type:
+ True
+ type
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ _ID:
+ True
+ id
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ ●
+
+
+ 1
+ 2
+
+
+
+
+
+ True
+ 0
+ _Marker:
+ True
+ marker
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ _Preformatted
+ True
+ True
+ False
+ When active the whitespace in your note will be respected in reports. Use this to add formatting layout with spaces, eg a table.
When not checked, notes are automatically cleaned in the reports, which will improve the report layout.
- True
- _Preformatted
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 3
- 4
- 1
- 2
- fill
-
-
-
-
-
-
- True
- False
- True
- True
-
-
- 3
- 5
- 0
- 1
- fill
-
-
-
-
-
- True
- True
- GTK_RELIEF_NONE
- True
- False
- False
-
-
-
- True
- 1
- gtk-dialog-authentication
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 4
- 5
- 1
- 2
- fill
-
-
-
-
-
- 0
- False
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>Note</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 6
- Family Trees - GRAMPS
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- False
- 710
- 300
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
- 0
- 0
- 0
- 2
-
-
-
- True
- False
- 2
-
-
-
- True
- gtk-close
- 4
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- _Close Window
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
-
-
- True
- True
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
- True
- False
- 2
-
-
-
- True
- gtk-apply
- 4
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- _Load Family Tree
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 6
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- True
- GTK_BUTTONBOX_START
- 6
-
-
-
- True
- True
- True
- gtk-new
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
-
- True
- True
- True
- gtk-delete
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
-
- True
- True
- True
- _Rename
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
-
- True
- True
- True
- Re_pair
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
-
- True
- True
- True
- _Archive
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 6
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
-
- True
- window2
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_NORMAL
- GDK_GRAVITY_NORTH_WEST
- True
- False
-
-
-
- True
- False
- 0
-
-
-
- 10
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- False
- 0
-
-
-
- True
- True
- False
- 0
-
-
-
-
-
-
-
- True
- Options
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_NONE
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- False
- False
- True
- GTK_JUSTIFY_LEFT
- GTK_WRAP_WORD
- True
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- Drag to move; click to detach
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- True
- gtk-properties
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- Click to expand/collapse
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- True
- gtk-remove
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- Click to delete gramplet from view
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- True
- gtk-close
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- <b><i>Gramplet</i></b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0
- 7
- 9
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- True
- True
-
-
-
-
- label_item
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
- 0
- False
- False
- GTK_PACK_END
-
-
-
-
-
- 12
- True
- 2
- 3
- False
- 0
- 0
-
-
-
- True
- gtk-dialog-info
- 6
- 0.5
- 0
- 0
- 0
-
-
- 0
- 1
- 0
- 2
- fill
- fill
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 6
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 2
- 3
- 0
- 1
- expand|shrink|fill
-
-
-
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_ETCHED_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- 308
- 210
- True
- True
- False
- False
- True
- GTK_JUSTIFY_LEFT
- GTK_WRAP_NONE
- True
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
-
-
- 2
- 3
- 1
- 2
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
+ True
+ True
+
+
+ 3
+ 4
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ 3
+ 5
+ GTK_FILL
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-dialog-authentication
+ 1
+
+
+
+
+ 4
+ 5
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+
+
+
+ False
+ 1
+
+
+
+
+
+
+ True
+ <b>Note</b>
+ True
+
+
+ False
+ tab
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 3
+ 4
+ 6
+ 6
+
+
+ True
+ 0
+ _Place Name:
+ True
+ center
+ place_title
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ L_atitude:
+ True
+ center
+ lat_entry
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Longitude:
+ True
+ center
+ lon_entry
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ True
+
+
+ 1
+ 4
+
+
+
+
+
+ True
+ 0
+ _ID:
+ True
+ gid
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ ●
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ 2
+ 3
+ 2
+ 3
+
+
+
+
+
+
+ True
+ ValidatableMaskedEntry
+
+
+ 3
+ 4
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+ True
+ ValidatableMaskedEntry
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ True
+ True
+
+
+
+ True
+ 12
+ 5
+ 4
+ 12
+ 6
+
+
+ True
+ 0
+ C_ity:
+ True
+ center
+ city
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ S_treet:
+ True
+ center
+ street
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ ●
+
+
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+
+
+ 3
+ 4
+ 1
+ 2
+
+
+
+
+
+ True
+ 0
+ Ch_urch parish:
+ True
+ center
+ parish
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Co_unty:
+ True
+ center
+ county
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+ True
+ 0
+ _State:
+ True
+ center
+ state
+
+
+ 2
+ 3
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 3
+ 4
+ 2
+ 3
+
+
+
+
+
+ True
+ 0
+ Count_ry:
+ True
+ center
+ country
+
+
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+ True
+ 0
+ _ZIP/Postal code:
+ True
+ center
+ postal
+
+
+ 2
+ 3
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 3
+ 4
+ 3
+ 4
+
+
+
+
+
+ True
+ 0
+ Phon_e:
+ True
+ phone
+
+
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 1
+ 2
+ 4
+ 5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+
+
+ True
+ gtk-file
+ 1
+
+
+ 0
+
+
+
+
+ True
+ <b>Location</b>
+ True
+ center
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ tab
+
+
+
+
+ 1
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ -6
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ -5
+ True
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+
+ dialog
+ False
+
+
+
+ True
+
+
+ True
+
+
+ True
+ 6
+ 12
+
+
+ True
+
+
+ 132
+ True
+ 6
+ 4
+ 2
+ 12
+ 6
+
+
+ True
+ 0
+ Name:
+
+
+ 1
+ 2
+ GTK_FILL
+
+ 10
+
+
+
+
+ True
+ 0
+ Birth:
+
+
+ 2
+ 3
+ GTK_FILL
+
+ 10
+
+
+
+
+ True
+ 0
+ Death:
+
+
+ 3
+ 4
+ GTK_FILL
+
+ 10
+
+
+
+
+ True
+
+
+ True
+ 0
+ <b>Father</b>
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+
+ True
+ gtk-index
+
+
+
+
+ False
+ False
+ 2
+ 1
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+
+ True
+ gtk-add
+
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-remove
+
+
+
+
+ False
+ False
+ 3
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-edit
+
+
+
+
+ False
+ False
+ 4
+
+
+
+
+ 2
+ GTK_FILL
+
+
+
+
+ True
+ 0
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+
+
+ 1
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ end
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+ 0
+
+
+
+
+ True
+
+
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+
+
+ end
+ 1
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 132
+ True
+ 6
+ 4
+ 2
+ 12
+ 6
+
+
+ True
+ 0
+ Name:
+
+
+ 1
+ 2
+ GTK_FILL
+
+ 10
+
+
+
+
+ True
+ 0
+ Birth:
+
+
+ 2
+ 3
+ GTK_FILL
+
+ 10
+
+
+
+
+ True
+ 0
+ Death:
+
+
+ 3
+ 4
+ GTK_FILL
+
+ 10
+
+
+
+
+ True
+ 0
+
+
+ 1
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+
+
+ True
+ 0
+ <b>Mother</b>
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+
+ True
+ gtk-index
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+
+ True
+ gtk-add
+
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-remove
+
+
+
+
+ False
+ False
+ 4
+
+
+
+
+ True
+ True
+ False
+ none
+
+
+ True
+ gtk-edit
+
+
+
+
+ False
+ False
+ 5
+
+
+
+
+ True
+ True
+ False
+ Indicates if the record is private
+ none
+
+
+ True
+ gramps-unlock
+
+
+
+
+ False
+ False
+ end
+ 3
+
+
+
+
+ 2
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ end
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+ 2
+
+
+
+
+ False
+ 0
+
+
+
+
+ True
+ 6
+ 2
+ 6
+ 12
+ 6
+
+
+ True
+ 0
+ <b>Relationship Information</b>
+ True
+
+
+ 6
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _ID:
+ True
+ center
+ gid
+
+
+ 1
+ 2
+ GTK_FILL
+
+ 10
+
+
+
+
+ True
+ True
+ 6
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+ True
+ 0
+ _Type:
+ True
+ center
+ marriage_type
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Marker:
+ True
+ center
+ marker
+
+
+ 4
+ 5
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+
+
+ 3
+ 4
+ 1
+ 2
+ GTK_SHRINK | GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+
+
+ 5
+ 6
+ 1
+ 2
+ GTK_SHRINK | GTK_FILL
+ GTK_FILL
+
+
+
+
+ False
+ 1
+
+
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ False
+ Abandon changes and close window
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ True
+ False
+ Accept changes and close window
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-help
+ -11
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
diff --git a/src/glade/grampscfg.glade b/src/glade/grampscfg.glade
new file mode 100644
index 000000000..3c911e1d5
--- /dev/null
+++ b/src/glade/grampscfg.glade
@@ -0,0 +1,206 @@
+
+
+
+
+
+ True
+ True
+ 400
+ dialog
+ False
+
+
+ True
+
+
+ True
+
+
+ True
+ 12
+ 4
+ 2
+ 12
+ 6
+
+
+ True
+ 0
+ Format _name:
+ True
+ center
+ name_entry
+
+
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Format _definition:
+ True
+ center
+ format_entry
+
+
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ •
+
+
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+ •
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+ True
+ True
+
+
+ True
+ 0
+ 12
+ 6
+ The following conventions are used:
+<tt> <b>%f</b> - Given Name <b>%F</b> - GIVEN NAME
+ <b>%l</b> - Surname <b>%L</b> - SURNAME
+ <b>%t</b> - Title <b>%T</b> - TITLE
+ <b>%p</b> - Prefix <b>%P</b> - PREFIX
+ <b>%s</b> - Suffix <b>%S</b> - SUFFIX
+ <b>%c</b> - Call name <b>%C</b> - CALL NAME
+ <b>%y</b> - Patronymic <b>%Y</b> - PATRONYMIC</tt>
+ True
+
+
+
+
+ True
+ Format definition details
+
+
+
+
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ Example:
+ center
+ example_label
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ True
+ center
+ 360
+
+
+ 1
+ 2
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ 0
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ cancelbutton2
+ okbutton2
+
+
+
diff --git a/src/glade/questiondialog.glade b/src/glade/questiondialog.glade
new file mode 100644
index 000000000..2ddf4622d
--- /dev/null
+++ b/src/glade/questiondialog.glade
@@ -0,0 +1,852 @@
+
+
+
+
+
+ dialog
+ False
+
+
+ True
+
+
+ True
+ 12
+ 3
+ 3
+
+
+ True
+ 0
+ 6
+ 12
+ True
+ True
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ gtk-dialog-warning
+ 6
+
+
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ 6
+ True
+ True
+
+
+ 2
+ 3
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+
+
+
+
+
+ Do not ask again
+ True
+ True
+ False
+ True
+ True
+
+
+ 1
+ 3
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ Close _without saving
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-cancel
+ True
+ True
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ gtk-save
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ button1
+ button2
+ button3
+
+
+
+ dialog
+ False
+
+
+ True
+
+
+ True
+ 12
+ 2
+ 3
+
+
+ True
+ 0
+ 6
+ 12
+ True
+ True
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ gtk-dialog-question
+ 6
+
+
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ 6
+ True
+ True
+
+
+ 2
+ 3
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ no
+ okbutton
+
+
+
+ dialog
+ False
+
+
+ True
+
+
+ True
+ 12
+ 2
+ 3
+
+
+ True
+ 0
+ 6
+ 12
+ True
+ True
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ gtk-dialog-warning
+ 6
+
+
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ 6
+ True
+ True
+
+
+ 2
+ 3
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ option1
+ option2
+
+
+
+ dialog
+ False
+
+
+ True
+
+
+ True
+ 12
+ 2
+ 3
+
+
+ True
+ 0
+ gtk-dialog-info
+ 6
+
+
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ 6
+ True
+ True
+
+
+ 2
+ 3
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+
+
+
+
+
+ True
+ True
+ automatic
+ automatic
+ etched-in
+
+
+ 308
+ 210
+ True
+ True
+ False
+
+
+
+
+ 2
+ 3
+ 1
+ 2
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-ok
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ False
+ False
+ end
+ 0
+
+
+
+
+
+ button182
+
+
+
+ dialog
+ False
+
+
+ True
+
+
+ True
+ 12
+ 3
+ 3
+
+
+ True
+ 0
+ 6
+ 24
+ True
+ True
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ gtk-dialog-warning
+ 6
+
+
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ 6
+ True
+ True
+
+
+ 2
+ 3
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+
+
+
+
+
+ _Use this selection for all missing media files
+ True
+ True
+ False
+ If you check this button, all the missing media files will be automatically treated according to the currently selected option. No further dialogs will be presented for any missing media files.
+ True
+ True
+
+
+ 2
+ 3
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ True
+ True
+ True
+ False
+ Remove object and all references to it from the database
+
+
+ True
+ 0
+ 0
+
+
+ True
+ 2
+
+
+ True
+ gtk-delete
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ _Remove Object
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ _Keep Reference
+ True
+ True
+ True
+ False
+ Keep reference to the missing file
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ True
+ True
+ True
+ True
+ True
+ False
+ Select replacement for the missing file
+
+
+ True
+ 0
+ 0
+
+
+ True
+ 2
+
+
+ True
+ gtk-find
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ _Select File
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ button8
+ button9
+ button11
+
+
+
+ dialog
+ False
+
+
+ True
+
+
+ True
+ 12
+ 3
+ 3
+ 6
+ 6
+
+
+ True
+ 0
+ gtk-dialog-warning
+ 6
+
+
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ True
+ True
+
+
+ 2
+ 3
+ GTK_EXPAND | GTK_SHRINK | GTK_FILL
+
+
+
+
+
+ Do not show this dialog again
+ True
+ True
+ False
+ True
+ True
+
+
+ 1
+ 3
+ 2
+ 3
+
+
+
+
+
+
+ True
+ 0
+ 12
+ True
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-close
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ button180
+
+
+
diff --git a/src/glade/reorder.glade b/src/glade/reorder.glade
new file mode 100644
index 000000000..b4eac470a
--- /dev/null
+++ b/src/glade/reorder.glade
@@ -0,0 +1,265 @@
+
+
+
+
+
+ True
+ 12
+ 500
+ 400
+ dialog
+
+
+ True
+
+
+ True
+ 5
+ 3
+ 6
+ 6
+
+
+ True
+ 0
+ <b>Parent relationships</b>
+ True
+
+
+ 3
+
+
+
+
+
+ True
+ vertical
+
+
+ True
+ True
+ True
+
+
+ True
+ gtk-go-up
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ True
+
+
+ True
+ gtk-go-down
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ True
+ automatic
+ automatic
+ in
+
+
+ True
+ True
+
+
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+ True
+ 0
+ <b>Family relationships</b>
+ True
+
+
+ 3
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ automatic
+ automatic
+ in
+
+
+ True
+ True
+
+
+
+
+ 1
+ 2
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+ True
+ vertical
+
+
+ True
+ True
+ True
+
+
+ True
+ gtk-go-up
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ True
+
+
+ True
+ gtk-go-down
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+
+
+
+ 2
+ 3
+ 4
+ 5
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ True
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ True
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ cancel
+ ok
+
+
+
diff --git a/src/glade/styleeditor.glade b/src/glade/styleeditor.glade
new file mode 100644
index 000000000..374cd84b4
--- /dev/null
+++ b/src/glade/styleeditor.glade
@@ -0,0 +1,1320 @@
+
+
+
+
+
+ True
+ 400
+ 300
+ dialog
+ False
+
+
+ True
+
+
+ True
+
+
+ True
+ 10
+ True
+ center
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ 6
+ 6
+
+
+ True
+ False
+ automatic
+ automatic
+ in
+
+
+ True
+ True
+
+
+
+
+
+ 0
+
+
+
+
+ True
+ 10
+ start
+
+
+ True
+ True
+ False
+
+
+
+ True
+ gtk-add
+
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+ False
+
+
+
+ True
+ gtk-edit
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ True
+ True
+ False
+
+
+
+ True
+ gtk-remove
+
+
+
+
+ False
+ False
+ 2
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ 1
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ False
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ button2
+ button1
+
+
+
+ dialog
+ False
+
+
+ True
+
+
+ True
+
+
+ True
+ 5
+ 5
+ True
+ center
+
+
+ False
+ 10
+ 0
+
+
+
+
+ True
+
+
+ True
+ Style n_ame:
+ True
+ center
+ style_name
+
+
+ False
+ False
+ 10
+ 0
+
+
+
+
+ True
+ True
+ True
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ True
+ True
+ 12
+
+
+ True
+ True
+ automatic
+ automatic
+ in
+
+
+ 175
+ True
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+ True
+ True
+ False
+
+
+ True
+ 12
+ 12
+
+
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ True
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+
+
+ True
+ <b>Description</b>
+ True
+
+
+ False
+
+
+
+
+ True
+ 12
+ 11
+ 4
+ 12
+ 6
+
+
+ True
+ 0
+ 0
+ 3
+ <b>Type face</b>
+ True
+ center
+
+
+ 4
+ GTK_FILL
+
+
+
+
+
+ _Roman (Times, serif)
+ True
+ True
+ False
+ True
+ True
+
+
+ 1
+ 4
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ _Swiss (Arial, Helvetica, sans-serif)
+ True
+ True
+ False
+ True
+ True
+ roman
+
+
+ 1
+ 4
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ 3
+ <b>Size</b>
+ True
+ center
+
+
+ 4
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ adjustment7
+ 1
+ True
+
+
+ 1
+ 3
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ point size|pt
+ center
+
+
+ 3
+ 4
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ 3
+ <b>Color</b>
+ True
+ center
+
+
+ 4
+ 5
+ 6
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ 0
+ 3
+ <b>Options</b>
+ True
+ center
+
+
+ 4
+ 7
+ 8
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ _Bold
+ True
+ True
+ False
+ True
+ True
+
+
+ 1
+ 4
+ 8
+ 9
+ GTK_FILL
+
+
+
+
+
+ _Italic
+ True
+ True
+ False
+ True
+ True
+
+
+ 1
+ 4
+ 9
+ 10
+ GTK_FILL
+
+
+
+
+
+ _Underline
+ True
+ True
+ False
+ True
+ True
+
+
+ 1
+ 4
+ 10
+ 11
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ 0
+ True
+
+
+ 2
+ 3
+ 6
+ 7
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+
+
+ 1
+ 2
+ 6
+ 7
+ GTK_FILL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+ True
+ <b>Font options</b>
+ True
+
+
+ 1
+ False
+
+
+
+
+ True
+ 12
+ 14
+ 5
+ 12
+ 6
+
+
+ _Left
+ True
+ True
+ False
+ True
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ _Right
+ True
+ True
+ False
+ True
+ True
+ lalign
+
+
+ 2
+ 3
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ J_ustify
+ True
+ True
+ False
+ True
+ True
+ lalign
+
+
+ 4
+ 5
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ Cen_ter
+ True
+ True
+ False
+ True
+ True
+ lalign
+
+
+ 3
+ 4
+ 1
+ 2
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ 0
+ 3
+ <b>Alignment</b>
+ True
+ center
+
+
+ 5
+ GTK_FILL
+ GTK_FILL
+
+
+
+
+ True
+ 0
+ 3
+ <b>Background color</b>
+ True
+ center
+
+
+ 5
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ First li_ne:
+ True
+ center
+ indent
+
+
+ 1
+ 2
+ 7
+ 8
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ cm
+ center
+
+
+ 4
+ 5
+ 5
+ 6
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ cm
+ center
+
+
+ 4
+ 5
+ 6
+ 7
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ cm
+ center
+
+
+ 4
+ 5
+ 7
+ 8
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ R_ight:
+ True
+ center
+ rmargin
+
+
+ 1
+ 2
+ 6
+ 7
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ L_eft:
+ True
+ center
+ lmargin
+
+
+ 1
+ 2
+ 5
+ 6
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ 0
+ 3
+ <b>Spacing</b>
+ True
+ center
+
+
+ 5
+ 8
+ 9
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Abo_ve:
+ True
+ center
+ tmargin
+
+
+ 1
+ 2
+ 9
+ 10
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ Belo_w:
+ True
+ center
+ bmargin
+
+
+ 1
+ 2
+ 10
+ 11
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ cm
+ center
+
+
+ 4
+ 5
+ 9
+ 10
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ cm
+ center
+
+
+ 4
+ 5
+ 10
+ 11
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ 0
+ 3
+ <b>Borders</b>
+ True
+ center
+
+
+ 5
+ 11
+ 12
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ adjustment6
+ 1
+ 2
+ True
+
+
+ 2
+ 4
+ 6
+ 7
+
+
+
+
+
+ True
+ True
+ adjustment5
+ 1
+ 2
+ True
+
+
+ 2
+ 4
+ 7
+ 8
+
+
+
+
+
+ True
+ True
+ adjustment4
+ 1
+ 2
+ True
+
+
+ 2
+ 4
+ 5
+ 6
+
+
+
+
+
+ True
+ True
+ adjustment3
+ 1
+ 2
+ True
+
+
+ 2
+ 4
+ 9
+ 10
+
+
+
+
+
+ True
+ True
+ adjustment2
+ 1
+ 2
+ True
+
+
+ 2
+ 4
+ 10
+ 11
+
+
+
+
+
+ Le_ft
+ True
+ True
+ False
+ True
+ True
+
+
+ 1
+ 2
+ 13
+ 14
+ GTK_FILL
+
+
+
+
+
+ Righ_t
+ True
+ True
+ False
+ True
+ True
+
+
+ 2
+ 3
+ 13
+ 14
+ GTK_FILL
+
+
+
+
+
+ _Top
+ True
+ True
+ False
+ True
+ True
+
+
+ 3
+ 4
+ 13
+ 14
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ _Padding:
+ True
+ center
+ pad
+
+
+ 1
+ 2
+ 12
+ 13
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ adjustment1
+ 1
+ 2
+ True
+
+
+ 2
+ 4
+ 12
+ 13
+
+
+
+
+
+ True
+ 0
+ cm
+ center
+
+
+ 4
+ 5
+ 12
+ 13
+ GTK_FILL
+
+
+
+
+
+ _Bottom
+ True
+ True
+ False
+ True
+ True
+
+
+ 4
+ 5
+ 13
+ 14
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ 0
+ True
+
+
+ 2
+ 3
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+ True
+ 0
+ <b>Indentation</b>
+ True
+
+
+ 5
+ 4
+ 5
+ GTK_FILL
+
+
+
+
+
+ True
+ True
+ False
+
+
+ 1
+ 2
+ 3
+ 4
+ GTK_FILL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2
+
+
+
+
+ True
+ <b>Paragraph options</b>
+ True
+
+
+ 2
+ False
+
+
+
+
+ True
+ True
+
+
+
+
+ 2
+
+
+
+
+ 1
+
+
+
+
+ True
+ end
+
+
+ gtk-cancel
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-ok
+ True
+ True
+ True
+ True
+ False
+ True
+
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ end
+ 0
+
+
+
+
+
+ button8
+ button7
+
+
+
+ 0.20000000000000001
+ 100
+ 0.10000000000000001
+ 1
+
+
+ -100
+ 100
+ 0.10000000000000001
+ 1
+
+
+ -100
+ 100
+ 0.10000000000000001
+ 1
+
+
+ -100
+ 100
+ 0.10000000000000001
+ 1
+
+
+ 2
+ -100
+ 100
+ 0.10000000000000001
+ 1
+
+
+ -100
+ 100
+ 0.10000000000000001
+ 1
+
+
+ 100
+ 1
+ 10
+
+
diff --git a/src/glade/tipofday.glade b/src/glade/tipofday.glade
new file mode 100644
index 000000000..6e2448c98
--- /dev/null
+++ b/src/glade/tipofday.glade
@@ -0,0 +1,130 @@
+
+
+
+
+
+ True
+ 8
+ window1
+ 500
+ 350
+
+
+ True
+ vertical
+
+
+ True
+ 3
+ 3
+
+
+ True
+ 6
+ 6
+ True
+
+
+ 2
+ 3
+ 1
+ 2
+
+
+
+
+ True
+ True
+ True
+
+
+ 2
+ 3
+ GTK_FILL
+
+
+
+
+ _Display on startup
+ True
+ True
+ False
+ True
+ True
+ True
+
+
+ 3
+ 2
+ 3
+ GTK_EXPAND
+ GTK_FILL
+
+
+
+
+ True
+
+
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+
+ True
+ end
+
+
+ gtk-go-forward
+ True
+ True
+ True
+ True
+ True
+
+
+ False
+ False
+ 0
+
+
+
+
+ gtk-close
+ True
+ True
+ True
+ True
+ True
+
+
+ False
+ False
+ 1
+
+
+
+
+ False
+ False
+ end
+ 1
+
+
+
+
+
+