/[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 222 by bh, Thu Jul 18 13:03:08 2002 UTC revision 281 by bh, Mon Aug 26 18:16:36 2002 UTC
# Line 28  import proj4dialog Line 28  import proj4dialog
28  import tableview, identifyview  import tableview, identifyview
29  from menu import Menu  from menu import Menu
30    
 import main  
31  from context import Context  from context import Context
32  from command import registry, Command  from command import registry, Command
33  from messages import SELECTED_SHAPE, VIEW_POSITION  from messages import SELECTED_SHAPE, VIEW_POSITION
# Line 41  bitmapext = ".xpm" Line 40  bitmapext = ".xpm"
40    
41  class MainWindow(wxFrame):  class MainWindow(wxFrame):
42    
43      def __init__(self, parent, ID, interactor):      def __init__(self, parent, ID, title, application, interactor,
44          wxFrame.__init__(self, parent, ID, 'Thuban',                   initial_message = None, size = wxSize(-1, -1)):
45                           wxDefaultPosition, wxSize(400, 300))          wxFrame.__init__(self, parent, ID, title, wxDefaultPosition, size)
46    
47            self.application = application
48          self.interactor = interactor          self.interactor = interactor
49    
50          self.CreateStatusBar()          self.CreateStatusBar()
51          self.SetStatusText("This is the wxPython-based "          if initial_message:
52                        "Graphical User Interface for exploring geographic data")              self.SetStatusText(initial_message)
53    
54          self.identify_view = None          self.identify_view = None
55    
# Line 193  class MainWindow(wxFrame): Line 193  class MainWindow(wxFrame):
193              else:              else:
194                  print "Unknown command %s" % name                  print "Unknown command %s" % name
195    
196        def Context(self):
197            """Return the context object for a command invoked from this window
198            """
199            return Context(self.application, self.application.Session(), self)
200    
201      def invoke_command(self, event):      def invoke_command(self, event):
202          name = self.id_to_name.get(event.GetId())          name = self.id_to_name.get(event.GetId())
203          if name is not None:          if name is not None:
204              command = registry.Command(name)              command = registry.Command(name)
205              command.Execute(Context(main.app, main.app.Session(), self))              command.Execute(self.Context())
206          else:          else:
207              print "Unknown command ID %d" % event.GetId()              print "Unknown command ID %d" % event.GetId()
208    
209      def update_command_ui(self, event):      def update_command_ui(self, event):
210          #print "update_command_ui", self.id_to_name[event.GetId()]          #print "update_command_ui", self.id_to_name[event.GetId()]
211          context = Context(main.app, main.app.Session(), self)          context = self.Context()
212          command = registry.Command(self.id_to_name[event.GetId()])          command = registry.Command(self.id_to_name[event.GetId()])
213          if command is not None:          if command is not None:
214              event.Enable(command.Sensitive(context))              event.Enable(command.Sensitive(context))
# Line 257  class MainWindow(wxFrame): Line 262  class MainWindow(wxFrame):
262          If the can_veto parameter is true (default) the dialog includes          If the can_veto parameter is true (default) the dialog includes
263          a cancel button, otherwise not.          a cancel button, otherwise not.
264          """          """
265          if main.app.session.WasModified():          if self.application.session.WasModified():
266              flags = wxYES_NO | wxICON_QUESTION              flags = wxYES_NO | wxICON_QUESTION
267              if can_veto:              if can_veto:
268                  flags = flags | wxCANCEL                  flags = flags | wxCANCEL
# Line 273  class MainWindow(wxFrame): Line 278  class MainWindow(wxFrame):
278    
279      def NewSession(self):      def NewSession(self):
280          self.save_modified_session()          self.save_modified_session()
281          main.app.SetSession(create_empty_session())          self.application.SetSession(create_empty_session())
282    
283      def OpenSession(self):      def OpenSession(self):
284          self.save_modified_session()          self.save_modified_session()
285          dlg = wxFileDialog(self, "Select a session file", ".", "",          dlg = wxFileDialog(self, "Select a session file", ".", "",
286                             "*.thuban", wxOPEN)                             "*.thuban", wxOPEN)
287          if dlg.ShowModal() == wxID_OK:          if dlg.ShowModal() == wxID_OK:
288              main.app.OpenSession(dlg.GetPath())              self.application.OpenSession(dlg.GetPath())
289          dlg.Destroy()          dlg.Destroy()
290    
291      def SaveSession(self):      def SaveSession(self):
292          if main.app.session.filename == None:          if self.application.session.filename == None:
293              self.SaveSessionAs()              self.SaveSessionAs()
294          main.app.SaveSession()          self.application.SaveSession()
295    
296      def SaveSessionAs(self):      def SaveSessionAs(self):
297          dlg = wxFileDialog(self, "Enter a filename for session", ".", "",          dlg = wxFileDialog(self, "Enter a filename for session", ".", "",
298                             "*.thuban", wxOPEN)                             "*.thuban", wxOPEN)
299          if dlg.ShowModal() == wxID_OK:          if dlg.ShowModal() == wxID_OK:
300              main.app.session.SetFilename(dlg.GetPath())              self.application.session.SetFilename(dlg.GetPath())
301              main.app.SaveSession()              self.application.SaveSession()
302          dlg.Destroy()          dlg.Destroy()
303    
304      def Exit(self):      def Exit(self):
# Line 313  class MainWindow(wxFrame): Line 318  class MainWindow(wxFrame):
318          name = "session_tree"          name = "session_tree"
319          dialog = self.get_open_dialog(name)          dialog = self.get_open_dialog(name)
320          if dialog is None:          if dialog is None:
321              dialog = tree.SessionTreeView(self, main.app, name)              dialog = tree.SessionTreeView(self, self.application, name)
322              self.add_dialog(name, dialog)              self.add_dialog(name, dialog)
323              dialog.Show(true)              dialog.Show(true)
324          else:          else:
# Line 433  class MainWindow(wxFrame): Line 438  class MainWindow(wxFrame):
438              name = "table_view" + str(id(table))              name = "table_view" + str(id(table))
439              dialog = self.get_open_dialog(name)              dialog = self.get_open_dialog(name)
440              if dialog is None:              if dialog is None:
441                  dialog = tableview.TableFrame(self, self.interactor, name,                  dialog = tableview.LayerTableFrame(self, self.interactor, name,
442                                                "Table: %s" % layer.Title(),                                                     "Table: %s" % layer.Title(),
443                                                layer, table)                                                     layer, table)
444                  self.add_dialog(name, dialog)                  self.add_dialog(name, dialog)
445                  dialog.Show(true)                  dialog.Show(true)
446              else:              else:
# Line 509  def _method_command(name, title, method, Line 514  def _method_command(name, title, method,
514                           helptext = helptext, icon = icon,                           helptext = helptext, icon = icon,
515                           sensitive = sensitive))                           sensitive = sensitive))
516    
517    def make_check_current_tool(toolname):
518        """Return a function that tests if the currently active tool is toolname
519    
520        The returned function can be called with the context and returns
521        true iff the currently active tool's name is toolname. It's directly
522        usable as the 'checked' callback of a command.
523        """
524        def check_current_tool(context, name=toolname):
525            return context.mainwindow.canvas.CurrentTool() == name
526        return check_current_tool
527    
528  def _tool_command(name, title, method, toolname, helptext = "",  def _tool_command(name, title, method, toolname, helptext = "",
529                    icon = ""):                    icon = ""):
530      """Add a tool command"""      """Add a tool command"""
     def check_current_tool(context, name=toolname):  
         return context.mainwindow.canvas.CurrentTool() == name  
531      registry.Add(Command(name, title, call_method, args=(method,),      registry.Add(Command(name, title, call_method, args=(method,),
532                           helptext = helptext, icon = icon,                           helptext = helptext, icon = icon,
533                           checked = check_current_tool))                           checked = make_check_current_tool(toolname)))
534    
535  def _has_selected_layer(context):  def _has_selected_layer(context):
536      """Return true if a layer is selected in the context"""      """Return true if a layer is selected in the context"""
537      return context.mainwindow.has_selected_layer()      return context.mainwindow.has_selected_layer()
538    
539    def _has_tree_window_shown(context):
540        """Return true if the tree window is shown"""
541        return context.mainwindow.get_open_dialog("session_tree") is None
542    
543  # File menu  # File menu
544  _method_command("new_session", "&New Session", "NewSession")  _method_command("new_session", "&New Session", "NewSession")
545  _method_command("open_session", "&Open Session", "OpenSession")  _method_command("open_session", "&Open Session", "OpenSession")
546  _method_command("save_session", "&Save Session", "SaveSession")  _method_command("save_session", "&Save Session", "SaveSession")
547  _method_command("save_session_as", "Save Session &As", "SaveSessionAs")  _method_command("save_session_as", "Save Session &As", "SaveSessionAs")
548  _method_command("show_session_tree", "Show Session &Tree", "ShowSessionTree")  _method_command("show_session_tree", "Show Session &Tree", "ShowSessionTree",
549                    sensitive = _has_tree_window_shown)
550  _method_command("exit", "&Exit", "Exit")  _method_command("exit", "&Exit", "Exit")
551    
552  # Help menu  # Help menu

Legend:
Removed from v.222  
changed lines
  Added in v.281

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26