1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#=====================================================
# GNUmed provider inbox plugin
# later to evolve into a more complete "provider-centric hub"
#=====================================================
# $Source: /sources/gnumed/gnumed/gnumed/client/wxpython/gui/gmProviderInboxPlugin.py,v $
# $Id: gmProviderInboxPlugin.py,v 1.8 2007/10/12 07:28:25 ncq Exp $
__version__ = "$Revision: 1.8 $"
__author__ = "Karsten Hilbert <Karsten.Hilbert@gmx.net>"
__license__ = "GPL"
from Gnumed.wxpython import gmPlugin, gmProviderInboxWidgets
#======================================================================
class gmProviderInboxPlugin(gmPlugin.cNotebookPlugin):
"""Plugin to encapsulate the provider inbox window."""
tab_name = _('Inbox')
#--------------------------------------------------------
def __init__(self):
gmPlugin.cNotebookPlugin.__init__(self)
#--------------------------------------------------------
def name(self):
return gmProviderInboxPlugin.tab_name
#--------------------------------------------------------
def GetWidget(self, parent):
self._widget = gmProviderInboxWidgets.cProviderInboxPnl(parent, -1)
return self._widget
#--------------------------------------------------------
def MenuInfo(self):
return ('tools', _('provider inbox'))
#--------------------------------------------------------
def can_receive_focus(self):
return True
#======================================================================
# $Log: gmProviderInboxPlugin.py,v $
# Revision 1.8 2007/10/12 07:28:25 ncq
# - lots of import related cleanup
#
# Revision 1.7 2006/12/17 22:21:05 ncq
# - cleanup
#
# Revision 1.6 2006/12/17 20:45:38 ncq
# - cleanup
#
# Revision 1.5 2006/05/28 16:15:27 ncq
# - populate already handled by plugin base class now
#
# Revision 1.4 2006/05/20 18:56:03 ncq
# - use receive_focus() interface
#
# Revision 1.3 2006/05/15 13:41:05 ncq
# - use patient change signal mixin
# - raise ourselves when patient has changed
#
# Revision 1.2 2006/05/15 11:07:26 ncq
# - cleanup
#
# Revision 1.1 2006/01/15 14:30:56 ncq
# - first crude cut at this
#
#
|