/[thuban]/branches/WIP-pyshapelib-bramz/Thuban/UI/mainwindow.py
ViewVC logotype

Diff of /branches/WIP-pyshapelib-bramz/Thuban/UI/mainwindow.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 227 by bh, Thu Jul 18 16:27:11 2002 UTC revision 235 by bh, Tue Jul 23 10:56:29 2002 UTC
# Line 40  bitmapext = ".xpm" Line 40  bitmapext = ".xpm"
40    
41  class MainWindow(wxFrame):  class MainWindow(wxFrame):
42    
43      def __init__(self, parent, ID, application, interactor):      def __init__(self, parent, ID, title, application, interactor,
44          wxFrame.__init__(self, parent, ID, 'Thuban',                   initial_message = None):
45                           wxDefaultPosition, wxSize(400, 300))          wxFrame.__init__(self, parent, ID, title, wxDefaultPosition,
46                             wxSize(400, 300))
47    
48          self.application = application          self.application = application
49          self.interactor = interactor          self.interactor = interactor
50    
51          self.CreateStatusBar()          self.CreateStatusBar()
52          self.SetStatusText("This is the wxPython-based "          if initial_message:
53                        "Graphical User Interface for exploring geographic data")              self.SetStatusText(initial_message)
54    
55          self.identify_view = None          self.identify_view = None
56    

Legend:
Removed from v.227  
changed lines
  Added in v.235

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26