diff --git a/ChangeLog b/ChangeLog index f0feca1c9..7e2e640f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2005-03-19 Don Allingham + * src/GrampsDbBase.py: handle new column + * src/PeopleModel.py: add cause of death field + * src/PeopleView.py: add cause of death field + * src/gramps.glade: add scratchpad button + * src/gramps_main.py: add scratchpad button press callback + * src/plugins/ScratchPad.py: call alternate dialog + * src/plugins/scratchpad.glade: provide alternate dialog based + on gtk.Dialog that implements the help button. + 2005-03-19 Alex Roitman * src/gramps.glade: Add date LED buttons for LDS dates. * src/EditPerson.py (draw_lds): Add date LED buttons for LDS dates; diff --git a/src/GrampsDbBase.py b/src/GrampsDbBase.py index 8497a00e0..48a4f05ea 100644 --- a/src/GrampsDbBase.py +++ b/src/GrampsDbBase.py @@ -1187,7 +1187,7 @@ class GrampsDbBase: Returns the Person display common information stored in the database's metadata. """ - default = [(1,1),(1,2),(1,3),(0,4),(1,5),(0,6),(0,7),(0,8)] + default = [(1,1),(1,2),(1,3),(0,4),(1,5),(0,6),(0,7),(0,8),(0,9,)] if self.metadata == None: return default else: diff --git a/src/PeopleModel.py b/src/PeopleModel.py index 9bf48f4a8..c66fb5358 100644 --- a/src/PeopleModel.py +++ b/src/PeopleModel.py @@ -279,6 +279,12 @@ class PeopleModel(gtk.GenericTreeModel): return self.db.get_event_from_handle(data[_DEATH_COL]).get_date() else: return u"" + + def column_cause_of_death(self,data,node): + if data[_DEATH_COL]: + return self.db.get_event_from_handle(data[_DEATH_COL]).get_cause() + else: + return u"" def column_birth_place(self,data,node): if data[_BIRTH_COL]: @@ -313,20 +319,21 @@ _GENDER = [ _(u'female'), _(u'male'), _(u'unknown') ] # (unless this is declared after the PeopleModel class, an error is thrown) COLUMN_DEFS = [ # data column (method) header column (method) column data type - (PeopleModel.column_name, PeopleModel.column_header, gobject.TYPE_STRING), - (PeopleModel.column_id, None, gobject.TYPE_STRING), - (PeopleModel.column_gender, None, gobject.TYPE_STRING), - (PeopleModel.column_birth_day, None, gobject.TYPE_STRING), - (PeopleModel.column_birth_place,None, gobject.TYPE_STRING), - (PeopleModel.column_death_day, None, gobject.TYPE_STRING), - (PeopleModel.column_death_place,None, gobject.TYPE_STRING), - (PeopleModel.column_spouse, None, gobject.TYPE_STRING), - (PeopleModel.column_change, None, gobject.TYPE_STRING), + (PeopleModel.column_name, PeopleModel.column_header, str), + (PeopleModel.column_id, None, str), + (PeopleModel.column_gender, None, str), + (PeopleModel.column_birth_day, None, str), + (PeopleModel.column_birth_place,None, str), + (PeopleModel.column_death_day, None, str), + (PeopleModel.column_death_place,None, str), + (PeopleModel.column_spouse, None, str), + (PeopleModel.column_change, None, str), + (PeopleModel.column_cause_of_death, None, str), # the order of the above columns must match PeopleView.column_names # these columns are hidden, and must always be last in the list - (PeopleModel.column_sort_name, None, gobject.TYPE_STRING), - (PeopleModel.column_int_id, None, gobject.TYPE_STRING), + (PeopleModel.column_sort_name, None, str), + (PeopleModel.column_int_id, None, str), ] # dynamic calculation of column indices, for use by various Views diff --git a/src/PeopleView.py b/src/PeopleView.py index 687acf582..15cb239b4 100644 --- a/src/PeopleView.py +++ b/src/PeopleView.py @@ -56,6 +56,7 @@ column_names = [ _('Death Place'), _('Spouse'), _('Last Change'), + _('Cause of Death'), ] #------------------------------------------------------------------------- diff --git a/src/gramps.glade b/src/gramps.glade index f68bb259d..6f1e19fc4 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 @@ -844,6 +845,23 @@ + + + True + ScratchPad + True + gtk-paste + True + True + True + + + + False + True + + + True @@ -1017,6 +1035,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1065,6 +1087,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1113,6 +1139,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1161,6 +1191,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1209,6 +1243,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1257,6 +1295,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1302,6 +1344,8 @@ True + False + True 0 @@ -1371,6 +1415,9 @@ False False True + False + False + False @@ -1400,6 +1447,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1688,6 +1739,9 @@ True False True + False + False + False @@ -1811,6 +1865,10 @@ 0 0 chlist + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1836,6 +1894,10 @@ 0 0 ap_data + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1861,6 +1923,10 @@ 0 0 ap_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1886,6 +1952,10 @@ 0 0 sp_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1911,6 +1981,10 @@ 0 0 sp_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1940,6 +2014,9 @@ True True True + False + False + False @@ -1970,6 +2047,9 @@ True False True + False + False + False @@ -2000,6 +2080,9 @@ True False True + False + False + False @@ -2030,6 +2113,9 @@ True True True + False + False + False @@ -2185,6 +2271,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2219,6 +2309,9 @@ True True True + False + False + False @@ -2245,6 +2338,10 @@ 0 0 chlist2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2274,6 +2371,9 @@ True True True + False + False + False @@ -2304,6 +2404,9 @@ True False True + False + False + False @@ -2334,6 +2437,9 @@ True False True + False + False + False @@ -2364,6 +2470,9 @@ True False True + False + False + False @@ -2514,6 +2623,10 @@ 0 0 sp_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2636,6 +2749,10 @@ 0 0 sp_list2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2758,6 +2875,10 @@ 0 0 ap_data2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2783,6 +2904,10 @@ 0 0 ap_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2940,6 +3065,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2987,6 +3116,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3016,6 +3149,9 @@ True False True + False + False + False @@ -3045,6 +3181,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3074,6 +3214,9 @@ True False True + False + False + False @@ -3103,6 +3246,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3154,6 +3301,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -3190,6 +3341,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3215,6 +3370,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3238,6 +3397,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3261,6 +3424,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3286,6 +3453,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3311,6 +3482,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3336,6 +3511,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3359,6 +3538,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3382,6 +3565,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3405,6 +3592,10 @@ 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3430,6 +3621,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3473,6 +3668,9 @@ True False True + False + False + False @@ -3502,6 +3700,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3554,6 +3756,7 @@ False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3630,6 +3833,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -3668,6 +3875,9 @@ False False True + False + False + False @@ -3775,6 +3985,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3794,6 +4008,8 @@ Unmarried Civil Union Unknown Other + False + True 1 @@ -3852,6 +4068,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3936,6 +4153,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3973,6 +4194,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3997,6 +4222,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4021,6 +4250,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4046,6 +4279,10 @@ Other 0 0 father_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4141,6 +4378,10 @@ Other 0 0 mother_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4165,6 +4406,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4194,6 +4439,9 @@ Other True False True + False + False + False @@ -4223,6 +4471,9 @@ Other True False True + False + False + False @@ -4287,6 +4538,8 @@ Unmarried Civil Union Uknown Other + False + True @@ -4302,6 +4555,8 @@ Other True + False + True 2 @@ -4316,6 +4571,8 @@ Other True + False + True 2 @@ -4367,6 +4624,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4451,6 +4709,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4496,6 +4758,9 @@ Other True False True + False + False + False @@ -4595,6 +4860,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4619,6 +4888,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4633,6 +4906,8 @@ Other True + False + True 1 @@ -4646,6 +4921,8 @@ Other True + False + True 1 @@ -4683,6 +4960,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4769,6 +5047,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4813,6 +5095,10 @@ Other 0 0 source_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4838,6 +5124,10 @@ Other 0 0 author + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4909,6 +5199,10 @@ Other 0 0 pubinfo + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4976,6 +5270,10 @@ Other 0 0 abbrev + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5006,6 +5304,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5076,6 +5378,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5160,6 +5466,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5190,6 +5500,9 @@ Other True False True + False + False + False @@ -5289,6 +5602,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5502,6 +5819,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5525,6 +5846,9 @@ Other False False True + False + False + False @@ -5547,6 +5871,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5586,6 +5914,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5671,6 +6000,10 @@ Other 0.5 10 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5744,6 +6077,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5825,6 +6159,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -5862,6 +6200,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -5886,6 +6228,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -5909,6 +6255,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -5933,6 +6283,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -5957,6 +6311,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Relationship: @@ -5984,6 +6342,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -6008,6 +6370,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6032,6 +6398,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6055,6 +6425,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6092,6 +6466,8 @@ Other True + False + True 2 @@ -6107,6 +6483,8 @@ Other True + False + True 2 @@ -6156,6 +6534,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6246,6 +6625,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6281,6 +6664,10 @@ Other 0 0 entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -6339,6 +6726,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6415,6 +6803,9 @@ Other False True True + False + False + False @@ -6439,6 +6830,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6474,6 +6869,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6554,6 +6950,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -6612,6 +7012,10 @@ Other 0 0 givenName + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6637,6 +7041,10 @@ Other 0 0 surname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6662,6 +7070,10 @@ Other 0 0 prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6687,6 +7099,10 @@ Other 0 0 suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6712,6 +7128,10 @@ Other 0 0 title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6737,6 +7157,10 @@ Other 0 0 nickname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6761,6 +7185,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6786,6 +7214,10 @@ Other 0 0 birthDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6876,6 +7308,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6978,6 +7414,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7003,6 +7443,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -7049,6 +7493,10 @@ Other 0 0 birth_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7073,6 +7521,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7098,6 +7550,10 @@ Other 0 0 deathDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -7126,6 +7582,10 @@ Other 0 0 death_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -7182,6 +7642,9 @@ Other True + False + True + True 2 @@ -7394,6 +7857,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7417,6 +7884,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7556,6 +8027,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -7652,6 +8127,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -7693,6 +8172,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7717,6 +8200,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7741,6 +8228,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7765,6 +8256,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7789,6 +8284,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7813,6 +8312,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7837,6 +8340,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7861,6 +8368,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -7885,6 +8396,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7909,6 +8424,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7933,6 +8452,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -7956,6 +8479,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -7979,6 +8506,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8002,6 +8533,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8025,6 +8560,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8048,6 +8587,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8071,6 +8614,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8094,6 +8641,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8156,6 +8707,9 @@ Other False False True + False + False + False @@ -8294,6 +8848,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -8335,6 +8893,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8359,6 +8921,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8383,6 +8949,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8407,6 +8977,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8431,6 +9005,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8455,6 +9033,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8479,6 +9061,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8503,6 +9089,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8527,6 +9117,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -8551,6 +9145,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8575,6 +9173,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8599,6 +9201,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8623,6 +9229,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8647,6 +9257,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8670,6 +9284,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -8693,6 +9311,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -8735,6 +9357,9 @@ Other False True True + False + False + False @@ -8880,6 +9505,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -8921,6 +9550,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8945,6 +9578,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8969,6 +9606,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8993,6 +9634,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9017,6 +9662,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9041,6 +9690,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -9065,6 +9718,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9089,6 +9746,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9112,6 +9773,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9135,6 +9800,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9177,6 +9846,9 @@ Other False False True + False + False + False @@ -9322,6 +9994,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9357,6 +10033,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9381,6 +10061,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9405,6 +10089,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9429,6 +10117,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9453,6 +10145,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9477,6 +10173,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9501,6 +10201,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9525,6 +10229,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9549,6 +10257,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9573,6 +10285,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9597,6 +10313,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9621,6 +10341,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9645,6 +10369,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9669,6 +10397,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9693,6 +10425,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9716,6 +10452,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9739,6 +10479,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9763,6 +10507,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9787,6 +10535,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9811,6 +10563,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9885,6 +10641,9 @@ Other False False True + False + False + False @@ -10030,6 +10789,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10103,6 +10866,10 @@ Other 0 0 flowed + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10187,6 +10954,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10216,6 +10987,9 @@ Other False False True + False + False + False @@ -10342,6 +11116,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10540,6 +11318,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10575,6 +11357,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10599,6 +11385,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10623,6 +11413,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10647,6 +11441,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10670,6 +11468,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10712,6 +11514,9 @@ Other False False True + False + False + False @@ -10878,6 +11683,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10907,6 +11716,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10932,6 +11745,10 @@ Other 0 0 ldsbapdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10956,6 +11773,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Temple: @@ -11004,6 +11825,10 @@ Other 0 0 lds_bap_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11072,6 +11897,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11097,6 +11926,10 @@ Other 0 0 endowdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -11124,6 +11957,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11149,6 +11986,10 @@ Other 0 0 lds_end_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11238,6 +12079,10 @@ Other 0 0 sealdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11262,6 +12107,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11307,6 +12156,10 @@ Other 0 0 lds_seal_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11376,6 +12229,10 @@ Other 0 0 sealparents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11400,6 +12257,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11414,6 +12275,8 @@ Other True + False + True 3 @@ -11428,6 +12291,8 @@ Other True + False + True 3 @@ -11442,6 +12307,8 @@ Other True + False + True 3 @@ -11456,6 +12323,8 @@ Other True + False + True 2 @@ -11470,6 +12339,8 @@ Other True + False + True 2 @@ -11484,6 +12355,8 @@ Other True + False + True 2 @@ -11498,6 +12371,8 @@ Other True + False + True 2 @@ -11707,6 +12582,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11738,6 +12617,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -11825,6 +12705,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11873,6 +12757,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11898,6 +12786,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -11937,6 +12829,8 @@ Other True + False + True 1 @@ -11961,6 +12855,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11985,6 +12883,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12044,6 +12946,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12079,6 +12985,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12103,6 +13013,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12127,6 +13041,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12151,6 +13069,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12175,6 +13097,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12199,6 +13125,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12223,6 +13153,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -12247,6 +13181,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -12270,6 +13208,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12294,6 +13236,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12318,6 +13264,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12341,6 +13291,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12364,6 +13318,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12388,6 +13346,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12412,6 +13374,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12435,6 +13401,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12476,6 +13446,9 @@ Other False False True + False + False + False @@ -12611,6 +13584,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12646,6 +13623,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12670,6 +13651,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -12694,6 +13679,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12718,6 +13707,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12742,6 +13735,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12766,6 +13763,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12790,6 +13791,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12814,6 +13819,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12837,6 +13846,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -12860,6 +13873,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12901,6 +13918,9 @@ Other False False True + False + False + False @@ -13036,6 +14056,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13106,6 +14130,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13190,6 +14218,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13219,6 +14251,9 @@ Other False False True + False + False + False @@ -13342,6 +14377,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13527,6 +14566,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13562,6 +14605,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13586,6 +14633,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13610,6 +14661,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13634,6 +14689,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13688,6 +14747,9 @@ Other True + False + True + True 2 @@ -13702,6 +14764,8 @@ Other True + False + True 3 @@ -13716,6 +14780,8 @@ Other True + False + True 2 @@ -13813,6 +14879,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13852,6 +14922,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -13936,6 +15007,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13979,6 +15054,10 @@ Other 0 0 place_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14007,6 +15086,10 @@ Other 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14035,6 +15118,10 @@ Other 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14063,6 +15150,10 @@ Other 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14091,6 +15182,10 @@ Other 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14119,6 +15214,10 @@ Other 0 0 longitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14147,6 +15246,10 @@ Other 0 0 latitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -14175,6 +15278,10 @@ Other 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Church Parish: @@ -14372,6 +15479,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14397,6 +15508,10 @@ Other 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14443,6 +15558,10 @@ Other 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14488,6 +15607,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14512,6 +15635,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14542,6 +15669,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14577,6 +15708,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14601,6 +15736,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14625,6 +15764,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14649,6 +15792,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14673,6 +15820,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14697,6 +15848,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14722,6 +15877,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14748,6 +15907,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14774,6 +15937,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -14798,6 +15965,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14823,6 +15994,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -14846,6 +16021,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14870,6 +16049,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14896,6 +16079,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -14920,6 +16107,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -14961,6 +16152,9 @@ Other False False True + False + False + False @@ -15107,6 +16301,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15177,6 +16375,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15261,6 +16463,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15296,6 +16502,9 @@ Other False False True + False + False + False @@ -15439,6 +16648,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15650,6 +16863,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15685,6 +16902,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15709,6 +16930,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15733,6 +16958,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15756,6 +16985,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15780,6 +17013,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15821,6 +17058,9 @@ Other False False True + False + False + False @@ -15994,6 +17234,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16047,6 +17291,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16083,6 +17331,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -16153,6 +17402,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -16190,6 +17443,9 @@ Other False False True + False + False + False @@ -16268,6 +17524,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16297,6 +17557,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16332,6 +17596,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16379,6 +17647,10 @@ Other 3 3 lastnamegen + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16393,6 +17665,8 @@ Other True + False + True 1 @@ -16430,6 +17704,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16465,6 +17743,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16535,6 +17817,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16554,6 +17840,8 @@ Icons Only Text Only Text Below Icons Text Beside Icons + False + True 1 @@ -16591,6 +17879,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16650,6 +17942,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16674,6 +17970,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16744,6 +18044,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16851,6 +18155,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16887,6 +18195,10 @@ Text Beside Icons 5 5 date_format + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16911,6 +18223,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16925,6 +18241,8 @@ Text Beside Icons True + False + True 2 @@ -16962,6 +18280,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16998,6 +18320,10 @@ Text Beside Icons 0 0 resname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17023,6 +18349,10 @@ Text Beside Icons 0 0 resaddr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17048,6 +18378,10 @@ Text Beside Icons 0 0 rescity + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17073,6 +18407,10 @@ Text Beside Icons 0 0 resstate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17098,6 +18436,10 @@ Text Beside Icons 0 0 rescountry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17123,6 +18465,10 @@ Text Beside Icons 0 0 respostal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17148,6 +18494,10 @@ Text Beside Icons 0 0 resphone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17173,6 +18523,10 @@ Text Beside Icons 0 0 resemail + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17365,6 +18719,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17402,6 +18760,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17438,6 +18800,10 @@ Text Beside Icons 2 2 iprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17463,6 +18829,10 @@ Text Beside Icons 2 2 fprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17488,6 +18858,10 @@ Text Beside Icons 2 2 pprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17513,6 +18887,10 @@ Text Beside Icons 2 2 sprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17538,6 +18916,10 @@ Text Beside Icons 2 2 oprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17667,6 +19049,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17704,6 +19090,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17755,6 +19145,7 @@ Text Beside Icons False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -17839,6 +19230,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -17877,6 +19272,10 @@ Text Beside Icons 0 0 conf + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17902,6 +19301,10 @@ Text Beside Icons 0 0 spage + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17927,6 +19330,10 @@ Text Beside Icons 0 0 sdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -17954,6 +19361,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -17981,6 +19392,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -18008,6 +19423,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18032,6 +19451,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18056,6 +19479,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18080,6 +19507,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -18104,6 +19535,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -18128,6 +19563,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18152,6 +19591,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18379,6 +19822,8 @@ Low Normal High Very High + False + True 2 @@ -18393,6 +19838,8 @@ Very High True + False + True 2 @@ -18444,6 +19891,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18527,6 +19975,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -18559,6 +20011,9 @@ Very High False False True + False + False + False @@ -18710,6 +20165,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18777,6 +20233,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18802,6 +20262,9 @@ Very High True False True + False + False + False @@ -18855,6 +20318,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -18921,6 +20385,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18968,6 +20436,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -19004,6 +20476,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19029,6 +20505,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19052,6 +20532,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19075,6 +20559,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19100,6 +20588,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19125,6 +20617,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19150,6 +20646,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19173,6 +20673,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19196,6 +20700,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19219,6 +20727,10 @@ Very High 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19244,6 +20756,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19287,6 +20803,9 @@ Very High True False True + False + False + False @@ -19323,6 +20842,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19391,6 +20911,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19422,6 +20946,9 @@ Very High False False True + False + False + False @@ -19542,6 +21069,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19611,6 +21139,10 @@ Very High 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -19639,6 +21171,10 @@ Very High 0 0 style_name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19709,6 +21245,9 @@ Very High False False True + False + False + False @@ -19748,6 +21287,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19769,6 +21312,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19796,6 +21343,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -19825,6 +21376,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -19956,6 +21511,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19980,6 +21539,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20004,6 +21567,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20028,6 +21595,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20053,6 +21624,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20128,6 +21703,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -20177,6 +21756,10 @@ Very High 0 0 rmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20205,6 +21788,10 @@ Very High 0 0 lmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20233,6 +21820,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -20260,6 +21851,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20284,6 +21879,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20308,6 +21907,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20486,6 +22089,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20510,6 +22117,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20535,6 +22146,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20559,6 +22174,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20583,6 +22202,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20695,6 +22318,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20740,6 +22367,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -20765,6 +22396,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20795,6 +22430,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -20840,6 +22479,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20921,6 +22561,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -20988,6 +22632,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -21035,6 +22683,10 @@ Very High 0 0 photoDescription + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21122,6 +22774,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21207,6 +22860,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21253,6 +22910,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -21289,6 +22950,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21313,6 +22978,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21337,6 +23006,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21361,6 +23034,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21385,6 +23062,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21409,6 +23090,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21434,6 +23119,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21458,6 +23147,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21517,6 +23210,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21541,6 +23238,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21565,6 +23266,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21589,6 +23294,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21697,6 +23406,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21743,6 +23456,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21773,6 +23490,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21843,6 +23564,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21927,6 +23652,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21982,6 +23711,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22017,6 +23750,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22041,6 +23778,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22065,6 +23806,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22088,6 +23833,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22112,6 +23861,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22154,6 +23907,9 @@ Very High True False True + False + False + False @@ -22302,6 +24058,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22337,6 +24097,9 @@ Very High False False True + False + False + False @@ -22480,6 +24243,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22519,6 +24286,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -22604,6 +24372,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22650,6 +24422,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -22686,6 +24462,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22710,6 +24490,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22734,6 +24518,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22758,6 +24546,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22781,6 +24573,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22805,6 +24601,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22871,6 +24671,10 @@ Very High 0 0 description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22916,6 +24720,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22941,6 +24749,10 @@ Very High 0 0 place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23059,6 +24871,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23094,6 +24910,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23118,6 +24938,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23141,6 +24965,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23165,6 +24993,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23189,6 +25021,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23230,6 +25066,9 @@ Very High False False True + False + False + False @@ -23379,6 +25218,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23449,6 +25292,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23533,6 +25380,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23555,6 +25406,9 @@ Very High False False True + False + False + False @@ -23577,6 +25431,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23612,6 +25470,9 @@ Very High False False True + False + False + False @@ -23755,6 +25616,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23791,6 +25656,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -23848,6 +25714,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23872,6 +25742,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23925,6 +25799,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24010,6 +25885,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24054,6 +25933,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24109,6 +25992,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24179,6 +26063,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24223,6 +26111,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24256,6 +26148,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24326,6 +26219,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24370,6 +26267,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24403,6 +26304,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24460,6 +26362,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24504,6 +26410,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24537,6 +26447,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24594,6 +26505,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24638,6 +26553,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24671,6 +26590,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24742,6 +26662,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24830,6 +26754,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24875,6 +26803,10 @@ Very High 0.5 6 24 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24919,6 +26851,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24978,6 +26914,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25065,6 +27002,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25107,6 +27048,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25132,6 +27077,10 @@ Very High 0 0 eventDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25160,6 +27109,10 @@ Very High 0 0 event_description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25188,6 +27141,10 @@ Very High 0 3 eventPlace + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25216,6 +27173,10 @@ Very High 0 0 eventCause + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -25339,6 +27300,9 @@ Very High True + False + True + True 1 @@ -25396,6 +27360,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25431,6 +27399,9 @@ Very High False False True + False + False + False @@ -25574,6 +27545,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25647,6 +27622,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25731,6 +27710,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25767,6 +27750,9 @@ Very High False False True + False + False + False @@ -25910,6 +27896,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26121,6 +28111,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26159,6 +28153,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26243,6 +28238,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26285,6 +28284,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26310,6 +28313,10 @@ Very High 0 0 attr_value + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26370,6 +28377,9 @@ Very High True + False + True + True 1 @@ -26400,6 +28410,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26435,6 +28449,9 @@ Very High False False True + False + False + False @@ -26578,6 +28595,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26649,6 +28670,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26733,6 +28758,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26771,6 +28800,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26855,6 +28885,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26887,6 +28921,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26915,6 +28953,10 @@ Very High 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26943,6 +28985,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Country: @@ -26972,6 +29018,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 State: @@ -27001,6 +29051,10 @@ Very High 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27135,6 +29189,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27181,6 +29239,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27245,6 +29307,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -27330,6 +29393,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27373,6 +29440,10 @@ Very High 0 0 address_start + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27401,6 +29472,10 @@ Very High 0 0 street + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27429,6 +29504,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27457,6 +29536,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27485,6 +29568,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27513,6 +29600,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27690,6 +29781,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27768,6 +29863,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27803,6 +29902,9 @@ Very High False False True + False + False + False @@ -27946,6 +30048,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28017,6 +30123,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28101,6 +30211,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28139,6 +30253,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28224,6 +30339,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28256,6 +30375,10 @@ Very High 0 0 url_addr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28284,6 +30407,10 @@ Very High 0 0 url_des + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28409,6 +30536,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -28495,6 +30623,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28538,6 +30670,10 @@ Very High 0 0 alt_given + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28566,6 +30702,10 @@ Very High 0 0 alt_suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28593,6 +30733,10 @@ Very High 0 1 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28621,6 +30765,10 @@ Very High 0 0 alt_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28671,6 +30819,10 @@ Very High 0 0 alt_prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28784,6 +30936,10 @@ Very High 0 0 patronymic + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28811,6 +30967,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28828,6 +30988,9 @@ Very High True + False + True + True 2 @@ -28877,6 +31040,10 @@ Very High 0 0 group_as + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28904,6 +31071,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28953,6 +31124,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28980,6 +31155,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29004,6 +31183,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29041,6 +31224,9 @@ Very High True + False + True + True 2 @@ -29058,6 +31244,8 @@ Very High Default (based on locale) Family name, Given name Given name, Family name + False + True 2 @@ -29076,6 +31264,8 @@ Given name, Family name Given name Family name Family name Given name + False + True 2 @@ -29100,6 +31290,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -29190,6 +31384,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29226,6 +31424,9 @@ Family name Given name False False True + False + False + False @@ -29369,6 +31570,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29441,6 +31646,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29525,6 +31734,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29563,6 +31776,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -29646,6 +31860,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29678,6 +31896,10 @@ Family name Given name 0 0 name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29706,6 +31928,10 @@ Family name Given name 0 0 scrolledwindow30 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29886,6 +32112,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True False @@ -29956,6 +32183,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30055,6 +32286,10 @@ Family name Given name 0.5 6 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30078,6 +32313,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30112,6 +32351,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -30136,6 +32376,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30160,6 +32404,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30184,6 +32432,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30231,6 +32483,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -30310,6 +32563,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30344,6 +32601,10 @@ Family name Given name 0 0 calendar_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30356,6 +32617,8 @@ Family name Given name True + False + True 6 @@ -30394,6 +32657,10 @@ Family name Given name 6 0 quality_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30409,6 +32676,8 @@ Family name Given name True + False + True 1 @@ -30436,6 +32705,10 @@ Family name Given name 6 0 type_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -30451,6 +32724,8 @@ Family name Given name True + False + True 5 @@ -30477,6 +32752,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30502,6 +32781,10 @@ Family name Given name 0 0 start_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -30527,6 +32810,10 @@ Family name Given name 0 0 start_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -30552,6 +32839,10 @@ Family name Given name 0 0 start_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -30589,6 +32880,8 @@ Family name Given name True + False + True 2 @@ -30635,6 +32928,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -30660,6 +32957,10 @@ Family name Given name 0 0 stop_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -30685,6 +32986,10 @@ Family name Given name 0 0 stop_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30710,6 +33015,10 @@ Family name Given name 0 0 stop_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -30747,6 +33056,8 @@ Family name Given name True + False + True 6 @@ -30807,6 +33118,10 @@ Family name Given name 0 0 date_text_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -30873,6 +33188,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -30940,6 +33256,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30967,6 +33287,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 diff --git a/src/gramps_main.py b/src/gramps_main.py index 6b0fa80b0..c724bf83f 100755 --- a/src/gramps_main.py +++ b/src/gramps_main.py @@ -354,6 +354,7 @@ class Gramps: "on_abandon_activate" : self.exit_and_undo, "on_column_order_activate": self.column_order, "on_back_clicked" : self.back_clicked, + "on_scratchpad_clicked" : self.scratchpad_clicked, # FIXME: uncomment when fixed #"on_back_pressed" : self.back_pressed, "on_fwd_clicked" : self.fwd_clicked, @@ -718,6 +719,10 @@ class Gramps: self.remove_item.set_sensitive(val) self.edit_item.set_sensitive(val) + def scratchpad_clicked(self,obj): + import ScratchPad + ScratchPad.ScratchPadWindow(self.db, self) + def back_clicked(self,obj,step=1): if self.hindex > 0: try: @@ -1387,7 +1392,7 @@ class Gramps: child = self.db.get_person_from_handle(child_handle) child.remove_parent_family_handle(family.get_handle()) self.db.commit_person(child,trans) - self.db.delete_family(family.get_handle(),trans) + self.db.remove_family(family.get_handle(),trans) else: family.set_father_handle(None) else: @@ -1396,7 +1401,7 @@ class Gramps: child = self.db.get_person_from_handle(child_handle) child.remove_parent_family_handle(family) self.db.commit_person(child,trans) - self.db.delete_family(family,trans) + self.db.remove_family(family,trans) else: family.set_mother_handle(None) self.db.commit_family(family,trans) diff --git a/src/plugins/ScratchPad.py b/src/plugins/ScratchPad.py index 4b80a771c..6ecabb194 100644 --- a/src/plugins/ScratchPad.py +++ b/src/plugins/ScratchPad.py @@ -129,8 +129,8 @@ class ScratchPadWindow: base = os.path.dirname(__file__) self.glade_file = "%s/%s" % (base,"scratchpad.glade") - self.top = gtk.glade.XML(self.glade_file,"scratchPad","gramps") - self.window = self.top.get_widget("scratchPad") + self.top = gtk.glade.XML(self.glade_file,"scratch_pad","gramps") + self.window = self.top.get_widget("scratch_pad") self.window.set_icon(self.parent.topWindow.get_icon()) self.object_list = self.top.get_widget('objectlist') diff --git a/src/plugins/scratchpad.glade b/src/plugins/scratchpad.glade index c468caca0..983f07f86 100644 --- a/src/plugins/scratchpad.glade +++ b/src/plugins/scratchpad.glade @@ -19,6 +19,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -44,6 +45,9 @@ False False True + False + False + False @@ -58,7 +62,7 @@ True - GTK_BUTTONBOX_DEFAULT_STYLE + GTK_BUTTONBOX_END 0 @@ -110,4 +114,131 @@ + + True + Scratch Pad + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + 500 + 300 + True + False + True + False + False + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + True + + + + True + False + 0 + + + + True + GTK_BUTTONBOX_END + + + + True + False + True + True + gtk-help + True + GTK_RELIEF_NORMAL + True + -11 + + + + + + + True + True + True + Clear _All + True + GTK_RELIEF_NORMAL + True + 0 + + + + + + + True + True + True + gtk-clear + True + GTK_RELIEF_NORMAL + True + 0 + + + + + + + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + True + -7 + + + + + + 0 + False + True + GTK_PACK_END + + + + + + True + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + True + False + False + True + False + False + False + + + + + 0 + True + True + + + + + +