/[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 879 by jonathan, Fri May 9 16:33:10 2003 UTC revision 1094 by bh, Wed May 28 18:59:46 2003 UTC
# Line 2  Line 2 
2  # Authors:  # Authors:
3  # Jan-Oliver Wagner <[email protected]>  # Jan-Oliver Wagner <[email protected]>
4  # Bernhard Herzog <[email protected]>  # Bernhard Herzog <[email protected]>
5    # Frank Koormann <[email protected]>
6  #  #
7  # This program is free software under the GPL (>=v2)  # This program is free software under the GPL (>=v2)
8  # Read the file COPYING coming with Thuban for details.  # Read the file COPYING coming with Thuban for details.
# Line 16  __ThubanVersion__ = "0.2" #"$THUBAN_0_2$ Line 17  __ThubanVersion__ = "0.2" #"$THUBAN_0_2$
17  #__BuildDate__ = "$Date$"  #__BuildDate__ = "$Date$"
18    
19  import os  import os
20    import copy
21    
22  from wxPython.wx import *  from wxPython.wx import *
23    from wxPython.wx import __version__ as wxPython_version
24    
25    from wxPython.lib.dialogs import wxMultipleChoiceDialog
26    
27  import Thuban  import Thuban
28    import Thuban.version
29    
30  from Thuban import _  from Thuban import _
31  from Thuban.Model.session import create_empty_session  from Thuban.Model.session import create_empty_session
32  from Thuban.Model.layer import Layer  from Thuban.Model.layer import Layer, RasterLayer
 from Thuban.Model.color import Color  
 from Thuban.Model.proj import Projection  
33    
34  import view  import view
35  import tree  import tree
 import proj4dialog  
36  import tableview, identifyview  import tableview, identifyview
37  from Thuban.UI.classifier import Classifier  from Thuban.UI.classifier import Classifier
38  import legend  import legend
# Line 61  class MainWindow(DockFrame): Line 65  class MainWindow(DockFrame):
65      # implemented in the __getattr__ method.      # implemented in the __getattr__ method.
66      delegated_methods = {"SelectLayer": "canvas",      delegated_methods = {"SelectLayer": "canvas",
67                           "SelectShapes": "canvas",                           "SelectShapes": "canvas",
68                             "SelectedLayer": "canvas",
69                           "SelectedShapes": "canvas",                           "SelectedShapes": "canvas",
70                           }                           }
71    
# Line 100  class MainWindow(DockFrame): Line 105  class MainWindow(DockFrame):
105    
106          self.init_dialogs()          self.init_dialogs()
107    
108          EVT_CLOSE(self, self._OnClose)          EVT_CLOSE(self, self.OnClose)
109    
110      def Subscribe(self, channel, *args):      def Subscribe(self, channel, *args):
111          """Subscribe a function to a message channel.          """Subscribe a function to a message channel.
# Line 359  class MainWindow(DockFrame): Line 364  class MainWindow(DockFrame):
364                  d.Close()                  d.Close()
365    
366      def NewSession(self):      def NewSession(self):
367          self.save_modified_session()          if self.save_modified_session() != wxID_CANCEL:
368          self.prepare_new_session()              self.prepare_new_session()
369          self.application.SetSession(create_empty_session())              self.application.SetSession(create_empty_session())
370    
371      def OpenSession(self):      def OpenSession(self):
372          self.save_modified_session()          if self.save_modified_session() != wxID_CANCEL:
373          dlg = wxFileDialog(self, _("Open Session"), ".", "",              dlg = wxFileDialog(self, _("Open Session"), ".", "",
374                             "Thuban Session File (*.thuban)|*.thuban", wxOPEN)                                 "Thuban Session File (*.thuban)|*.thuban",
375          if dlg.ShowModal() == wxID_OK:                                 wxOPEN)
376              self.prepare_new_session()              if dlg.ShowModal() == wxID_OK:
377              self.application.OpenSession(dlg.GetPath())                  self.prepare_new_session()
378          dlg.Destroy()                  self.application.OpenSession(dlg.GetPath())
379                dlg.Destroy()
380    
381      def SaveSession(self):      def SaveSession(self):
382          if self.application.session.filename == None:          if self.application.session.filename == None:
# Line 390  class MainWindow(DockFrame): Line 396  class MainWindow(DockFrame):
396      def Exit(self):      def Exit(self):
397          self.Close(False)          self.Close(False)
398    
399      def _OnClose(self, event):      def OnClose(self, event):
400          result = self.save_modified_session(can_veto = event.CanVeto())          result = self.save_modified_session(can_veto = event.CanVeto())
401          if result == wxID_CANCEL:          if result == wxID_CANCEL:
402              event.Veto()              event.Veto()
# Line 399  class MainWindow(DockFrame): Line 405  class MainWindow(DockFrame):
405              # wx's destroy event, but that isn't implemented for wxGTK              # wx's destroy event, but that isn't implemented for wxGTK
406              # yet.              # yet.
407              self.canvas.Unsubscribe(VIEW_POSITION, self.view_position_changed)              self.canvas.Unsubscribe(VIEW_POSITION, self.view_position_changed)
408              DockFrame._OnClose(self, event)              DockFrame.OnClose(self, event)
409                for dlg in self.dialogs.values():
410                    dlg.Destroy()
411                self.canvas.Destroy()
412              self.Destroy()              self.Destroy()
413    
414      def SetMap(self, map):      def SetMap(self, map):
# Line 432  class MainWindow(DockFrame): Line 441  class MainWindow(DockFrame):
441    
442      def About(self):      def About(self):
443          self.RunMessageBox(_("About"),          self.RunMessageBox(_("About"),
444                             _("Thuban v%s\n"                             _("Thuban %s\n"
445                              #"Build Date: %s\n"                              #"Build Date: %s\n"
446                              "\n"                              "using:\n"
447                                "  %s\n"
448                                "  %s\n\n"
449                              "Thuban is a program for\n"                              "Thuban is a program for\n"
450                              "exploring geographic data.\n"                              "exploring geographic data.\n"
451                              "Copyright (C) 2001-2003 Intevation GmbH.\n"                              "Copyright (C) 2001-2003 Intevation GmbH.\n"
452                              "Thuban is licensed under the GNU GPL"                              "Thuban is licensed under the GNU GPL"
453                             % __ThubanVersion__), #__BuildDate__)),                              % (Thuban.version.longversion,
454                                   "wxPython %s" % wxPython_version,
455                                   "Python %d.%d.%d" % sys.version_info[:3]
456                                  )),
457    #                           % __ThubanVersion__), #__BuildDate__)),
458                             wxOK | wxICON_INFORMATION)                             wxOK | wxICON_INFORMATION)
459    
460      def AddLayer(self):      def AddLayer(self):
# Line 448  class MainWindow(DockFrame): Line 463  class MainWindow(DockFrame):
463          if dlg.ShowModal() == wxID_OK:          if dlg.ShowModal() == wxID_OK:
464              filename = dlg.GetPath()              filename = dlg.GetPath()
465              title = os.path.splitext(os.path.basename(filename))[0]              title = os.path.splitext(os.path.basename(filename))[0]
             store = self.application.Session().OpenShapefile(filename)  
             layer = Layer(title, store)  
466              map = self.canvas.Map()              map = self.canvas.Map()
467              has_layers = map.HasLayers()              has_layers = map.HasLayers()
468              try:              try:
469                  map.AddLayer(layer)                  store = self.application.Session().OpenShapefile(filename)
470              except IOError:              except IOError:
471                  # the layer couldn't be opened                  # the layer couldn't be opened
472                  self.RunMessageBox(_("Add Layer"),                  self.RunMessageBox(_("Add Layer"),
473                                     _("Can't open the file '%s'.") % filename)                                     _("Can't open the file '%s'.") % filename)
474              else:              else:
475                    layer = Layer(title, store)
476                    map.AddLayer(layer)
477                    if not has_layers:
478                        # if we're adding a layer to an empty map, fit the
479                        # new map to the window
480                        self.canvas.FitMapToWindow()
481            dlg.Destroy()
482    
483        def AddRasterLayer(self):
484            dlg = wxFileDialog(self, _("Select an image file"), ".", "", "*.*",
485                               wxOPEN)
486            if dlg.ShowModal() == wxID_OK:
487                filename = dlg.GetPath()
488                title = os.path.splitext(os.path.basename(filename))[0]
489                map = self.canvas.Map()
490                has_layers = map.HasLayers()
491                try:
492                    layer = RasterLayer(title, filename)
493                except IOError:
494                    # the layer couldn't be opened
495                    self.RunMessageBox(_("Add Image Layer"),
496                                       _("Can't open the file '%s'.") % filename)
497                else:
498                    map.AddLayer(layer)
499                  if not has_layers:                  if not has_layers:
500                      # if we're adding a layer to an empty map, fit the                      # if we're adding a layer to an empty map, fit the
501                      # new map to the window                      # new map to the window
# Line 512  class MainWindow(DockFrame): Line 549  class MainWindow(DockFrame):
549          layer = self.current_layer()          layer = self.current_layer()
550          if layer is not None:          if layer is not None:
551              layer.SetVisible(0)              layer.SetVisible(0)
552            
553      def ShowLayer(self):      def ShowLayer(self):
554          layer = self.current_layer()          layer = self.current_layer()
555          if layer is not None:          if layer is not None:
556              layer.SetVisible(1)              layer.SetVisible(1)
557    
558        def DuplicateLayer(self):
559            """Ceate a new layer above the selected layer with the same shapestore
560            """
561            layer = self.current_layer()
562            if layer is not None and hasattr(layer, "ShapeStore"):
563                new_layer = Layer(_("Copy of `%s'") % layer.Title(),
564                                  layer.ShapeStore(),
565                                  projection = layer.GetProjection())
566                new_classification = copy.deepcopy(layer.GetClassification())
567                new_layer.SetClassification(new_classification)
568                self.Map().AddLayer(new_layer)
569    
570        def CanDuplicateLayer(self):
571            """Return whether the DuplicateLayer method can create a duplicate"""
572            layer = self.current_layer()
573            return layer is not None and hasattr(layer, "ShapeStore")
574    
575      def LayerShowTable(self):      def LayerShowTable(self):
576          layer = self.current_layer()          layer = self.current_layer()
577          if layer is not None:          if layer is not None:
# Line 526  class MainWindow(DockFrame): Line 580  class MainWindow(DockFrame):
580              dialog = self.get_open_dialog(name)              dialog = self.get_open_dialog(name)
581              if dialog is None:              if dialog is None:
582                  dialog = tableview.LayerTableFrame(self, name,                  dialog = tableview.LayerTableFrame(self, name,
583                                                 _("Table: %s") % layer.Title(),                                           _("Layer Table: %s") % layer.Title(),
584                                                     layer, table)                                           layer, table)
585                  self.add_dialog(name, dialog)                  self.add_dialog(name, dialog)
586                  dialog.Show(true)                  dialog.Show(True)
587              else:              else:
588                  # FIXME: bring dialog to front here                  # FIXME: bring dialog to front here
589                  pass                  pass
# Line 584  class MainWindow(DockFrame): Line 638  class MainWindow(DockFrame):
638          dialog.Raise()          dialog.Raise()
639    
640      def LayerJoinTable(self):      def LayerJoinTable(self):
641          print "LayerJoinTable"          layer = self.canvas.SelectedLayer()
642            if layer is not None:
643                dlg = JoinDialog(self, _("Join Layer with Table"),
644                                 self.application.session,
645                                 layer = layer)
646                dlg.ShowModal()
647    
648      def LayerUnjoinTable(self):      def LayerUnjoinTable(self):
649          print "LayerUnjoinTable"          layer = self.canvas.SelectedLayer()
650            if layer is not None:
651                orig_store = layer.ShapeStore().OrigShapeStore()
652                if orig_store:
653                    layer.SetShapeStore(orig_store)
654    
655      def ShowLegend(self):      def ShowLegend(self):
656          if not self.LegendShown():          if not self.LegendShown():
# Line 613  class MainWindow(DockFrame): Line 676  class MainWindow(DockFrame):
676          return dialog is not None and dialog.IsShown()          return dialog is not None and dialog.IsShown()
677    
678      def TableOpen(self):      def TableOpen(self):
         print "TableOpen"  
679          dlg = wxFileDialog(self, _("Open Table"), ".", "",          dlg = wxFileDialog(self, _("Open Table"), ".", "",
680                             "DBF Files (*.dbf)|*.dbf|" +                             _("DBF Files (*.dbf)") + "|*.dbf|" +
681                             "CSV Files (*.csv)|*.csv|" +                             #_("CSV Files (*.csv)") + "|*.csv|" +
682                             "All Files (*.*)|*.*",                             _("All Files (*.*)") + "|*.*",
683                             wxOPEN)                             wxOPEN)
684          if dlg.ShowModal() == wxID_OK:          if dlg.ShowModal() == wxID_OK:
685              #self.application.session.OpenTable(dlg.GetPath())              filename = dlg.GetPath()
686              pass              dlg.Destroy()
687                try:
688          dlg.Destroy()                  table = self.application.session.OpenTableFile(filename)
689                except IOError:
690                    # the layer couldn't be opened
691                    self.RunMessageBox(_("Open Table"),
692                                       _("Can't open the file '%s'.") % filename)
693                else:
694                    self.ShowTableView(table)
695    
696      def TableClose(self):      def TableClose(self):
697          print "TableClose"          tables = self.application.session.UnreferencedTables()
698    
699            lst = [(t.Title(), t) for t in tables]
700            lst.sort()
701            titles = [i[0] for i in lst]
702            dlg = wxMultipleChoiceDialog(self, _("Pick the tables to close:"),
703                                         _("Close Table"), titles,
704                                         size = (400, 300),
705                                         style = wxDEFAULT_DIALOG_STYLE |
706                                                 wxRESIZE_BORDER)
707            if dlg.ShowModal() == wxID_OK:
708                for i in dlg.GetValue():
709                    self.application.session.RemoveTable(lst[i][1])
710    
711    
712      def TableShow(self):      def TableShow(self):
713          print "TableShow"          """Offer a multi-selection dialog for tables to be displayed
714    
715            The windows for the selected tables are opened or brought to
716            the front.
717            """
718            tables = self.application.session.Tables()
719    
720      def TableHide(self):          lst = [(t.Title(), t) for t in tables]
721          print "TableHide"          lst.sort()
722            titles = [i[0] for i in lst]
723            dlg = wxMultipleChoiceDialog(self, _("Pick the table to show:"),
724                                         _("Show Table"), titles,
725                                         size = (400,300),
726                                         style = wxDEFAULT_DIALOG_STYLE |
727                                                 wxRESIZE_BORDER)
728            if (dlg.ShowModal() == wxID_OK):
729                for i in dlg.GetValue():
730                    # XXX: if the table belongs to a layer, open a
731                    # LayerTableFrame instead of QueryTableFrame
732                    self.ShowTableView(lst[i][1])
733    
734      def TableJoin(self):      def TableJoin(self):
         print "TableJoin"  
735          dlg = JoinDialog(self, _("Join Tables"), self.application.session)          dlg = JoinDialog(self, _("Join Tables"), self.application.session)
736          if dlg.ShowModal() == wxID_OK:          dlg.ShowModal()
737              print "OK"  
738        def ShowTableView(self, table):
739            """Open a table view for the table and optionally"""
740            name = "table_view%d" % id(table)
741            dialog = self.get_open_dialog(name)
742            if dialog is None:
743                dialog = tableview.QueryTableFrame(self, name,
744                                                   _("Table: %s") % table.Title(),
745                                                   table)
746                self.add_dialog(name, dialog)
747                dialog.Show(True)
748            # FIXME: else bring dialog to front
749    
750      def ZoomInTool(self):      def ZoomInTool(self):
751          self.canvas.ZoomInTool()          self.canvas.ZoomInTool()
# Line 665  class MainWindow(DockFrame): Line 772  class MainWindow(DockFrame):
772      def FullSelectionExtent(self):      def FullSelectionExtent(self):
773          self.canvas.FitSelectedToWindow()          self.canvas.FitSelectedToWindow()
774    
775        def ExportMap(self):
776            self.canvas.Export()
777    
778      def PrintMap(self):      def PrintMap(self):
779          self.canvas.Print()          self.canvas.Print()
780    
# Line 816  _method_command("layer_full_extent", _(" Line 926  _method_command("layer_full_extent", _("
926  _method_command("selected_full_extent", _("&Full selection extent"), "FullSelectionExtent",  _method_command("selected_full_extent", _("&Full selection extent"), "FullSelectionExtent",
927                 helptext = _("Full Selection Extent"), icon = "fullselextent",                 helptext = _("Full Selection Extent"), icon = "fullselextent",
928                sensitive = _has_selected_shapes)                sensitive = _has_selected_shapes)
929    _method_command("map_export", _("E&xport"), "ExportMap",
930                        helptext = _("Export the map to file"))
931  _method_command("map_print", _("Prin&t"), "PrintMap",  _method_command("map_print", _("Prin&t"), "PrintMap",
932                  helptext = _("Print the map"))                  helptext = _("Print the map"))
933  _method_command("map_rename", _("&Rename..."), "RenameMap",  _method_command("map_rename", _("&Rename..."), "RenameMap",
934                  helptext = _("Rename the map"))                  helptext = _("Rename the map"))
935  _method_command("layer_add", _("&Add Layer..."), "AddLayer",  _method_command("layer_add", _("&Add Layer..."), "AddLayer",
936                  helptext = _("Add a new layer to active map"))                  helptext = _("Add a new layer to active map"))
937    _method_command("rasterlayer_add", _("&Add Image Layer..."), "AddRasterLayer",
938                    helptext = _("Add a new image layer to active map"))
939  _method_command("layer_remove", _("&Remove Layer"), "RemoveLayer",  _method_command("layer_remove", _("&Remove Layer"), "RemoveLayer",
940                  helptext = _("Remove selected layer(s)"),                  helptext = _("Remove selected layer(s)"),
941                  sensitive = _can_remove_layer)                  sensitive = _can_remove_layer)
# Line 829  _method_command("layer_remove", _("&Remo Line 943  _method_command("layer_remove", _("&Remo
943  # Layer menu  # Layer menu
944  _method_command("layer_projection", _("Pro&jection..."), "LayerProjection",  _method_command("layer_projection", _("Pro&jection..."), "LayerProjection",
945                  sensitive = _has_selected_layer)                  sensitive = _has_selected_layer)
946    _method_command("layer_duplicate", _("&Duplicate"), "DuplicateLayer",
947                    helptext = _("Duplicate selected layer(s)"),
948              sensitive = lambda context: context.mainwindow.CanDuplicateLayer())
949  _method_command("layer_raise", _("&Raise"), "RaiseLayer",  _method_command("layer_raise", _("&Raise"), "RaiseLayer",
950                  helptext = _("Raise selected layer(s)"),                  helptext = _("Raise selected layer(s)"),
951                  sensitive = _has_selected_layer)                  sensitive = _has_selected_layer)
# Line 848  _method_command("layer_properties", _("& Line 965  _method_command("layer_properties", _("&
965                  sensitive = _has_selected_layer)                  sensitive = _has_selected_layer)
966  _method_command("layer_jointable", _("&Join Table..."), "LayerJoinTable",  _method_command("layer_jointable", _("&Join Table..."), "LayerJoinTable",
967                  sensitive = _has_selected_layer)                  sensitive = _has_selected_layer)
968    
969    def _can_unjoin(context):
970        """Return whether the Layer/Unjoin command can be executed.
971    
972        This is the case if a layer is selected and that layer has a
973        shapestore that has an original shapestore.
974        """
975        layer = context.mainwindow.SelectedLayer()
976        if layer is None:
977            return 0
978        getstore = getattr(layer, "ShapeStore", None)
979        if getstore is not None:
980            return getstore().OrigShapeStore() is not None
981        else:
982            return 0
983  _method_command("layer_unjointable", _("&Unjoin Table..."), "LayerUnjoinTable",  _method_command("layer_unjointable", _("&Unjoin Table..."), "LayerUnjoinTable",
984                  sensitive = _has_selected_layer)                  sensitive = _can_unjoin)
985    
986  # Table menu  # Table menu
987  _method_command("table_open", _("&Open..."), "TableOpen")  _method_command("table_open", _("&Open..."), "TableOpen")
988  _method_command("table_close", _("&Close"), "TableClose")  _method_command("table_close", _("&Close"), "TableClose",
989           sensitive = lambda context: bool(context.session.UnreferencedTables()))
990  _method_command("table_show", _("&Show"), "TableShow")  _method_command("table_show", _("&Show"), "TableShow")
 _method_command("table_hide", _("&Hide"), "TableHide")  
991  _method_command("table_join", _("&Join..."), "TableJoin")  _method_command("table_join", _("&Join..."), "TableJoin")
992    
993  # the menu structure  #  Export only under Windows ...
994  main_menu = Menu("<main>", "<main>",  map_menu = ["layer_add", "rasterlayer_add", "layer_remove", "map_rename",
                  [Menu("file", _("&File"),  
                        ["new_session", "open_session", None,  
                         "save_session", "save_session_as", None,  
                         "toggle_session_tree", None,  
                         "exit"]),  
                   Menu("map", _("&Map"),  
                        ["layer_add", "layer_remove", "map_rename",  
995                          None,                          None,
996                          "map_projection",                          "map_projection",
997                          None,                          None,
# Line 879  main_menu = Menu("<main>", "<main>", Line 1004  main_menu = Menu("<main>", "<main>",
1004                          "map_identify_tool", "map_label_tool",                          "map_identify_tool", "map_label_tool",
1005                          None,                          None,
1006                          "toggle_legend",                          "toggle_legend",
1007                          None,                          None]
1008                          "map_print"]),  if wxPlatform == '__WXMSW__':
1009        map_menu.append("map_export")
1010    map_menu.append("map_print")
1011    
1012    # the menu structure
1013    main_menu = Menu("<main>", "<main>",
1014                     [Menu("file", _("&File"),
1015                           ["new_session", "open_session", None,
1016                            "save_session", "save_session_as", None,
1017                            "toggle_session_tree", None,
1018                            "exit"]),
1019                      Menu("map", _("&Map"), map_menu),
1020                    Menu("layer", _("&Layer"),                    Menu("layer", _("&Layer"),
1021                          ["layer_raise", "layer_lower",                          ["layer_raise", "layer_lower",
1022                          None,                          None,
1023                          "layer_show", "layer_hide",                          "layer_show", "layer_hide",
1024                          None,                          None,
1025                            "layer_duplicate",
1026                            None,
1027                          "layer_projection",                          "layer_projection",
1028                          None,                          None,
1029                          "layer_show_table",                          "layer_show_table",
# Line 896  main_menu = Menu("<main>", "<main>", Line 1034  main_menu = Menu("<main>", "<main>",
1034                    Menu("table", _("&Table"),                    Menu("table", _("&Table"),
1035                         ["table_open", "table_close",                         ["table_open", "table_close",
1036                         None,                         None,
1037                         "table_show", "table_hide",                         "table_show",
1038                         None,                         None,
1039                         "table_join"]),                         "table_join"]),
1040                    Menu("help", _("&Help"),                    Menu("help", _("&Help"),

Legend:
Removed from v.879  
changed lines
  Added in v.1094

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26