| Home | Trees | Indices | Help |
|
|---|
|
|
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 )
34
37
41
43 return ('tools', _('&PACS'))
44
49
50 #======================================================================
51 # main
52 #----------------------------------------------------------------------
53 if __name__ == "__main__":
54 print("no test code")
55
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu May 10 01:55:20 2018 | http://epydoc.sourceforge.net |