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
|
#=====================================================
# GNUmed data mining plugin aka SimpleReports
#=====================================================
# $Source: /sources/gnumed/gnumed/gnumed/client/wxpython/gui/gmDataMiningPlugin.py,v $
# $Id: gmDataMiningPlugin.py,v 1.3 2007/10/12 07:28:24 ncq Exp $
__version__ = "$Revision: 1.3 $"
__author__ = "Karsten Hilbert <Karsten.Hilbert@gmx.net>"
__license__ = "GPL"
from Gnumed.wxpython import gmPlugin, gmDataMiningWidgets
#======================================================================
class gmDataMiningPlugin(gmPlugin.cNotebookPlugin):
"""Plugin to encapsulate a simple data mining window."""
tab_name = _('Reports')
#--------------------------------------------------------
def __init__(self):
gmPlugin.cNotebookPlugin.__init__(self)
#--------------------------------------------------------
def name(self):
return gmDataMiningPlugin.tab_name
#--------------------------------------------------------
def GetWidget(self, parent):
self._widget = gmDataMiningWidgets.cDataMiningPnl(parent, -1)
return self._widget
#--------------------------------------------------------
def MenuInfo(self):
return ('tools', _('Report Generator'))
#--------------------------------------------------------
def can_receive_focus(self):
return True
#======================================================================
# $Log: gmDataMiningPlugin.py,v $
# Revision 1.3 2007/10/12 07:28:24 ncq
# - lots of import related cleanup
#
# Revision 1.2 2007/07/09 12:47:38 ncq
# - refactoring adjustments
#
# Revision 1.1 2007/04/06 23:09:13 ncq
# - this is new
#
#
|