* src/revision.glade: Add Help button.
* src/gramps_main.py (on_help_dbopen_clicked): Add function. * src/plugins/gedcomexport.glade: Add Help button. * src/plugins/WriteGedcom.py (on_help_clicked): Add function. * src/plugins/pkgexport.glade: Add Help button. * src/plugins/WritePkg.py (on_help_clicked): Add function. * src/plugins/writeftree.glade: Add Help button. * src/plugins/WriteGedcom.py (on_help_clicked): Add function. * src/plugins/cdexport.glade: Add Help button. * src/plugins/WriteCD.py (on_help_clicked): Add function. * src/Bookmarks.py (draw_window): Add Help button; (help_clicked): Add function. svn: r2418
This commit is contained in:
@@ -18,6 +18,8 @@
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
|
||||
# $Id$
|
||||
|
||||
"Export to GEDCOM"
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
@@ -37,6 +39,7 @@ import re
|
||||
#-------------------------------------------------------------------------
|
||||
import gtk
|
||||
import gtk.glade
|
||||
import gnome
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
@@ -371,7 +374,8 @@ class GedcomWriter:
|
||||
"standard_copyright" : self.standard_copyright,
|
||||
"no_copyright" : self.no_copyright,
|
||||
"on_restrict_toggled": self.on_restrict_toggled,
|
||||
"on_ok_clicked" : self.on_ok_clicked
|
||||
"on_ok_clicked" : self.on_ok_clicked,
|
||||
"on_help_clicked" : self.on_help_clicked
|
||||
})
|
||||
|
||||
Utils.set_titles(self.topDialog.get_widget('gedcomExport'),
|
||||
@@ -525,6 +529,10 @@ class GedcomWriter:
|
||||
self.export_data(name)
|
||||
closebtn.set_sensitive(1)
|
||||
|
||||
def on_help_clicked(self,obj):
|
||||
"""Display the relevant portion of GRAMPS manual"""
|
||||
gnome.help_display('gramps-manual','export-data')
|
||||
|
||||
def cl_setup(self):
|
||||
self.restrict = 0
|
||||
self.private = 0
|
||||
|
||||
Reference in New Issue
Block a user