Package diffpy :: Package pdfgui :: Package gui :: Module blankpanel
[hide private]
[frames] | no frames]

Source Code for Module diffpy.pdfgui.gui.blankpanel

 1  #!/usr/bin/env python 
 2  ############################################################################## 
 3  # 
 4  # PDFgui            by DANSE Diffraction group 
 5  #                   Simon J. L. Billinge 
 6  #                   (c) 2006 trustees of the Michigan State University. 
 7  #                   All rights reserved. 
 8  # 
 9  # File coded by:    Chris Farrow 
10  # 
11  # See AUTHORS.txt for a list of people who contributed. 
12  # See LICENSE.txt for license information. 
13  # 
14  ############################################################################## 
15   
16  """This module contains the BlankPanel class.""" 
17   
18  import wx 
19  from diffpy.pdfgui.gui.pdfpanel import PDFPanel 
20   
21 -class BlankPanel(wx.Panel, PDFPanel):
22 """A blank panel needed as a right panel in mainframe.py."""
23 - def __init__(self, *args, **kwds):
24 PDFPanel.__init__(self) 25 wx.Panel.__init__(self, *args, **kwds)
26
27 - def refresh(self):
28 return
29 30 # end of class BlankPanel 31 __id__ = "$Id: blankpanel.py 2980 2009-04-02 00:14:33Z juhas $" 32