1 |
# Copyright (c) 2003 by Intevation GmbH |
# Copyright (c) 2003 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Jonathan Coles <[email protected]> |
# Jonathan Coles <[email protected]> |
4 |
|
# Frank Koormann <[email protected]> |
5 |
# |
# |
6 |
# This program is free software under the GPL (>=v2) |
# This program is free software under the GPL (>=v2) |
7 |
# Read the file COPYING coming with Thuban for details. |
# Read the file COPYING coming with Thuban for details. |
61 |
# originally generate by wxGlade |
# originally generate by wxGlade |
62 |
self.panel_1 = wxPanel(self, -1) |
self.panel_1 = wxPanel(self, -1) |
63 |
self.panel_edit = wxPanel(self, -1) |
self.panel_edit = wxPanel(self, -1) |
|
self.panel_buttons = wxPanel(self, -1) |
|
64 |
self.label_5 = wxStaticText(self.panel_1, -1, |
self.label_5 = wxStaticText(self.panel_1, -1, |
65 |
_("Available Projections:")) |
_("Available Projections:")) |
66 |
|
|
67 |
|
# Projection List specific actions (Import/Export/Remove) |
68 |
|
self.button_import = wxButton(self.panel_1, ID_PROJ_IMPORT, |
69 |
|
_("Import...")) |
70 |
|
self.button_export = wxButton(self.panel_1, ID_PROJ_EXPORT, |
71 |
|
_("Export...")) |
72 |
|
self.button_remove = wxButton(self.panel_1, ID_PROJ_REMOVE, |
73 |
|
_("Remove")) |
74 |
|
|
75 |
|
# The Projection List |
76 |
self.availprojs = wxListBox(self.panel_1, ID_PROJ_AVAIL, |
self.availprojs = wxListBox(self.panel_1, ID_PROJ_AVAIL, |
77 |
style=wxLB_EXTENDED|wxLB_SORT) |
style=wxLB_EXTENDED|wxLB_SORT) |
78 |
self.projfilepath = wxStaticText(self.panel_1, -1, "") |
self.projfilepath = wxStaticText(self.panel_1, -1, "") |
79 |
|
|
80 |
|
# Projection Specific Entries (Name/Projection) |
81 |
self.label_2 = wxStaticText(self.panel_edit, -1, _("Name:")) |
self.label_2 = wxStaticText(self.panel_edit, -1, _("Name:")) |
82 |
self.projname = wxTextCtrl(self.panel_edit, ID_PROJ_PROJNAME, "") |
self.projname = wxTextCtrl(self.panel_edit, ID_PROJ_PROJNAME, "") |
83 |
self.label_3 = wxStaticText(self.panel_edit, -1, _("Projection:")) |
self.label_3 = wxStaticText(self.panel_edit, -1, _("Projection:")) |
84 |
self.projchoice = wxChoice(self.panel_edit, ID_PROJ_PROJCHOICE) |
self.projchoice = wxChoice(self.panel_edit, ID_PROJ_PROJCHOICE) |
85 |
self.button_import = wxButton(self.panel_1, ID_PROJ_IMPORT, |
|
86 |
_("Import...")) |
# Projection Specific actions (New/Save/Add) |
|
self.button_export = wxButton(self.panel_1, ID_PROJ_EXPORT, |
|
|
_("Export...")) |
|
|
self.button_remove = wxButton(self.panel_1, ID_PROJ_REMOVE, _("Remove")) |
|
87 |
self.button_new = wxButton(self.panel_edit, ID_PROJ_NEW, _("New")) |
self.button_new = wxButton(self.panel_edit, ID_PROJ_NEW, _("New")) |
|
self.button_save = wxButton(self.panel_edit, ID_PROJ_SAVE,_("Save")) |
|
88 |
self.button_add = wxButton(self.panel_edit, ID_PROJ_ADDTOLIST, |
self.button_add = wxButton(self.panel_edit, ID_PROJ_ADDTOLIST, |
89 |
_("Add to List")) |
_("Add to List")) |
90 |
self.button_try = wxButton(self.panel_buttons, wxID_APPLY, _("Try")) |
self.button_save = wxButton(self.panel_edit, ID_PROJ_SAVE,_("Update")) |
91 |
self.button_revert = wxButton(self.panel_buttons, ID_PROJ_REVERT, |
|
92 |
|
# Main Action buttons (Try/Revert/OK/Close) |
93 |
|
self.button_try = wxButton(self, wxID_APPLY, _("Try")) |
94 |
|
self.button_revert = wxButton(self, ID_PROJ_REVERT, |
95 |
_("Revert")) |
_("Revert")) |
96 |
self.button_ok = wxButton(self.panel_buttons, wxID_OK, _("OK")) |
self.button_ok = wxButton(self, wxID_OK, _("OK")) |
97 |
self.button_ok.SetDefault() |
self.button_ok.SetDefault() |
98 |
self.button_close = wxButton(self.panel_buttons, wxID_CANCEL, |
self.button_close = wxButton(self, wxID_CANCEL, |
99 |
_("Close")) |
_("Close")) |
100 |
|
|
101 |
self.__set_properties() |
self.__set_properties() |
324 |
self.button_import.Enable(True) |
self.button_import.Enable(True) |
325 |
self.button_export.Enable(False) |
self.button_export.Enable(False) |
326 |
self.button_remove.Enable(False) |
self.button_remove.Enable(False) |
327 |
|
self.button_save.Enable(False) |
328 |
|
|
329 |
elif len(sel) == 1: |
elif len(sel) == 1: |
330 |
|
|
479 |
self.availprojs.Clear() |
self.availprojs.Clear() |
480 |
|
|
481 |
# |
# |
|
# We add the current projection to the list first so that |
|
|
# we are sure that it's at index 0. That way we can |
|
|
# set the selection with confidence. The problem is the |
|
|
# the list is automatically sorted when an item is appended |
|
|
# and the index of where it was inserted is not returned. |
|
|
# |
|
|
proj = self.receiver.GetProjection() |
|
|
if proj is not None: |
|
|
self.availprojs.Append(_("%s (current)") % proj.GetName(), |
|
|
[proj, None]) |
|
|
if selectCurrent: |
|
|
self.availprojs.SetSelection(0) |
|
|
self.availprojs.SetFirstItem(0) |
|
|
|
|
|
# |
|
482 |
# the list can never be empty. there will always be |
# the list can never be empty. there will always be |
483 |
# at least this one item |
# at least this one item |
484 |
# |
# |
485 |
self.availprojs.Append("<None>", (None, None)) |
self.availprojs.Append("<None>", (None, None)) |
486 |
|
|
|
# proj is only None when <None> should be selected |
|
|
if proj is None and selectCurrent: |
|
|
self.availprojs.SetSelection(0) |
|
|
self.availprojs.SetFirstItem(0) |
|
|
|
|
487 |
projfile = GetSystemProjFiles() |
projfile = GetSystemProjFiles() |
488 |
projfile = projfile[0] |
projfile = projfile[0] |
489 |
for proj in projfile.GetProjections(): |
for proj in projfile.GetProjections(): |
499 |
for proj, name, clazz in self.projPanels: |
for proj, name, clazz in self.projPanels: |
500 |
self.projchoice.Append(name, [clazz, None]) |
self.projchoice.Append(name, [clazz, None]) |
501 |
|
|
502 |
|
# |
503 |
|
# We add the current projection to the list at last. |
504 |
|
# Since the list is resorted immediately a following FindString() |
505 |
|
# determines the index correctly. |
506 |
|
# |
507 |
|
proj = self.receiver.GetProjection() |
508 |
|
if proj is not None: |
509 |
|
proj_item = _("%s (current)") % proj.GetName() |
510 |
|
self.availprojs.Append(proj_item, [proj, None]) |
511 |
|
if selectCurrent: |
512 |
|
self.availprojs.SetSelection( |
513 |
|
self.availprojs.FindString(proj_item) |
514 |
|
) |
515 |
|
else: |
516 |
|
if selectCurrent: |
517 |
|
self.availprojs.SetSelection( |
518 |
|
self.availprojs.FindString("<None>") |
519 |
|
) |
520 |
|
|
521 |
|
|
522 |
def __set_properties(self): |
def __set_properties(self): |
523 |
|
|
524 |
#self.availprojs.SetSelection(0) |
#self.availprojs.SetSelection(0) |
534 |
self.topBox = wxBoxSizer(wxVERTICAL) |
self.topBox = wxBoxSizer(wxVERTICAL) |
535 |
self.sizer_panel = wxBoxSizer(wxVERTICAL) |
self.sizer_panel = wxBoxSizer(wxVERTICAL) |
536 |
sizer_6 = wxBoxSizer(wxHORIZONTAL) |
sizer_6 = wxBoxSizer(wxHORIZONTAL) |
537 |
|
self.sizer_mainbttns = wxBoxSizer(wxHORIZONTAL) |
538 |
self.sizer_mainctrls = wxBoxSizer(wxHORIZONTAL) |
self.sizer_mainctrls = wxBoxSizer(wxHORIZONTAL) |
539 |
self.sizer_edit = wxStaticBoxSizer(wxStaticBox(self.panel_edit, -1, _("Edit")), wxHORIZONTAL) |
self.sizer_edit = wxStaticBoxSizer(wxStaticBox(self.panel_edit, -1, _("Edit")), wxHORIZONTAL) |
540 |
sizer_11 = wxBoxSizer(wxVERTICAL) |
sizer_11 = wxBoxSizer(wxVERTICAL) |
565 |
sizer_14.Add(self.projchoice, 1, wxALL|wxEXPAND|wxADJUST_MINSIZE, 4) |
sizer_14.Add(self.projchoice, 1, wxALL|wxEXPAND|wxADJUST_MINSIZE, 4) |
566 |
self.sizer_projctrls.Add(sizer_14, 0, wxEXPAND, 0) |
self.sizer_projctrls.Add(sizer_14, 0, wxEXPAND, 0) |
567 |
self.sizer_edit.Add(self.sizer_projctrls, 1, wxEXPAND, 0) |
self.sizer_edit.Add(self.sizer_projctrls, 1, wxEXPAND, 0) |
568 |
sizer_11.Add(self.button_new, 0, wxALL|wxEXPAND, 4) |
sizer_11.Add(self.button_new, 0, wxALL, 4) |
569 |
sizer_11.Add(self.button_save, 0, wxALL|wxEXPAND, 4) |
sizer_11.Add(self.button_add, 0, wxALL, 4) |
570 |
sizer_11.Add(self.button_add, 0, wxALL|wxEXPAND, 4) |
sizer_11.Add(20, 20, 0, wxEXPAND, 0) |
571 |
|
sizer_11.Add(self.button_save, 0, wxALL|wxALIGN_BOTTOM, 4) |
572 |
self.sizer_edit.Add(sizer_11, 0, wxALL|wxEXPAND, 4) |
self.sizer_edit.Add(sizer_11, 0, wxALL|wxEXPAND, 4) |
573 |
|
|
574 |
sizer_6.Add(20, 20, 1, wxEXPAND, 0) |
sizer_6.Add(self.button_try, 0, wxRIGHT| wxEXPAND, 10) |
575 |
sizer_6.Add(self.button_try, 0, wxALL, 4) |
sizer_6.Add(self.button_revert, 0, wxRIGHT| wxEXPAND, 10) |
576 |
sizer_6.Add(20, 20, 1, 0, 0) |
sizer_6.Add(self.button_ok, 0, wxRIGHT| wxEXPAND, 10) |
577 |
sizer_6.Add(self.button_revert, 0, wxALL, 4) |
sizer_6.Add(self.button_close, 0, wxRIGHT| wxEXPAND, 10) |
|
sizer_6.Add(20, 20, 1, 0, 0) |
|
|
sizer_6.Add(self.button_ok, 0, wxALL, 4) |
|
|
sizer_6.Add(20, 20, 1, 0, 0) |
|
|
sizer_6.Add(self.button_close, 0, wxALL, 4) |
|
|
sizer_6.Add(20, 20, 1, wxEXPAND, 0) |
|
578 |
|
|
579 |
self.panel_1.SetAutoLayout(1) |
self.panel_1.SetAutoLayout(1) |
580 |
self.panel_1.SetSizer(grid_sizer_1) |
self.panel_1.SetSizer(grid_sizer_1) |
586 |
self.sizer_edit.Fit(self.panel_edit) |
self.sizer_edit.Fit(self.panel_edit) |
587 |
self.sizer_edit.SetSizeHints(self.panel_edit) |
self.sizer_edit.SetSizeHints(self.panel_edit) |
588 |
|
|
|
self.panel_buttons.SetAutoLayout(1) |
|
|
self.panel_buttons.SetSizer(sizer_6) |
|
|
sizer_6.Fit(self.panel_buttons) |
|
|
sizer_6.SetSizeHints(self.panel_buttons) |
|
|
|
|
589 |
self.sizer_mainctrls.Add(self.panel_1, 0, |
self.sizer_mainctrls.Add(self.panel_1, 0, |
590 |
wxALL|wxEXPAND|wxADJUST_MINSIZE, 0) |
wxALL|wxEXPAND|wxADJUST_MINSIZE, 0) |
591 |
self.sizer_mainctrls.Add(self.panel_edit, 1, |
self.sizer_mainctrls.Add(self.panel_edit, 1, |
592 |
wxALL|wxEXPAND|wxADJUST_MINSIZE, 0) |
wxALL|wxEXPAND|wxADJUST_MINSIZE, 0) |
593 |
|
|
594 |
|
self.sizer_mainbttns.Add(sizer_6, 0, |
595 |
|
wxALL|wxEXPAND|wxADJUST_MINSIZE, 10) |
596 |
|
|
597 |
self.topBox.Add(self.sizer_mainctrls, 1, wxALL|wxEXPAND, 4) |
self.topBox.Add(self.sizer_mainctrls, 1, wxALL|wxEXPAND, 4) |
598 |
self.topBox.Add(self.panel_buttons, 0, wxEXPAND, 0) |
self.topBox.Add(self.sizer_mainbttns, 0, wxALIGN_RIGHT|wxBOTTOM, 0) |
599 |
|
|
600 |
self.SetAutoLayout(1) |
self.SetAutoLayout(1) |
601 |
self.SetSizer(self.topBox) |
self.SetSizer(self.topBox) |
630 |
|
|
631 |
panelSizer = wxBoxSizer(wxVERTICAL) |
panelSizer = wxBoxSizer(wxVERTICAL) |
632 |
|
|
|
if childPanel is not None: |
|
|
panelSizer.Add(childPanel, 0, wxEXPAND, 0) |
|
|
|
|
633 |
sizer = wxBoxSizer(wxHORIZONTAL) |
sizer = wxBoxSizer(wxHORIZONTAL) |
634 |
sizer.Add(wxStaticText(self, -1, _("Ellipsoid:")), 0, wxALL, 4) |
sizer.Add(wxStaticText(self, -1, _("Ellipsoid:")), 0, |
635 |
|
wxALL|wxALIGN_CENTER_VERTICAL, 4) |
636 |
sizer.Add(self.__ellps, 1, wxALL|wxEXPAND|wxADJUST_MINSIZE, 4) |
sizer.Add(self.__ellps, 1, wxALL|wxEXPAND|wxADJUST_MINSIZE, 4) |
637 |
panelSizer.Add(sizer, 0, wxALL|wxEXPAND, 4) |
panelSizer.Add(sizer, 0, wxALL|wxEXPAND, 4) |
638 |
|
|
639 |
|
if childPanel is not None: |
640 |
|
panelSizer.Add(childPanel, 0, wxEXPAND, 0) |
641 |
|
|
642 |
self.SetAutoLayout(1) |
self.SetAutoLayout(1) |
643 |
self.SetSizer(panelSizer) |
self.SetSizer(panelSizer) |
644 |
panelSizer.Fit(self) |
panelSizer.Fit(self) |
704 |
|
|
705 |
self.__latitude = wxTextCtrl(self, ID_TMPANEL_LAT) |
self.__latitude = wxTextCtrl(self, ID_TMPANEL_LAT) |
706 |
self.__longitude = wxTextCtrl(self, ID_TMPANEL_LONG) |
self.__longitude = wxTextCtrl(self, ID_TMPANEL_LONG) |
707 |
|
self.__scale = wxTextCtrl(self, ID_TMPANEL_SCALE) |
708 |
self.__falseEast = wxTextCtrl(self, ID_TMPANEL_FASLE_EAST) |
self.__falseEast = wxTextCtrl(self, ID_TMPANEL_FASLE_EAST) |
709 |
self.__falseNorth = wxTextCtrl(self, ID_TMPANEL_FALSE_NORTH) |
self.__falseNorth = wxTextCtrl(self, ID_TMPANEL_FALSE_NORTH) |
|
self.__scale = wxTextCtrl(self, ID_TMPANEL_SCALE) |
|
710 |
|
|
711 |
self._DoLayout() |
self._DoLayout() |
712 |
|
|
895 |
def __init__(self, parent, receiver): |
def __init__(self, parent, receiver): |
896 |
ProjPanel.__init__(self, parent) |
ProjPanel.__init__(self, parent) |
897 |
|
|
898 |
self.__choices = [(_("Radians"), "1"), |
self.__choices = [(_("Degrees"), "0.017453"), |
899 |
(_("Degrees"), "0.017453")] |
(_("Radians"), "1")] |
900 |
|
|
901 |
self.__scale = wxChoice(self, -1) |
self.__scale = wxChoice(self, -1) |
902 |
for choice, value in self.__choices: |
for choice, value in self.__choices: |
930 |
sizer = wxBoxSizer(wxHORIZONTAL) |
sizer = wxBoxSizer(wxHORIZONTAL) |
931 |
|
|
932 |
sizer.Add(wxStaticText(self, -1, _("Source Data is in: ")), |
sizer.Add(wxStaticText(self, -1, _("Source Data is in: ")), |
933 |
0, wxALL, 4) |
0, wxALL|wxALIGN_CENTER_VERTICAL, 4) |
934 |
sizer.Add(self.__scale, 1, wxEXPAND|wxALL, 4) |
sizer.Add(self.__scale, 1, wxEXPAND|wxALL, 4) |
935 |
|
|
936 |
self.__scale.SetSelection(0) |
self.__scale.SetSelection(0) |