diff --git a/ChangeLog b/ChangeLog index 2fa12f65b..00d6966d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,25 @@ +2005-04-23 Don Allingham + * src/AddrEdit.py: use new label scheme for tabs that uses an + icon to indicate used tabs + * src/AttrEdit.py: use new label scheme for tabs that uses an + icon to indicate used tabs + * src/NameEdit.py: use new label scheme for tabs + * src/Date.py: incorporate instance check form gramps20 branch + * src/EditPerson.py: add additional fields for name edit, handle + lds page better, adapt to new label scheme + * src/GrampsDbBase.py: fix typos + * src/GrampsGEDDB.py: fix undo handling + * src/GrampsInMemDB.py: fix undo handling + * src/GrampsXMLDB.py: fix undo handling + * src/PeopleView.py: don't reselect an already selected person + * src/Utils.py: new tab scheme + * src/edit_person.glade new tab scheme + * src/gramps_main.py: 1->True, 0->False replacements + * src/DbPrompter.py: bring up to date with gramps20 branch + * src/DisplayModels.py: bring up to date with gramps20 branch + * src/ReadGedcom.py: bring up to date with gramps20 branch + * src/Relationship.py: bring up to date with gramps20 branch + 2005-04-23 Martin Hawlisch * src/GrampsDbBase.py (_find_from_handle,find_object_from_handle, find_place_from_handle): Fix typo diff --git a/example/gramps/data.gramps b/example/gramps/data.gramps index 65d86ea43..a3280d1fc 100644 Binary files a/example/gramps/data.gramps and b/example/gramps/data.gramps differ diff --git a/src/AddrEdit.py b/src/AddrEdit.py index 4d1308d8c..81b3b2f4a 100644 --- a/src/AddrEdit.py +++ b/src/AddrEdit.py @@ -96,8 +96,9 @@ class AddressEditor: self.note_field = self.top.get_widget("addr_note") self.priv = self.top.get_widget("priv") self.slist = self.top.get_widget("slist") - self.sources_label = self.top.get_widget("sourcesAddr") - self.notes_label = self.top.get_widget("noteAddr") + self.sources_label = self.top.get_widget("sources_tab") + self.notes_label = self.top.get_widget("note_tab") + self.general_label = self.top.get_widget("general_tab") self.flowed = self.top.get_widget("addr_flowed") self.preform = self.top.get_widget("addr_preform") @@ -123,9 +124,15 @@ class AddressEditor: self.preform.set_active(1) else: self.flowed.set_active(1) + Utils.bold_label(self.general_label) + else: + Utils.unbold_label(self.sources_label) + Utils.bold_label(self.general_label) else: + Utils.unbold_label(self.general_label) self.addr_date_obj = Date.Date() self.srcreflist = [] + self.switch_page() self.sourcetab = Sources.SourceTab( self.srcreflist, self, self.top, self.window, self.slist, @@ -240,8 +247,13 @@ class AddressEditor: self.check(self.addr.get_privacy,self.addr.set_privacy,priv) def on_switch_page(self,obj,a,page): + self.switch_page() + + def switch_page(self): buf = self.note_field.get_buffer() - text = unicode(buf.get_text(buf.get_start_iter(),buf.get_end_iter(),False)) + start = buf.get_start_iter() + stop = buf.get_end_iter() + text = unicode(buf.get_text(start,stop,False)) if text: Utils.bold_label(self.notes_label) else: diff --git a/src/AttrEdit.py b/src/AttrEdit.py index d2f761f0e..9bb5bb633 100644 --- a/src/AttrEdit.py +++ b/src/AttrEdit.py @@ -98,8 +98,9 @@ class AttributeEditor: self.type_field = self.attrib_menu.child self.source_field = self.top.get_widget("attr_source") self.priv = self.top.get_widget("priv") - self.sources_label = self.top.get_widget("sourcesAttr") - self.notes_label = self.top.get_widget("noteAttr") + self.general_label = self.top.get_widget("general_tab") + self.sources_label = self.top.get_widget("sources_tab") + self.notes_label = self.top.get_widget("note_tab") self.flowed = self.top.get_widget("attr_flowed") self.preform = self.top.get_widget("attr_preform") @@ -133,9 +134,11 @@ class AttributeEditor: self.note_field.get_buffer().set_text(attrib.get_note()) Utils.bold_label(self.notes_label) if attrib.get_note_format() == 1: - self.preform.set_active(1) + self.preform.set_active(True) else: - self.flowed.set_active(1) + self.flowed.set_active(True) + else: + Utils.unbold_label(self.notes_label) self.top.signal_autoconnect({ "on_help_attr_clicked" : self.on_help_clicked, @@ -148,6 +151,7 @@ class AttributeEditor: if parent_window: self.window.set_transient_for(parent_window) self.add_itself_to_menu() + self.update_note_page() self.window.show() def on_delete_event(self,obj,b): @@ -242,8 +246,13 @@ class AttributeEditor: self.check(self.attrib.get_privacy,self.attrib.set_privacy,priv) def on_switch_page(self,obj,a,page): + self.update_note_page() + + def update_note_page(self): buf = self.note_field.get_buffer() - text = unicode(buf.get_text(buf.get_start_iter(),buf.get_end_iter(),False)) + start = buf.get_start_iter() + end = buf.get_end_iter() + text = unicode(buf.get_text(start,end,False)) if text: Utils.bold_label(self.notes_label) else: diff --git a/src/Date.py b/src/Date.py index 51ba9d1d4..811b2b92c 100644 --- a/src/Date.py +++ b/src/Date.py @@ -135,7 +135,10 @@ class Date: Comparison function. Allows the usage of equality tests. This allows you do run statements like 'date1 <= date2' """ - return cmp(self.sortval,other.sortval) + if isinstance(other,Date): + return cmp(self.sortval,other.sortval) + else: + return -1 def is_equal(self,other): """ diff --git a/src/DbPrompter.py b/src/DbPrompter.py index 2cd7c51ca..ddd4b1d61 100644 --- a/src/DbPrompter.py +++ b/src/DbPrompter.py @@ -297,8 +297,14 @@ class ImportDbPrompter: filename = choose.get_filename() filetype = type_selector.get_value() if filetype == 'auto': - filetype = get_mime_type(filename) - + try: + filetype = get_mime_type(filename) + except RuntimeError,msg: + QuestionDialog.ErrorDialog( + _("Could not open file: %s") % filename, + str(msg)) + return False + if filetype == const.app_gramps: choose.destroy() ReadGrdb.importData(self.parent.db,filename) diff --git a/src/DisplayModels.py b/src/DisplayModels.py index aa82cbed4..1fdc5adf8 100644 --- a/src/DisplayModels.py +++ b/src/DisplayModels.py @@ -111,7 +111,7 @@ class BaseModel(gtk.GenericTreeModel): def on_get_path(self, node): '''returns the tree path (a tuple of indices at the various levels) for a particular node.''' - return self.indexlist[node[0]] + return self.indexlist[node] def on_get_column_type(self,index): return gobject.TYPE_STRING diff --git a/src/DisplayTrace.py b/src/DisplayTrace.py index a8e2b2338..49719f45f 100644 --- a/src/DisplayTrace.py +++ b/src/DisplayTrace.py @@ -85,18 +85,27 @@ class DisplayTrace: msg.write("Python : %s.%s.%s %s\n" % (ver[0],ver[1],ver[2],ver[3])) msg.write("GTK : %s.%s.%s\n" % gtk.gtk_version) msg.write('PyGTK : %d.%d.%d\n' % gtk.pygtk_version) - for n in _release_files: - if os.path.isfile(n): - try: - f = open(n) - text = f.readline() - if n.find('debian') != -1: - text = "Debian %s" % text - msg.write("OS : %s\n" % text) - f.close() - break - except: - pass + n = '/etc/lsb-release' + if os.path.isfile(n): + f = open(n) + for line in f.readlines(): + (val,text) = line.split('=') + if val == "DISTRIB_DESCRIPTION": + msg.write("OS : %s\n" % text.replace('"','')) + f.close() + else: + for n in _release_files: + if os.path.isfile(n): + try: + f = open(n) + text = f.readline() + if n.find('debian') != -1: + text = "Debian %s" % text + msg.write("OS : %s\n" % text) + f.close() + break + except: + pass traceback.print_exception(data[0],data[1],data[2],None,msg) diff --git a/src/EditPerson.py b/src/EditPerson.py index 7b7f184ad..5773d8f34 100644 --- a/src/EditPerson.py +++ b/src/EditPerson.py @@ -128,8 +128,8 @@ class EditPerson: mod = not self.db.readonly self.load_obj = None - self.top = gtk.glade.XML(const.editPersonFile, "editPerson","gramps") - self.window = self.get_widget("editPerson") + self.top = gtk.glade.XML(const.editPersonFile, "edit_person","gramps") + self.window = self.get_widget("edit_person") self.window.set_title("%s - GRAMPS" % _('Edit Person')) self.icon_list = self.top.get_widget("iconlist") @@ -211,12 +211,12 @@ class EditPerson: self.gid = self.get_widget("gid") self.gid.set_editable(mod) self.slist = self.get_widget("slist") - self.general_label = self.get_widget("general_label") self.names_label = self.get_widget("names_label") self.attr_label = self.get_widget("attr_label") self.addr_label = self.get_widget("addr_label") self.notes_label = self.get_widget("notes_label") self.sources_label = self.get_widget("sources_label") + self.events_label = self.get_widget("events_label") self.inet_label = self.get_widget("inet_label") self.gallery_label = self.get_widget("gallery_label") self.lds_tab = self.get_widget("lds_tab") @@ -264,29 +264,33 @@ class EditPerson: else: self.srcreflist = [] - #Utils.bold_label(self.general_label) - #if self.srcreflist: - # Utils.bold_label(self.sources_label) - #if self.nlist: - # Utils.bold_label(self.names_label) - #if self.alist: - # Utils.bold_label(self.attr_label) - #if self.ulist: - # Utils.bold_label(self.inet_label) - #if self.plist: - # Utils.bold_label(self.addr_label) - #if self.person.get_media_list(): - # Utils.bold_label(self.gallery_label) + if self.event_list: + Utils.bold_label(self.events_label) + if self.srcreflist: + Utils.bold_label(self.sources_label) + if self.nlist: + Utils.bold_label(self.names_label) + if self.alist: + Utils.bold_label(self.attr_label) + if self.ulist: + Utils.bold_label(self.inet_label) + if self.plist: + Utils.bold_label(self.addr_label) + if self.person.get_media_list(): + Utils.bold_label(self.gallery_label) # event display - event_default = [ 'Event', 'Description', 'Date', 'Place' ] + event_default = [ 'Event', 'Description', 'Date', 'Place', + 'Source', 'Note' ] self.event_trans = TransTable.TransTable(event_default) evalues = { - 'Event' : (_('Event'),-1,150), + 'Event' : (_('Event'),-1,125), 'Description' : (_('Description'),-1,150), 'Date' : (_('Date'),-1,100), - 'Place' : (_('Place'),-1,100) + 'Place' : (_('Place'),-1,100), + 'Source' : (_(':Source'),-1,50), + 'Note' : (_(':Note'),-1,50) } if not self.db.readonly: @@ -315,7 +319,9 @@ class EditPerson: self.on_update_addr_clicked) # name display - ntitles = [(_('Name'),-1,250),(_('Type'),-1,100)] + ntitles = [(_('Family Name'),-1,250),(_('Prefix'),-1,50), + (_('Given Name'),-1,200),(_('Suffix'),-1,50), + (_('Type'),-1,100)] self.ntree = ListModel.ListModel(self.name_list,ntitles, self.on_name_select_row) self.ntree.tree.connect('event',self.aka_double_click) @@ -340,16 +346,12 @@ class EditPerson: self.lds_endowment = RelLib.LdsOrd(self.person.get_lds_endowment()) self.lds_sealing = RelLib.LdsOrd(self.person.get_lds_sealing()) - if GrampsKeys.get_uselds() \ - or (not self.lds_baptism.is_empty()) \ - or (not self.lds_endowment.is_empty()) \ - or (not self.lds_sealing.is_empty()): - self.get_widget("lds_tab").show() - self.get_widget("lds_page").show() - #if (not self.lds_baptism.is_empty()) \ - # or (not self.lds_endowment.is_empty()) \ - # or (not self.lds_sealing.is_empty()): - # Utils.bold_label(self.lds_tab) + self.get_widget("lds_tab").show() + self.get_widget("lds_page").show() + if (not self.lds_baptism.is_empty()) \ + or (not self.lds_endowment.is_empty()) \ + or (not self.lds_sealing.is_empty()): + Utils.bold_label(self.lds_tab) types = const.NameTypesMap.get_values() types.sort() @@ -366,7 +368,7 @@ class EditPerson: self.preform.set_active(1) else: self.flowed.set_active(1) - #Utils.bold_label(self.notes_label) + Utils.bold_label(self.notes_label) self.name_list.drag_dest_set(gtk.DEST_DEFAULT_ALL, [DdTargets.NAME.target()], @@ -678,7 +680,6 @@ class EditPerson: self.ldssealstat = self.get_widget("sealstat") self.ldssealstat.set_sensitive(not self.db.readonly) - self.bstat = self.lds_field( self.lds_baptism, self.ldsbap_temple, self.ldsbap_date, self.ldsbapplace) @@ -968,13 +969,16 @@ class EditPerson: self.ntree.clear() self.nmap = {} for name in self.nlist: - node = self.ntree.add([name.get_name(),_(name.get_type())],name) + node = self.ntree.add([ + name.get_surname(),name.get_surname_prefix(), + name.get_first_name(), name.get_suffix(), + _(name.get_type())],name) self.nmap[str(name)] = node if self.nlist: self.ntree.select_row(0) -# Utils.bold_label(self.names_label) -# else: -# Utils.unbold_label(self.names_label) + Utils.bold_label(self.names_label) + else: + Utils.unbold_label(self.names_label) def redraw_url_list(self): """redraws the url list, disabling the go button if no url @@ -988,12 +992,10 @@ class EditPerson: if len(self.ulist) > 0: self.web_go.set_sensitive(False) self.wtree.select_row(0) -# Utils.bold_label(self.inet_label) + Utils.bold_label(self.inet_label) else: self.web_go.set_sensitive(False) -# self.web_url.set_text("") -# self.web_description.set_text("") -# Utils.unbold_label(self.inet_label) + Utils.unbold_label(self.inet_label) def redraw_addr_list(self): """Redraws the address list""" @@ -1006,9 +1008,9 @@ class EditPerson: self.pmap[str(addr)] = node if self.plist: self.ptree.select_row(0) -# Utils.bold_label(self.addr_label) -# else: -# Utils.unbold_label(self.addr_label) + Utils.bold_label(self.addr_label) + else: + Utils.unbold_label(self.addr_label) def redraw_attr_list(self): """redraws the attribute list for the person""" @@ -1019,9 +1021,9 @@ class EditPerson: self.amap[str(attr)] = node if self.alist: self.atree.select_row(0) -# Utils.bold_label(self.attr_label) -# else: -# Utils.unbold_label(self.attr_label) + Utils.bold_label(self.attr_label) + else: + Utils.unbold_label(self.attr_label) def name_edit_callback(self,name): self.redraw_name_list() @@ -1060,11 +1062,14 @@ class EditPerson: for event_handle in self.elist: event = self.db.get_event_from_handle(event_handle) pname = place_title(self.db,event) - node = self.etree.add([const.display_pevent(event.get_name()), - event.get_description(), - event.get_date(),pname],event) + has_note = event.get_note() + has_source = len(event.get_source_references())> 0 + data = [const.display_pevent(event.get_name()), + event.get_description(), event.get_date(), + pname, has_source, has_note] + node = self.etree.add(data, event) self.emap[str(event)] = node - node = self.etree.add(["","","",""],None) + node = self.etree.add(["","","","",False,False],None) def strip_id(self,text): index = text.rfind('[') @@ -1450,7 +1455,7 @@ class EditPerson: def on_apply_person_clicked(self,obj): - if self.is_unknown.get_active(): + if self.gender.get_active() == RelLib.Person.UNKNOWN: dialog = QuestionDialog2( _("Unknown gender specified"), _("The gender of the person is currently unknown. " @@ -1542,7 +1547,7 @@ class EditPerson: f = self.db.find_family_from_handle(family,trans) new_order = self.reorder_child_list(self.person,f.get_child_handle_list()) f.set_child_handle_list(new_order) - + error = False (female,male,unknown) = _select_gender[self.gender.get_active()] if male and self.person.get_gender() != RelLib.Person.MALE: @@ -1731,27 +1736,27 @@ class EditPerson: if page == 0: self.load_person_image() self.redraw_event_list() - elif page == 7 and self.not_loaded: + elif page == 6 and self.not_loaded: self.not_loaded = False - elif page == 9 and self.lds_not_loaded: + elif page == 8 and self.lds_not_loaded: self.lds_not_loaded = False self.draw_lds() note_buf = self.notes_buffer text = unicode(note_buf.get_text(note_buf.get_start_iter(), note_buf.get_end_iter(),False)) -# if text: -# Utils.bold_label(self.notes_label) -# else: -# Utils.unbold_label(self.notes_label) + if text: + Utils.bold_label(self.notes_label) + else: + Utils.unbold_label(self.notes_label) if not self.lds_not_loaded: self.check_lds() -# if self.lds_baptism.is_empty() \ -# and self.lds_endowment.is_empty() \ -# and self.lds_sealing.is_empty(): -# Utils.unbold_label(self.lds_tab) -# else: -# Utils.bold_label(self.lds_tab) + if self.lds_baptism.is_empty() \ + and self.lds_endowment.is_empty() \ + and self.lds_sealing.is_empty(): + Utils.unbold_label(self.lds_tab) + else: + Utils.bold_label(self.lds_tab) def change_name(self,obj): sel_objs = self.ntree.get_selected_objects() diff --git a/src/GrampsDbBase.py b/src/GrampsDbBase.py index 756fe8f38..66a0371af 100644 --- a/src/GrampsDbBase.py +++ b/src/GrampsDbBase.py @@ -464,36 +464,36 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback): def _find_from_handle(self,handle,transaction,class_type,dmap,add_func): obj = class_type() - val = str(handle) - if dmap.get(val): - obj.unserialize(dmap.get(val)) + handle = str(handle) + if dmap.get(handle): + obj.unserialize(dmap.get(handle)) else: - obj.set_handle(val) + obj.set_handle(handle) add_func(obj,transaction) return obj - def find_person_from_handle(self,val,transaction): + def find_person_from_handle(self,handle,transaction): """ Finds a Person in the database from the passed GRAMPS ID. If no such Person exists, a new Person is added to the database. """ - return self._find_from_handle(val,transaction,Person, + return self._find_from_handle(handle,transaction,Person, self.person_map,self.add_person) - def find_source_from_handle(self,val,transaction): + def find_source_from_handle(self,handle,transaction): """ Finds a Source in the database from the passed GRAMPS ID. If no such Source exists, a new Source is added to the database. """ - return self._find_from_handle(val,transaction,Source, + return self._find_from_handle(handle,transaction,Source, self.source_map,self.add_source) - def find_event_from_handle(self,val,transaction): + def find_event_from_handle(self,handle,transaction): """ Finds a Event in the database from the passed GRAMPS ID. If no such Event exists, a new Event is added to the database. """ - return self._find_from_handle(val,transaction,Event, + return self._find_from_handle(handle,transaction,Event, self.event_map,self.add_event) def find_object_from_handle(self,val,transaction): @@ -501,7 +501,7 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback): Finds an MediaObject in the database from the passed GRAMPS ID. If no such MediaObject exists, a new Object is added to the database.""" - return self._find_from_handle(val,transaction,MediaObject, + return self._find_from_handle(handle,transaction,MediaObject, self.media_map,self.add_object) def find_place_from_handle(self,val,transaction): @@ -509,15 +509,15 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback): Finds a Place in the database from the passed GRAMPS ID. If no such Place exists, a new Place is added to the database. """ - return self._find_from_handle(val,transaction,Place, + return self._find_from_handle(handle,transaction,Place, self.place_map,self.add_place) - def find_family_from_handle(self,val,transaction): + def find_family_from_handle(self,handle,transaction): """ Finds a Family in the database from the passed gramps' ID. If no such Family exists, a new Family is added to the database. """ - return self._find_from_handle(val,transaction,Family, + return self._find_from_handle(handle,transaction,Family, self.family_map,self.add_family) def get_person_from_gramps_id(self,val): @@ -1251,6 +1251,7 @@ class Transaction: self.first = None self.last = None self.batch = False + self.length = 0 self.person_add = [] self.person_del = [] @@ -1330,3 +1331,4 @@ class Transaction: if self.last and self.first: return self.last - self.first + 1 return 0 + diff --git a/src/GrampsGEDDB.py b/src/GrampsGEDDB.py index 7c7efeb0d..80af5f64f 100644 --- a/src/GrampsGEDDB.py +++ b/src/GrampsGEDDB.py @@ -45,11 +45,9 @@ class GrampsGEDDB(GrampsInMemDB): GrampsInMemDB.__init__(self) def load(self,name,callback, mode="w"): - self.filename = name + GrampsInMemDB.load(self,name,callback,mode) ReadGedcom.importData(self,name,use_trans=False) - self.readonly = mode == "r" - self.bookmarks = self.metadata.get('bookmarks') if self.bookmarks == None: self.bookmarks = [] diff --git a/src/GrampsInMemDB.py b/src/GrampsInMemDB.py index 42d06a9e2..497c6bce5 100644 --- a/src/GrampsInMemDB.py +++ b/src/GrampsInMemDB.py @@ -25,6 +25,8 @@ Provides the common infrastructure for database formats that must hold all of their data in memory. """ +from bsddb import dbshelve, db + #------------------------------------------------------------------------- # # GRAMPS modules @@ -86,8 +88,12 @@ class GrampsInMemDB(GrampsDbBase): self.eventnames = {} self.undodb = [] - def load(self,name,callback): - pass + def load(self,name,callback,mode="w"): + self.undolog = "%s.log" % name + self.undodb = db.DB() + self.undodb.open(self.undolog, db.DB_RECNO, db.DB_CREATE) + self.filename = name + self.readonly = mode == "r" def get_person_cursor(self): return GrampsInMemCursor(self.person_map) @@ -105,7 +111,12 @@ class GrampsInMemDB(GrampsDbBase): return GrampsInMemCursor(self.media_map) def close(self): - pass + if not self.readonly: + self.undodb.close() + try: + os.remove(self.undolog) + except: + pass def abort_changes(self): pass diff --git a/src/GrampsXMLDB.py b/src/GrampsXMLDB.py index c220df98f..50b1b9873 100644 --- a/src/GrampsXMLDB.py +++ b/src/GrampsXMLDB.py @@ -45,10 +45,8 @@ class GrampsXMLDB(GrampsInMemDB): GrampsInMemDB.__init__(self) def load(self,name,callback,mode="w"): - self.filename = name + GrampsInMemDB.load(self,name,callback,mode) self.id_trans = {} - - self.readonly = mode == "r" ReadXML.importData(self,name,use_trans=False) diff --git a/src/ListModel.py b/src/ListModel.py index 8e2b5b69e..4a29697af 100644 --- a/src/ListModel.py +++ b/src/ListModel.py @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -from gobject import TYPE_STRING, TYPE_PYOBJECT, TYPE_OBJECT +from gobject import TYPE_STRING, TYPE_PYOBJECT, TYPE_OBJECT, TYPE_BOOLEAN import gtk import const @@ -33,9 +33,14 @@ class ListModel: def __init__(self,tree,dlist,select_func=None, event_func=None,mode=gtk.SELECTION_SINGLE): self.tree = tree - l = len(dlist) - self.mylist = [TYPE_STRING]*l + [TYPE_PYOBJECT] - + self.mylist = [] + for l in dlist: + if l[0] and l[0][0] == ':': + self.mylist.append(TYPE_BOOLEAN) + else: + self.mylist.append(TYPE_STRING) + self.mylist.append(TYPE_PYOBJECT) + self.tree.set_rules_hint(True) self.model = None self.selection = None @@ -60,18 +65,26 @@ class ListModel: cnum = 0 for name in dlist: - if gtk26 and cnum == 0: + if name[0] and name[0][0] == ':': + renderer = gtk.CellRendererToggle() + column = gtk.TreeViewColumn(name[0][1:],renderer) + column.add_attribute(renderer,'active',cnum) + elif gtk26 and cnum == 0: renderer = gtk.CellRendererCombo() renderer.set_property('model',model) renderer.set_property('text_column',0) renderer.set_property('editable',True) + renderer.set_fixed_height_from_font(True) + renderer.connect('edited',self.edited_cb, cnum) + column = gtk.TreeViewColumn(name[0],renderer,text=cnum) + column.set_reorderable(True) else: renderer = gtk.CellRendererText() renderer.set_property('editable',True) - renderer.set_fixed_height_from_font(True) - renderer.connect('edited',self.edited_cb, cnum) - column = gtk.TreeViewColumn(name[0],renderer,text=cnum) - column.set_reorderable(True) + renderer.set_fixed_height_from_font(True) + renderer.connect('edited',self.edited_cb, cnum) + column = gtk.TreeViewColumn(name[0],renderer,text=cnum) + column.set_reorderable(True) column.set_min_width(name[2]) if name[0] == '': diff --git a/src/NameEdit.py b/src/NameEdit.py index cc6459ec9..2c550ec53 100644 --- a/src/NameEdit.py +++ b/src/NameEdit.py @@ -105,8 +105,9 @@ class NameEditor: self.note_field = self.top.get_widget("alt_note") self.slist = self.top.get_widget('slist') self.priv = self.top.get_widget("priv") - self.sources_label = self.top.get_widget("sourcesName") - self.notes_label = self.top.get_widget("noteName") + self.general_label = self.top.get_widget("general_tab") + self.sources_label = self.top.get_widget("sources_tab") + self.notes_label = self.top.get_widget("note_tab") self.flowed = self.top.get_widget("alt_flowed") self.preform = self.top.get_widget("alt_preform") self.group_over = self.top.get_widget('group_over') @@ -115,6 +116,7 @@ class NameEditor: types.sort() AutoComp.fill_combo(self.type_combo,types) self.type_field = self.type_combo.get_child() + self.type_field.set_text(types[0]) full_name = NameDisplay.displayer.display_name(name) @@ -152,6 +154,7 @@ class NameEditor: self.type_field.set_text(_(name.get_type())) self.patronymic_field.set_text(name.get_patronymic()) self.priv.set_active(name.get_privacy()) + Utils.bold_label(self.general_label) if name.get_note(): self.note_buffer.set_text(name.get_note()) Utils.bold_label(self.notes_label) @@ -159,6 +162,8 @@ class NameEditor: self.preform.set_active(1) else: self.flowed.set_active(1) + else: + Utils.unbold_label(self.notes_label) self.display_as.set_active(name.get_display_as()) self.sort_as.set_active(name.get_display_as()) grp_as = name.get_group_as() @@ -169,6 +174,9 @@ class NameEditor: else: self.display_as.set_active(0) self.sort_as.set_active(0) + Utils.unbold_label(self.notes_label) + Utils.unbold_label(self.sources_label) + Utils.unbold_label(self.general_label) if parent_window: self.window.set_transient_for(parent_window) diff --git a/src/PeopleView.py b/src/PeopleView.py index b73bec2bb..476962287 100644 --- a/src/PeopleView.py +++ b/src/PeopleView.py @@ -117,15 +117,11 @@ class PeopleView: selected_ids = self.get_selected_objects() if len(selected_ids) == 1: - self.person_tree.drag_source_set(BUTTON1_MASK, - [DdTargets.PERSON_LINK.target()], - ACTION_COPY) + self.person_tree.drag_source_set( + BUTTON1_MASK, [DdTargets.PERSON_LINK.target()], ACTION_COPY) elif len(selected_ids) > 1: - self.person_tree.drag_source_set(BUTTON1_MASK, - [DdTargets.PERSON_LINK_LIST.target()], - ACTION_COPY) - - + self.person_tree.drag_source_set( + BUTTON1_MASK, [DdTargets.PERSON_LINK_LIST.target()], ACTION_COPY) def sort_clicked(self,obj): for col in self.columns: @@ -248,9 +244,13 @@ class PeopleView: top_name = self.parent.db.get_name_group_mapping(group_name) top_path = self.person_model.on_get_path(top_name) self.person_tree.expand_row(top_path,0) - self.person_selection.unselect_all() - self.person_selection.select_path(path) - self.person_tree.scroll_to_cell(path,None,1,0.5,0) + + current = self.person_model.on_get_iter(path) + selected = self.person_selection.path_is_selected(path) + if current != p.get_handle() or not selected: + self.person_selection.unselect_all() + self.person_selection.select_path(path) + self.person_tree.scroll_to_cell(path,None,1,0.5,0) except KeyError: self.person_selection.unselect_all() print "Person not currently available due to filter" @@ -350,7 +350,6 @@ class PeopleView: self.person_model.rebuild_data(self.DataFilter,skip=node) def person_updated(self,handle_list): - for node in handle_list: person = self.parent.db.get_person_from_handle(node) try: diff --git a/src/ReadGedcom.py b/src/ReadGedcom.py index 075efdba0..208c43d35 100644 --- a/src/ReadGedcom.py +++ b/src/ReadGedcom.py @@ -89,6 +89,7 @@ rel_types = (RelLib.Person.CHILD_REL_BIRTH, pedi_type = { 'birth' : RelLib.Person.CHILD_REL_BIRTH, + 'natural': RelLib.Person.CHILD_REL_BIRTH, 'adopted': RelLib.Person.CHILD_REL_ADOPT, 'foster' : RelLib.Person.CHILD_REL_FOST, } @@ -210,7 +211,8 @@ def import2(database, filename, cb, codeset, use_trans): DisplayTrace.DisplayTrace() return - statusTop.get_widget("close").set_sensitive(1) + statusTop.get_widget("close").set_sensitive(True) + statusWindow.set_modal(False) if close: statusWindow.destroy() @@ -768,12 +770,10 @@ class GedcomParser: return (mrel,frel) # FTW elif matches[1] == "_FREL": - if matches[2].lower() != "natural": - frel = matches[2].capitalize() + frel = pedi_type.get(matches[2].lower(),RelLib.Person.CHILD_REL_BIRTH) # FTW elif matches[1] == "_MREL": - if matches[2].lower() != "natural": - mrel = RelLib.Person.CHILD_REL_BIRTH + mrel = pedi_type.get(matches[2].lower(),RelLib.Person.CHILD_REL_BIRTH) elif matches[1] == "ADOP": mrel = RelLib.Person.CHILD_REL_ADOPT frel = RelLib.Person.CHILD_REL_ADOPT @@ -981,9 +981,9 @@ class GedcomParser: break else: if ftype in rel_types: - self.person.add_parent_family_handle(handle, - RelLib.Person.CHILD_REL_BIRTH, - RelLib.Person.CHILD_REL_BIRTH) + self.person.add_parent_family_handle( + handle, RelLib.Person.CHILD_REL_BIRTH, + RelLib.Person.CHILD_REL_BIRTH) else: if self.person.get_main_parents_family_handle() == handle: self.person.set_main_parent_family_handle(None) @@ -1427,8 +1427,8 @@ class GedcomParser: self.barf(level+1) def parse_adopt_famc(self,level): - mrel = "Adopted" - frel = "Adopted" + mrel = RelLib.Person.CHILD_REL_ADOPT + frel = RelLib.Person.CHILD_REL_ADOPT while 1: matches = self.get_next() if int(matches[0]) < level: diff --git a/src/Relationship.py b/src/Relationship.py index 0428cb3d2..6386d0f12 100644 --- a/src/Relationship.py +++ b/src/Relationship.py @@ -170,8 +170,8 @@ class RelationshipCalculator: pmap[person.get_handle()] = rel_str family_handle = person.get_main_parents_family_handle() - if family_handle != None: - family = self.db.get_family_from_handle(family_handle) + family = self.db.get_family_from_handle(family_handle) + if family_handle != None and family: father = self.db.get_person_from_handle(family.get_father_handle()) mother = self.db.get_person_from_handle(family.get_mother_handle()) self.apply_filter(father,rel_str+'f',plist,pmap) diff --git a/src/Utils.py b/src/Utils.py index efcea4ba3..d88f2959a 100644 --- a/src/Utils.py +++ b/src/Utils.py @@ -403,16 +403,20 @@ def search_for(name): # #------------------------------------------------------------------------- def bold_label(label): - text = unicode(label.get_text()) - label.set_text("%s" % text ) - label.set_use_markup(1) + clist = label.get_children() + text = unicode(clist[1].get_text()) + clist[0].show() + clist[1].set_text("%s" % text ) + clist[1].set_use_markup(True) def unbold_label(label): - text = unicode(label.get_text()) + clist = label.get_children() + text = unicode(clist[1].get_text()) text = text.replace('','') text = text.replace('','') - label.set_text(text) - label.set_use_markup(0) + clist[0].hide() + clist[1].set_text(text) + clist[1].set_use_markup(False) #------------------------------------------------------------------------- # diff --git a/src/edit_person.glade b/src/edit_person.glade index 5c4fb7eb4..a94868010 100644 --- a/src/edit_person.glade +++ b/src/edit_person.glade @@ -3,7 +3,7 @@ - + True GTK_WINDOW_TOPLEVEL @@ -223,6 +223,7 @@ True * False + 13 2 @@ -851,7 +852,7 @@ Unknown - + True False 0 @@ -874,7 +875,7 @@ Unknown - + True Events False @@ -1050,7 +1051,7 @@ Unknown - + True False 0 @@ -1073,7 +1074,7 @@ Unknown - + True Names False @@ -1274,7 +1275,7 @@ Unknown - + True False 0 @@ -1297,7 +1298,7 @@ Unknown - + True Attributes False @@ -1472,7 +1473,7 @@ Unknown - + True False 0 @@ -1495,7 +1496,7 @@ Unknown - + True Addresses False @@ -1667,7 +1668,7 @@ Unknown - + True False 0 @@ -1690,7 +1691,7 @@ Unknown - + True Notes False @@ -1859,7 +1860,7 @@ Unknown - + True False 0 @@ -1882,7 +1883,7 @@ Unknown - + True Sources False @@ -1938,7 +1939,7 @@ Unknown True True GTK_SELECTION_SINGLE - GTK_ORIENTATION_VERTICAL + GTK_ORIENTATION_HORIZONTAL @@ -2087,7 +2088,7 @@ Unknown - + True False 0 @@ -2110,7 +2111,7 @@ Unknown - + True Gallery False @@ -2326,13 +2327,13 @@ Unknown - + True False 0 - + True 4 gtk-file @@ -2349,7 +2350,7 @@ Unknown - + True Internet False @@ -3336,7 +3337,7 @@ Unknown - + True False 0 @@ -3359,7 +3360,8 @@ Unknown - + + True LDS False False diff --git a/src/gramps.glade b/src/gramps.glade index 71ef92f2e..421becfd1 100644 --- a/src/gramps.glade +++ b/src/gramps.glade @@ -19,6 +19,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True True @@ -1058,6 +1059,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1106,6 +1111,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1154,6 +1163,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1202,6 +1215,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1250,6 +1267,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1298,6 +1319,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1343,6 +1368,8 @@ True + False + True 0 @@ -1364,6 +1391,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1380,7 +1411,7 @@ 0 True - * + * False @@ -1452,6 +1483,9 @@ False False True + False + False + False @@ -1481,6 +1515,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1769,6 +1807,9 @@ True False True + False + False + False @@ -1892,6 +1933,10 @@ 0 0 chlist + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1917,6 +1962,10 @@ 0 0 ap_data + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1942,6 +1991,10 @@ 0 0 ap_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1967,6 +2020,10 @@ 0 0 sp_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1992,6 +2049,10 @@ 0 0 sp_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2021,6 +2082,9 @@ True True True + False + False + False @@ -2051,6 +2115,9 @@ True False True + False + False + False @@ -2081,6 +2148,9 @@ True False True + False + False + False @@ -2111,6 +2181,9 @@ True True True + False + False + False @@ -2266,6 +2339,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2300,6 +2377,9 @@ True True True + False + False + False @@ -2326,6 +2406,10 @@ 0 0 chlist2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2355,6 +2439,9 @@ True True True + False + False + False @@ -2385,6 +2472,9 @@ True False True + False + False + False @@ -2415,6 +2505,9 @@ True False True + False + False + False @@ -2445,6 +2538,9 @@ True False True + False + False + False @@ -2595,6 +2691,10 @@ 0 0 sp_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2717,6 +2817,10 @@ 0 0 sp_list2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2839,6 +2943,10 @@ 0 0 ap_data2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2864,6 +2972,10 @@ 0 0 ap_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3021,6 +3133,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3068,6 +3184,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3097,6 +3217,9 @@ True False True + False + False + False @@ -3126,6 +3249,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3155,6 +3282,9 @@ True False True + False + False + False @@ -3184,6 +3314,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3235,6 +3369,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -3271,6 +3409,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3296,6 +3438,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3319,6 +3465,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3342,6 +3492,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3367,6 +3521,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3392,6 +3550,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3417,6 +3579,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3440,6 +3606,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3463,6 +3633,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3486,6 +3660,10 @@ 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3511,6 +3689,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3554,6 +3736,9 @@ True False True + False + False + False @@ -3583,6 +3768,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3635,6 +3824,7 @@ False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3711,6 +3901,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -3749,6 +3943,9 @@ False False True + False + False + False @@ -3856,6 +4053,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3875,6 +4076,8 @@ Unmarried Civil Union Unknown Other + False + True 1 @@ -3933,6 +4136,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4017,6 +4221,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4054,6 +4262,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4078,6 +4290,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4102,6 +4318,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4127,6 +4347,10 @@ Other 0 0 father_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4222,6 +4446,10 @@ Other 0 0 mother_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4246,6 +4474,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4275,6 +4507,9 @@ Other True False True + False + False + False @@ -4304,6 +4539,9 @@ Other True False True + False + False + False @@ -4368,6 +4606,8 @@ Unmarried Civil Union Unknown Other + False + True @@ -4383,6 +4623,8 @@ Other True + False + True 2 @@ -4397,6 +4639,8 @@ Other True + False + True 2 @@ -4448,6 +4692,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4532,6 +4777,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4577,6 +4826,9 @@ Other True False True + False + False + False @@ -4676,6 +4928,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4700,6 +4956,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4714,6 +4974,8 @@ Other True + False + True 1 @@ -4727,6 +4989,8 @@ Other True + False + True 1 @@ -4764,6 +5028,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4850,6 +5115,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4894,6 +5163,10 @@ Other 0 0 source_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4919,6 +5192,10 @@ Other 0 0 author + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4943,7 +5220,7 @@ Other 0 True - * + * False @@ -4964,7 +5241,7 @@ Other 0 True - * + * False @@ -4990,6 +5267,10 @@ Other 0 0 pubinfo + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5010,7 +5291,7 @@ Other 0 True - * + * False @@ -5031,7 +5312,7 @@ Other 0 True - * + * False @@ -5057,6 +5338,10 @@ Other 0 0 abbrev + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5087,6 +5372,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5157,6 +5446,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5241,6 +5534,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5271,6 +5568,9 @@ Other True False True + False + False + False @@ -5370,6 +5670,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5583,6 +5887,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5606,6 +5914,9 @@ Other False False True + False + False + False @@ -5628,6 +5939,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5667,6 +5982,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5752,6 +6068,10 @@ Other 0.5 10 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5825,6 +6145,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5906,6 +6227,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -5943,6 +6268,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -5967,6 +6296,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -5990,6 +6323,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6014,6 +6351,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6038,6 +6379,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Relationship: @@ -6065,6 +6410,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -6089,6 +6438,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6113,6 +6466,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6136,6 +6493,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6173,6 +6534,8 @@ Other True + False + True 2 @@ -6188,6 +6551,8 @@ Other True + False + True 2 @@ -6237,6 +6602,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6327,6 +6693,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6362,6 +6732,10 @@ Other 0 0 entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -6379,7 +6753,7 @@ Other 0 True - * + * True @@ -6420,6 +6794,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6496,6 +6871,9 @@ Other False True True + False + False + False @@ -6520,6 +6898,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6555,6 +6937,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6635,6 +7018,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -6693,6 +7080,10 @@ Other 0 0 givenName + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6718,6 +7109,10 @@ Other 0 0 surname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6743,6 +7138,10 @@ Other 0 0 prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6768,6 +7167,10 @@ Other 0 0 suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6793,6 +7196,10 @@ Other 0 0 title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6818,6 +7225,10 @@ Other 0 0 nickname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6842,6 +7253,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6867,6 +7282,10 @@ Other 0 0 birthDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6888,7 +7307,7 @@ Other 0 True - * + * False @@ -6910,7 +7329,7 @@ Other 0 True - * + * False @@ -6932,7 +7351,7 @@ Other 0 True - * + * False @@ -6957,6 +7376,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7059,6 +7482,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7084,6 +7511,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -7104,7 +7535,7 @@ Other 0 True - * + * False @@ -7130,6 +7561,10 @@ Other 0 0 birth_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7154,6 +7589,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7179,6 +7618,10 @@ Other 0 0 deathDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -7207,6 +7650,10 @@ Other 0 0 death_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -7227,7 +7674,7 @@ Other 0 True - * + * False @@ -7248,7 +7695,7 @@ Other 0 True - * + * False @@ -7263,6 +7710,9 @@ Other True + False + True + True 2 @@ -7289,7 +7739,7 @@ Other 0 True - * + * False @@ -7344,7 +7794,7 @@ Other 0 True - * + * False @@ -7367,7 +7817,7 @@ Other 0 True - * + * False @@ -7420,7 +7870,7 @@ Other 0 True - * + * False @@ -7475,6 +7925,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7498,6 +7952,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7554,7 +8012,7 @@ Other 0 True - * + * False @@ -7637,6 +8095,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -7733,6 +8195,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -7774,6 +8240,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7798,6 +8268,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7822,6 +8296,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7846,6 +8324,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7870,6 +8352,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7894,6 +8380,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7918,6 +8408,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7942,6 +8436,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7966,6 +8464,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7990,6 +8492,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8014,6 +8520,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8037,6 +8547,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8060,6 +8574,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8083,6 +8601,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8106,6 +8628,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8129,6 +8655,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8152,6 +8682,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8175,6 +8709,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8237,6 +8775,9 @@ Other False False True + False + False + False @@ -8375,6 +8916,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -8416,6 +8961,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8440,6 +8989,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8464,6 +9017,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8488,6 +9045,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8512,6 +9073,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8536,6 +9101,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8560,6 +9129,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8584,6 +9157,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8608,6 +9185,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -8632,6 +9213,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8656,6 +9241,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8680,6 +9269,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8704,6 +9297,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8728,6 +9325,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8751,6 +9352,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8774,6 +9379,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8816,6 +9425,9 @@ Other False True True + False + False + False @@ -8961,6 +9573,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9002,6 +9618,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9026,6 +9646,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9050,6 +9674,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9074,6 +9702,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9098,6 +9730,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9122,6 +9758,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -9146,6 +9786,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9170,6 +9814,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9193,6 +9841,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9216,6 +9868,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9258,6 +9914,9 @@ Other False False True + False + False + False @@ -9403,6 +10062,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9438,6 +10101,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9462,6 +10129,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9486,6 +10157,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9510,6 +10185,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9534,6 +10213,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9558,6 +10241,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9582,6 +10269,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9606,6 +10297,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9630,6 +10325,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9654,6 +10353,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9678,6 +10381,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9702,6 +10409,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9726,6 +10437,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9750,6 +10465,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9774,6 +10493,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9797,6 +10520,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9820,6 +10547,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9844,6 +10575,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9868,6 +10603,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9892,6 +10631,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9966,6 +10709,9 @@ Other False False True + False + False + False @@ -10111,6 +10857,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10184,6 +10934,10 @@ Other 0 0 flowed + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10268,6 +11022,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10297,6 +11055,9 @@ Other False False True + False + False + False @@ -10423,6 +11184,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10621,6 +11386,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10656,6 +11425,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10680,6 +11453,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10704,6 +11481,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10728,6 +11509,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10751,6 +11536,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10793,6 +11582,9 @@ Other False False True + False + False + False @@ -10959,6 +11751,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10988,6 +11784,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11013,6 +11813,10 @@ Other 0 0 ldsbapdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11037,6 +11841,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Temple: @@ -11085,6 +11893,10 @@ Other 0 0 lds_bap_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11108,7 +11920,7 @@ Other 0 True - * + * False @@ -11153,6 +11965,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11178,6 +11994,10 @@ Other 0 0 endowdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -11205,6 +12025,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11230,6 +12054,10 @@ Other 0 0 lds_end_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11253,7 +12081,7 @@ Other 0 True - * + * False @@ -11319,6 +12147,10 @@ Other 0 0 sealdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11343,6 +12175,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11388,6 +12224,10 @@ Other 0 0 lds_seal_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11411,7 +12251,7 @@ Other 0 True - * + * False @@ -11457,6 +12297,10 @@ Other 0 0 sealparents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11481,6 +12325,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11495,6 +12343,8 @@ Other True + False + True 3 @@ -11509,6 +12359,8 @@ Other True + False + True 3 @@ -11523,6 +12375,8 @@ Other True + False + True 3 @@ -11537,6 +12391,8 @@ Other True + False + True 2 @@ -11551,6 +12407,8 @@ Other True + False + True 2 @@ -11565,6 +12423,8 @@ Other True + False + True 2 @@ -11579,6 +12439,8 @@ Other True + False + True 2 @@ -11605,7 +12467,7 @@ Other 0 True - * + * False @@ -11665,7 +12527,7 @@ Other 0 True - * + * False @@ -11725,7 +12587,7 @@ Other 0 True - * + * False @@ -11788,6 +12650,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11819,6 +12685,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -11906,6 +12773,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11954,6 +12825,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11979,6 +12854,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12002,7 +12881,7 @@ Other 0 True - * + * False @@ -12018,6 +12897,8 @@ Other True + False + True 1 @@ -12042,6 +12923,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12066,6 +12951,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12125,6 +13014,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12160,6 +13053,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12184,6 +13081,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12208,6 +13109,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12232,6 +13137,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12256,6 +13165,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12280,6 +13193,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12304,6 +13221,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -12328,6 +13249,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -12351,6 +13276,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12375,6 +13304,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12399,6 +13332,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12422,6 +13359,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12445,6 +13386,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12469,6 +13414,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12493,6 +13442,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12516,6 +13469,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12557,6 +13514,9 @@ Other False False True + False + False + False @@ -12692,6 +13652,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12727,6 +13691,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12751,6 +13719,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -12775,6 +13747,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12799,6 +13775,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12823,6 +13803,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12847,6 +13831,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12871,6 +13859,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12895,6 +13887,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12918,6 +13914,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -12941,6 +13941,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12982,6 +13986,9 @@ Other False False True + False + False + False @@ -13117,6 +14124,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13187,6 +14198,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13271,6 +14286,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13300,6 +14319,9 @@ Other False False True + False + False + False @@ -13423,6 +14445,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13608,6 +14634,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13643,6 +14673,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13667,6 +14701,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13691,6 +14729,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13715,6 +14757,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13769,6 +14815,9 @@ Other True + False + True + True 2 @@ -13783,6 +14832,8 @@ Other True + False + True 3 @@ -13797,6 +14848,8 @@ Other True + False + True 2 @@ -13823,7 +14876,7 @@ Other 0 True - * + * False @@ -13894,6 +14947,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13933,6 +14990,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -14017,6 +15075,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14060,6 +15122,10 @@ Other 0 0 place_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14088,6 +15154,10 @@ Other 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14116,6 +15186,10 @@ Other 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14144,6 +15218,10 @@ Other 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14172,6 +15250,10 @@ Other 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14200,6 +15282,10 @@ Other 0 0 longitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14228,6 +15314,10 @@ Other 0 0 latitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14256,6 +15346,10 @@ Other 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Church Parish: @@ -14281,7 +15375,7 @@ Other 0 True - * + * False @@ -14302,7 +15396,7 @@ Other 0 True - * + * False @@ -14323,7 +15417,7 @@ Other 0 True - * + * False @@ -14344,7 +15438,7 @@ Other 0 True - * + * False @@ -14365,7 +15459,7 @@ Other 0 True - * + * False @@ -14386,7 +15480,7 @@ Other 0 True - * + * False @@ -14407,7 +15501,7 @@ Other 0 True - * + * False @@ -14428,7 +15522,7 @@ Other 0 True - * + * False @@ -14453,6 +15547,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14478,6 +15576,10 @@ Other 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14498,7 +15600,7 @@ Other 0 True - * + * False @@ -14524,6 +15626,10 @@ Other 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14544,7 +15650,7 @@ Other 0 True - * + * False @@ -14569,6 +15675,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14593,6 +15703,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14623,6 +15737,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14658,6 +15776,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14682,6 +15804,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14706,6 +15832,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14730,6 +15860,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14754,6 +15888,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14778,6 +15916,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14803,6 +15945,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14829,6 +15975,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14855,6 +16005,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -14879,6 +16033,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14904,6 +16062,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -14927,6 +16089,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14951,6 +16117,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14977,6 +16147,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -15001,6 +16175,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -15042,6 +16220,9 @@ Other False False True + False + False + False @@ -15188,6 +16369,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15258,6 +16443,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15342,6 +16531,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15377,6 +16570,9 @@ Other False False True + False + False + False @@ -15520,6 +16716,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15731,6 +16931,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15766,6 +16970,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15790,6 +16998,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15814,6 +17026,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15837,6 +17053,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15861,6 +17081,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15902,6 +17126,9 @@ Other False False True + False + False + False @@ -16075,6 +17302,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16128,6 +17359,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16164,6 +17399,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -16234,6 +17470,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -16271,6 +17511,9 @@ Other False False True + False + False + False @@ -16349,6 +17592,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16378,6 +17625,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16413,6 +17664,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16460,6 +17715,10 @@ Other 3 3 lastnamegen + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16474,6 +17733,8 @@ Other True + False + True 1 @@ -16511,6 +17772,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16546,6 +17811,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16616,6 +17885,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16635,6 +17908,8 @@ Icons Only Text Only Text Below Icons Text Beside Icons + False + True 1 @@ -16672,6 +17947,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16731,6 +18010,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16755,6 +18038,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16825,6 +18112,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16932,6 +18223,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16968,6 +18263,10 @@ Text Beside Icons 5 5 date_format + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16992,6 +18291,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17006,6 +18309,8 @@ Text Beside Icons True + False + True 2 @@ -17043,6 +18348,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17079,6 +18388,10 @@ Text Beside Icons 0 0 resname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17104,6 +18417,10 @@ Text Beside Icons 0 0 resaddr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17129,6 +18446,10 @@ Text Beside Icons 0 0 rescity + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17154,6 +18475,10 @@ Text Beside Icons 0 0 resstate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17179,6 +18504,10 @@ Text Beside Icons 0 0 rescountry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17204,6 +18533,10 @@ Text Beside Icons 0 0 respostal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17229,6 +18562,10 @@ Text Beside Icons 0 0 resphone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17254,6 +18591,10 @@ Text Beside Icons 0 0 resemail + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17274,7 +18615,7 @@ Text Beside Icons 0 True - * + * False @@ -17295,7 +18636,7 @@ Text Beside Icons 0 True - * + * False @@ -17316,7 +18657,7 @@ Text Beside Icons 0 True - * + * False @@ -17337,7 +18678,7 @@ Text Beside Icons 0 True - * + * False @@ -17358,7 +18699,7 @@ Text Beside Icons 0 True - * + * False @@ -17379,7 +18720,7 @@ Text Beside Icons 0 True - * + * False @@ -17400,7 +18741,7 @@ Text Beside Icons 0 True - * + * False @@ -17421,7 +18762,7 @@ Text Beside Icons 0 True - * + * False @@ -17446,6 +18787,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17483,6 +18828,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17519,6 +18868,10 @@ Text Beside Icons 2 2 iprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17544,6 +18897,10 @@ Text Beside Icons 2 2 fprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17569,6 +18926,10 @@ Text Beside Icons 2 2 pprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17594,6 +18955,10 @@ Text Beside Icons 2 2 sprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17619,6 +18984,10 @@ Text Beside Icons 2 2 oprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17639,7 +19008,7 @@ Text Beside Icons 0 I True - * + * False @@ -17660,7 +19029,7 @@ Text Beside Icons 0 F True - * + * False @@ -17681,7 +19050,7 @@ Text Beside Icons 0 P True - * + * False @@ -17702,7 +19071,7 @@ Text Beside Icons 0 S True - * + * False @@ -17723,7 +19092,7 @@ Text Beside Icons 0 O True - * + * False @@ -17748,6 +19117,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17785,6 +19158,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17836,6 +19213,7 @@ Text Beside Icons False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -17920,6 +19298,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -17958,6 +19340,10 @@ Text Beside Icons 0 0 conf + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17983,6 +19369,10 @@ Text Beside Icons 0 0 spage + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18008,6 +19398,10 @@ Text Beside Icons 0 0 sdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18035,6 +19429,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18062,6 +19460,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18089,6 +19491,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18113,6 +19519,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18137,6 +19547,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18161,6 +19575,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -18185,6 +19603,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -18209,6 +19631,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18233,6 +19659,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18411,7 +19841,7 @@ Text Beside Icons 0 True - * + * False @@ -18460,6 +19890,8 @@ Low Normal High Very High + False + True 2 @@ -18474,6 +19906,8 @@ Very High True + False + True 2 @@ -18525,6 +19959,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18608,6 +20043,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -18640,6 +20079,9 @@ Very High False False True + False + False + False @@ -18791,6 +20233,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18858,6 +20301,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18883,6 +20330,9 @@ Very High True False True + False + False + False @@ -18936,6 +20386,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19002,6 +20453,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19049,6 +20504,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -19085,6 +20544,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19110,6 +20573,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19133,6 +20600,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19156,6 +20627,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19181,6 +20656,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19206,6 +20685,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19231,6 +20714,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19254,6 +20741,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19277,6 +20768,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19300,6 +20795,10 @@ Very High 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19325,6 +20824,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19368,6 +20871,9 @@ Very High True False True + False + False + False @@ -19404,6 +20910,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19472,6 +20979,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19503,6 +21014,9 @@ Very High False False True + False + False + False @@ -19623,6 +21137,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19692,6 +21207,10 @@ Very High 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -19720,6 +21239,10 @@ Very High 0 0 style_name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19741,7 +21264,7 @@ Very High 0 True - * + * False @@ -19790,6 +21313,9 @@ Very High False False True + False + False + False @@ -19829,6 +21355,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19850,6 +21380,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19877,6 +21411,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -19906,6 +21444,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -20037,6 +21579,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20061,6 +21607,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20085,6 +21635,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20109,6 +21663,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20134,6 +21692,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20209,6 +21771,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -20258,6 +21824,10 @@ Very High 0 0 rmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20286,6 +21856,10 @@ Very High 0 0 lmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20314,6 +21888,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20341,6 +21919,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20365,6 +21947,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20389,6 +21975,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20409,7 +21999,7 @@ Very High 0 True - * + * False @@ -20430,7 +22020,7 @@ Very High 0 True - * + * False @@ -20451,7 +22041,7 @@ Very High 0 True - * + * False @@ -20567,6 +22157,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20591,6 +22185,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20616,6 +22214,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20640,6 +22242,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20664,6 +22270,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20776,6 +22386,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20796,7 +22410,7 @@ Very High 0 True - * + * False @@ -20821,6 +22435,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20846,6 +22464,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20876,6 +22498,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -20921,6 +22547,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21002,6 +22629,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -21069,6 +22700,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -21116,6 +22751,10 @@ Very High 0 0 photoDescription + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21136,7 +22775,7 @@ Very High 0 True - * + * False @@ -21203,6 +22842,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21288,6 +22928,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21334,6 +22978,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -21370,6 +23018,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21394,6 +23046,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21418,6 +23074,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21442,6 +23102,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21466,6 +23130,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21490,6 +23158,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21515,6 +23187,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21539,6 +23215,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21598,6 +23278,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21622,6 +23306,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21646,6 +23334,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21670,6 +23362,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21690,7 +23386,7 @@ Very High 0 True - * + * False @@ -21711,7 +23407,7 @@ Very High 0 True - * + * False @@ -21732,7 +23428,7 @@ Very High 0 True - * + * False @@ -21753,7 +23449,7 @@ Very High 0 True - * + * False @@ -21778,6 +23474,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21824,6 +23524,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21854,6 +23558,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21924,6 +23632,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22008,6 +23720,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22063,6 +23779,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22098,6 +23818,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22122,6 +23846,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22146,6 +23874,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22169,6 +23901,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22193,6 +23929,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22235,6 +23975,9 @@ Very High True False True + False + False + False @@ -22383,6 +24126,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22418,6 +24165,9 @@ Very High False False True + False + False + False @@ -22561,6 +24311,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22600,6 +24354,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -22685,6 +24440,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22731,6 +24490,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -22767,6 +24530,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22791,6 +24558,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22815,6 +24586,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22839,6 +24614,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22862,6 +24641,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22886,6 +24669,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22952,6 +24739,10 @@ Very High 0 0 description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22972,7 +24763,7 @@ Very High 0 True - * + * False @@ -22997,6 +24788,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23022,6 +24817,10 @@ Very High 0 0 place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23042,7 +24841,7 @@ Very High 0 True - * + * False @@ -23069,7 +24868,7 @@ Very High 0 True - * + * False @@ -23140,6 +24939,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23175,6 +24978,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23199,6 +25006,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23222,6 +25033,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23246,6 +25061,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23270,6 +25089,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23311,6 +25134,9 @@ Very High False False True + False + False + False @@ -23460,6 +25286,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23530,6 +25360,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23614,6 +25448,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23636,6 +25474,9 @@ Very High False False True + False + False + False @@ -23658,6 +25499,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23693,6 +25538,9 @@ Very High False False True + False + False + False @@ -23836,6 +25684,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23872,6 +25724,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -23929,6 +25782,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23953,6 +25810,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24006,6 +25867,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24091,6 +25953,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24135,6 +26001,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24190,6 +26060,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24260,6 +26131,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24304,6 +26179,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24337,6 +26216,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24407,6 +26287,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24451,6 +26335,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24484,6 +26372,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24541,6 +26430,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24585,6 +26478,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24618,6 +26515,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24675,6 +26573,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24719,6 +26621,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24752,6 +26658,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24823,6 +26730,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24911,6 +26822,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24956,6 +26871,10 @@ Very High 0.5 6 24 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25000,6 +26919,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25059,6 +26982,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25146,6 +27070,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25188,6 +27116,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25213,6 +27145,10 @@ Very High 0 0 eventDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25241,6 +27177,10 @@ Very High 0 0 event_description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25269,6 +27209,10 @@ Very High 0 3 eventPlace + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25297,6 +27241,10 @@ Very High 0 0 eventCause + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25320,7 +27268,7 @@ Very High 0 True - * + * False @@ -25341,7 +27289,7 @@ Very High 0 True - * + * False @@ -25362,7 +27310,7 @@ Very High 0 True - * + * False @@ -25383,7 +27331,7 @@ Very High 0 True - * + * False @@ -25420,6 +27368,9 @@ Very High True + False + True + True 1 @@ -25477,6 +27428,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25512,6 +27467,9 @@ Very High False False True + False + False + False @@ -25655,6 +27613,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25728,6 +27690,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25812,6 +27778,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25848,6 +27818,9 @@ Very High False False True + False + False + False @@ -25991,6 +27964,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26202,6 +28179,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26240,6 +28221,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26324,6 +28306,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26366,6 +28352,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26391,6 +28381,10 @@ Very High 0 0 attr_value + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26436,7 +28430,7 @@ Very High 0 True - * + * False @@ -26451,6 +28445,9 @@ Very High True + False + True + True 1 @@ -26469,18 +28466,51 @@ Very High - + True - <b>General</b> - False - True - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + False + 0 + + + + 4 + gtk-file + 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 @@ -26516,6 +28546,9 @@ Very High False False True + False + False + False @@ -26647,18 +28680,51 @@ Very High - + True - Sources - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + False + 0 + + + + 4 + gtk-file + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Sources + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + tab @@ -26730,6 +28796,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26741,29 +28811,6 @@ Very High - - - True - Multiple spaces, tabs, and single line breaks are replaced with single spaces. Two consecutive line breaks mark a new paragraph. - True - _Flowed - True - GTK_RELIEF_NORMAL - True - True - False - True - - - 1 - 2 - 1 - 2 - - - - - True @@ -26776,14 +28823,36 @@ Very High False False True - attr_flowed 2 3 1 2 - + + + + + + + True + Multiple spaces, tabs, and single line breaks are replaced with single spaces. Two consecutive line breaks mark a new paragraph. + True + _Flowed + True + GTK_RELIEF_NORMAL + True + True + False + True + attr_preform + + + 1 + 2 + 1 + 2 + fill @@ -26802,18 +28871,51 @@ Very High - + True - Note - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + False + 0 + + + + 4 + gtk-file + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Note + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + tab @@ -26852,6 +28954,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26936,6 +29039,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26968,6 +29075,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26996,6 +29107,10 @@ Very High 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27024,6 +29139,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Country: @@ -27053,6 +29172,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 State: @@ -27082,6 +29205,10 @@ Very High 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27106,7 +29233,7 @@ Very High 0 True - * + * False @@ -27127,7 +29254,7 @@ Very High 0 True - * + * False @@ -27148,7 +29275,7 @@ Very High 0 True - * + * False @@ -27169,7 +29296,7 @@ Very High 0 True - * + * False @@ -27190,7 +29317,7 @@ Very High 0 True - * + * False @@ -27216,6 +29343,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27236,7 +29367,7 @@ Very High 0 True - * + * False @@ -27262,6 +29393,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27282,7 +29417,7 @@ Very High 0 True - * + * False @@ -27326,6 +29461,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -27411,6 +29547,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27454,6 +29594,10 @@ Very High 0 0 address_start + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27482,6 +29626,10 @@ Very High 0 0 street + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27510,6 +29658,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27538,6 +29690,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27566,6 +29722,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27594,6 +29754,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27608,28 +29772,6 @@ Very High - - - True - True - _Private record - True - GTK_RELIEF_NORMAL - True - False - False - True - - - 1 - 2 - 7 - 8 - fill - - - - True @@ -27640,7 +29782,7 @@ Very High 0 True - * + * False @@ -27661,7 +29803,7 @@ Very High 0 True - * + * False @@ -27682,7 +29824,7 @@ Very High 0 True - * + * False @@ -27703,7 +29845,7 @@ Very High 0 True - * + * False @@ -27724,7 +29866,7 @@ Very High 0 True - * + * False @@ -27745,7 +29887,7 @@ Very High 0 True - * + * False @@ -27771,6 +29913,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27791,7 +29937,7 @@ Very High 0 True - * + * False @@ -27829,6 +29975,28 @@ Very High fill + + + + True + True + _Private record + True + GTK_RELIEF_NORMAL + True + False + False + True + + + 1 + 3 + 7 + 8 + fill + + + False @@ -27837,18 +30005,51 @@ Very High - + True - <b>General</b> - False - True - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + False + 0 + + + + 4 + gtk-file + 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 @@ -27884,6 +30085,9 @@ Very High False False True + False + False + False @@ -28015,18 +30219,51 @@ Very High - + True - Sources - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + False + 0 + + + + 4 + gtk-file + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Sources + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + tab @@ -28098,6 +30335,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28170,18 +30411,51 @@ Very High - + True - Note - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + False + 0 + + + + 4 + gtk-file + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Note + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + tab @@ -28220,6 +30494,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28305,6 +30580,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28337,6 +30616,10 @@ Very High 0 0 url_addr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28365,6 +30648,10 @@ Very High 0 0 url_des + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28424,7 +30711,7 @@ Very High 0 True - * + * False @@ -28446,7 +30733,7 @@ Very High 0 True - * + * False @@ -28490,6 +30777,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -28576,6 +30864,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28619,6 +30911,10 @@ Very High 0 0 alt_given + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28647,6 +30943,10 @@ Very High 0 0 alt_suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28674,6 +30974,10 @@ Very High 0 1 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28702,6 +31006,10 @@ Very High 0 0 alt_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28752,6 +31060,10 @@ Very High 0 0 alt_prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28776,7 +31088,7 @@ Very High 0 True - * + * False @@ -28797,7 +31109,7 @@ Very High 0 True - * + * False @@ -28818,7 +31130,7 @@ Very High 0 True - * + * False @@ -28839,7 +31151,7 @@ Very High 0 True - * + * False @@ -28865,6 +31177,10 @@ Very High 0 0 patronymic + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28892,6 +31208,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28909,6 +31229,9 @@ Very High True + False + True + True 2 @@ -28929,7 +31252,7 @@ Very High 0 True - * + * False @@ -28958,6 +31281,10 @@ Very High 0 0 group_as + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28985,6 +31312,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29009,7 +31340,7 @@ Very High 0 True - * + * False @@ -29034,6 +31365,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29061,6 +31396,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29085,6 +31424,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29122,6 +31465,9 @@ Very High True + False + True + True 2 @@ -29139,6 +31485,8 @@ Very High Default (based on locale) Family name, Given name Given name, Family name + False + True 2 @@ -29157,6 +31505,8 @@ Given name, Family name Given name Family name Family name Given name + False + True 2 @@ -29181,6 +31531,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -29207,7 +31561,7 @@ Family name Given name 0 True - * + * False @@ -29259,18 +31613,52 @@ Family name Given name - + True - <b>General</b> - False - True - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + False + 0 + + + + True + 4 + gtk-file + 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 @@ -29307,6 +31695,9 @@ Family name Given name False False True + False + False + False @@ -29438,18 +31829,52 @@ Family name Given name - + True - Sources - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + False + 0 + + + + True + 4 + gtk-file + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Sources + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + tab @@ -29522,6 +31947,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29594,18 +32023,52 @@ Family name Given name - + True - Note - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + False + 0 + + + + True + 4 + gtk-file + 0.5 + 0.5 + 0 + 0 + + + 0 + True + True + + + + + + True + Note + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + tab @@ -29644,6 +32107,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -29727,6 +32191,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29759,6 +32227,10 @@ Family name Given name 0 0 name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29787,6 +32259,10 @@ Family name Given name 0 0 scrolledwindow30 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29810,7 +32286,7 @@ Family name Given name 0 True - * + * False @@ -29967,6 +32443,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True False @@ -30037,6 +32514,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30136,6 +32617,10 @@ Family name Given name 0.5 6 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30159,6 +32644,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30193,6 +32682,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -30217,6 +32707,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30241,6 +32735,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30265,6 +32763,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30312,6 +32814,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -30391,6 +32894,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30425,6 +32932,10 @@ Family name Given name 0 0 calendar_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30437,6 +32948,8 @@ Family name Given name True + False + True 6 @@ -30475,6 +32988,10 @@ Family name Given name 6 0 quality_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30490,6 +33007,8 @@ Family name Given name True + False + True 1 @@ -30517,6 +33036,10 @@ Family name Given name 6 0 type_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -30532,6 +33055,8 @@ Family name Given name True + False + True 5 @@ -30558,6 +33083,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30583,6 +33112,10 @@ Family name Given name 0 0 start_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30608,6 +33141,10 @@ Family name Given name 0 0 start_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30633,6 +33170,10 @@ Family name Given name 0 0 start_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -30670,6 +33211,8 @@ Family name Given name True + False + True 2 @@ -30716,6 +33259,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -30741,6 +33288,10 @@ Family name Given name 0 0 stop_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -30766,6 +33317,10 @@ Family name Given name 0 0 stop_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30791,6 +33346,10 @@ Family name Given name 0 0 stop_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -30828,6 +33387,8 @@ Family name Given name True + False + True 6 @@ -30888,6 +33449,10 @@ Family name Given name 0 0 date_text_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30905,7 +33470,7 @@ Family name Given name 0 True - * + * False @@ -30954,6 +33519,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -31021,6 +33587,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31048,6 +33618,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31065,7 +33639,7 @@ Family name Given name 0 True - * + * False diff --git a/src/gramps_main.py b/src/gramps_main.py index 7e33c3959..7955220f4 100755 --- a/src/gramps_main.py +++ b/src/gramps_main.py @@ -743,20 +743,20 @@ class Gramps(GrampsDBCallback.GrampsDBCallback): self.redraw_histmenu() self.set_buttons(1) if self.hindex == 0: - self.backbtn.set_sensitive(0) - self.back.set_sensitive(0) + self.backbtn.set_sensitive(False) + self.back.set_sensitive(False) else: - self.backbtn.set_sensitive(1) - self.back.set_sensitive(1) - self.fwdbtn.set_sensitive(1) - self.forward.set_sensitive(1) + self.backbtn.set_sensitive(True) + self.back.set_sensitive(True) + self.fwdbtn.set_sensitive(True) + self.forward.set_sensitive(True) except: self.clear_history() else: - self.backbtn.set_sensitive(0) - self.back.set_sensitive(0) - self.fwdbtn.set_sensitive(1) - self.forward.set_sensitive(1) + self.backbtn.set_sensitive(False) + self.back.set_sensitive(False) + self.fwdbtn.set_sensitive(True) + self.forward.set_sensitive(True) self.goto_active_person() self.lock_history = False @@ -773,20 +773,20 @@ class Gramps(GrampsDBCallback.GrampsDBCallback): self.redraw_histmenu() self.set_buttons(1) if self.hindex == len(self.history)-1: - self.fwdbtn.set_sensitive(0) - self.forward.set_sensitive(0) + self.fwdbtn.set_sensitive(False) + self.forward.set_sensitive(False) else: - self.fwdbtn.set_sensitive(1) - self.forward.set_sensitive(1) - self.backbtn.set_sensitive(1) - self.back.set_sensitive(1) + self.fwdbtn.set_sensitive(True) + self.forward.set_sensitive(True) + self.backbtn.set_sensitive(True) + self.back.set_sensitive(True) except: self.clear_history() else: - self.fwdbtn.set_sensitive(0) - self.forward.set_sensitive(0) - self.backbtn.set_sensitive(1) - self.back.set_sensitive(1) + self.fwdbtn.set_sensitive(False) + self.forward.set_sensitive(False) + self.backbtn.set_sensitive(True) + self.back.set_sensitive(True) self.goto_active_person() self.lock_history = False @@ -848,10 +848,10 @@ class Gramps(GrampsDBCallback.GrampsDBCallback): def enable_sidebar(self,val): if val: self.sidebar.show() - self.views.set_show_tabs(0) + self.views.set_show_tabs(False) else: self.sidebar.hide() - self.views.set_show_tabs(1) + self.views.set_show_tabs(True) def enable_filter(self,val): if val: @@ -875,8 +875,8 @@ class Gramps(GrampsDBCallback.GrampsDBCallback): self.report_menu = self.gtop.get_widget("reports_menu") self.tools_menu = self.gtop.get_widget("tools_menu") - self.report_menu.set_sensitive(0) - self.tools_menu.set_sensitive(0) + self.report_menu.set_sensitive(False) + self.tools_menu.set_sensitive(False) error = PluginMgr.load_plugins(const.docgenDir) error |= PluginMgr.load_plugins(os.path.expanduser("~/.gramps/docgen"))