* src/gramps.glade: replace LED indicators with buttons

svn: r3551
This commit is contained in:
Don Allingham
2004-09-18 02:50:30 +00:00
parent 9c8e337e96
commit ac2ebca5ea
5 changed files with 181 additions and 221 deletions

View File

@ -423,6 +423,8 @@ class EditPerson:
"on_gender_activate" : self.on_gender_activate,
"on_givenName_focus_out_event": self.on_givenName_focus_out_event,
"on_help_person_clicked" : self.on_help_clicked,
"on_edit_date_birth_clicked": self.on_edit_date_birth_clicked,
"on_edit_date_death_clicked": self.on_edit_date_death_clicked,
})
self.update_birth_death()
@ -446,6 +448,14 @@ class EditPerson:
self.add_itself_to_winsmenu()
self.window.show()
def on_edit_date_birth_clicked(self,obj):
ErrorDialog("Not implemented yet",
"The Date Editor has not been implemented yet")
def on_edit_date_death_clicked(self,obj):
ErrorDialog("Not implemented yet",
"The Date Editor has not been implemented yet")
def close_child_windows(self):
for child_window in self.child_windows.values():
child_window.close(None)