Package Gnumed :: Package wxpython :: Package gui :: Module gmPACSPlugin
[frames] | no frames]

Source Code for Module Gnumed.wxpython.gui.gmPACSPlugin

 1  # -*- coding: utf-8 -*- 
 2  #====================================================================== 
 3  # GNUmed PACS plugin 
 4  # 
 5  # @copyright: author 
 6  #====================================================================== 
 7  __author__ = "Karsten Hilbert" 
 8  __license__ = 'GPL v2 or later (details at http://www.gnu.org)' 
 9   
10  import logging 
11   
12   
13  from Gnumed.wxpython import gmPlugin 
14  from Gnumed.wxpython.gmDocumentWidgets import cPACSPluginPnl 
15  from Gnumed.wxpython import gmAccessPermissionWidgets 
16   
17   
18  _log = logging.getLogger('gm.ui') 
19 #====================================================================== 20 -class gmPACSPlugin(gmPlugin.cNotebookPlugin):
21 """Plugin to browse an Orthanc PACS.""" 22 23 tab_name = _('PACS') 24 required_minimum_role = 'full clinical access' 25 26 @gmAccessPermissionWidgets.verify_minimum_required_role ( 27 required_minimum_role, 28 activity = _('loading plugin <%s>') % tab_name, 29 return_value_on_failure = False, 30 fail_silently = False 31 )
32 - def register(self):
34
35 - def name (self):
37
38 - def GetWidget (self, parent):
39 self._widget = cPACSPluginPnl(parent, -1) 40 return self._widget
41
42 - def MenuInfo (self):
43 return ('tools', _('&PACS'))
44
45 - def can_receive_focus(self):
46 if not self._verify_patient_avail(): 47 return None 48 return 1
49 50 #====================================================================== 51 # main 52 #---------------------------------------------------------------------- 53 if __name__ == "__main__": 54 print("no test code") 55