Home | Trees | Indices | Help |
|
---|
|
1 """ 2 This is a no-frills document display handler for the 3 GNUmed medical document database. 4 5 It knows nothing about the documents itself. All it does 6 is to let the user select a page to display and tries to 7 hand it over to an appropriate viewer. 8 9 For that it relies on proper mime type handling at the OS level. 10 """ 11 # $Source: /home/ncq/Projekte/cvs2git/vcs-mirror/gnumed/gnumed/client/wxpython/gui/gmShowMedDocs.py,v $ 12 __version__ = "$Revision: 1.78 $" 13 __author__ = "Karsten Hilbert <Karsten.Hilbert@gmx.net>" 14 #================================================================ 15 import os.path, sys, logging 16 17 18 import wx 19 20 21 from Gnumed.wxpython import gmDocumentWidgets, gmPlugin, images_Archive_plugin 22 23 24 _log = logging.getLogger('gm.ui') 25 _log.info(__version__) 26 #================================================================28 """Plugin to encapsulate document tree.""" 29 30 tab_name = _("Documents") 31 34 #-------------------------------------------------------- 38 #--------------------------------------------------------59 #-------------------------------------------------------- 60 # def populate_toolbar (self, tb, widget): 61 # wxID_TB_BTN_show_page = wx.NewId() 62 # tool1 = tb.AddTool( 63 # wxID_TB_BTN_show_page, 64 # images_Archive_plugin.getreportsBitmap(), 65 # shortHelpString=_("show document"), 66 # isToggle=False 67 # ) 68 # wx.EVT_TOOL(tb, wxID_TB_BTN_show_page, self._widget._doc_tree.display_selected_part) 69 # tb.AddControl(wx.StaticBitmap( 70 # tb, 71 # -1, 72 # images_Archive_plugin.getvertical_separator_thinBitmap(), 73 # wx.DefaultPosition, 74 # wx.DefaultSize 75 # )) 76 #================================================================ 77 # MAIN 78 #---------------------------------------------------------------- 79 if __name__ == '__main__': 80 pass 81 #================================================================ 8240 return ('emr', _('&Documents review'))41 #-------------------------------------------------------- 47 #--------------------------------------------------------49 if not gmPlugin.cNotebookPlugin._on_raise_by_signal(self, **kwds): 50 return False 51 52 try: 53 if kwds['sort_mode'] == 'review': 54 self._widget._on_sort_by_review_selected(None) 55 except KeyError: 56 pass 57 58 return True
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Nov 29 04:05:02 2010 | http://epydoc.sourceforge.net |