[5809313] | 1 | // |
---|
[156dc16] | 2 | // mainfrm.cc |
---|
[5809313] | 3 | // |
---|
| 4 | // Main frame handling for Aven. |
---|
| 5 | // |
---|
[b72f4b5] | 6 | // Copyright (C) 2000-2002,2005,2006 Mark R. Shinwell |
---|
[469485f] | 7 | // Copyright (C) 2001-2003,2004,2005,2006 Olly Betts |
---|
[887c26e] | 8 | // Copyright (C) 2005 Martin Green |
---|
[5809313] | 9 | // |
---|
| 10 | // This program is free software; you can redistribute it and/or modify |
---|
| 11 | // it under the terms of the GNU General Public License as published by |
---|
| 12 | // the Free Software Foundation; either version 2 of the License, or |
---|
| 13 | // (at your option) any later version. |
---|
| 14 | // |
---|
| 15 | // This program is distributed in the hope that it will be useful, |
---|
| 16 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | // GNU General Public License for more details. |
---|
| 19 | // |
---|
| 20 | // You should have received a copy of the GNU General Public License |
---|
| 21 | // along with this program; if not, write to the Free Software |
---|
[5940815] | 22 | // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
[5809313] | 23 | // |
---|
| 24 | |
---|
[cbfa50d] | 25 | #ifdef HAVE_CONFIG_H |
---|
| 26 | #include <config.h> |
---|
| 27 | #endif |
---|
| 28 | |
---|
[6bec10c] | 29 | #include "cavernlog.h" |
---|
[5809313] | 30 | #include "mainfrm.h" |
---|
| 31 | #include "aven.h" |
---|
[6e65d9e] | 32 | #include "aboutdlg.h" |
---|
[706b033] | 33 | |
---|
[93c3f97] | 34 | #include "message.h" |
---|
[706b033] | 35 | #include "img.h" |
---|
[156dc16] | 36 | #include "namecmp.h" |
---|
[ce403f1] | 37 | #include "printwx.h" |
---|
[045e2af] | 38 | #include "filename.h" |
---|
[e577f89] | 39 | #include "useful.h" |
---|
[706b033] | 40 | |
---|
[2d9ed8ad] | 41 | #include <wx/confbase.h> |
---|
[f302cbaa] | 42 | #include <wx/filename.h> |
---|
[ee41e88] | 43 | #include <wx/image.h> |
---|
[0580c6a] | 44 | #include <wx/imaglist.h> |
---|
[b88b171] | 45 | #include <wx/process.h> |
---|
[0580c6a] | 46 | #include <wx/regex.h> |
---|
[203d2a7] | 47 | |
---|
[5809313] | 48 | #include <float.h> |
---|
[63dc4eb] | 49 | #include <functional> |
---|
[156dc16] | 50 | #include <stack> |
---|
[7a2e1ed] | 51 | #include <vector> |
---|
[0c76ad9] | 52 | |
---|
[0580c6a] | 53 | using namespace std; |
---|
[5809313] | 54 | |
---|
[b1de3e0] | 55 | class AvenSplitterWindow : public wxSplitterWindow { |
---|
| 56 | MainFrm *parent; |
---|
| 57 | |
---|
| 58 | public: |
---|
| 59 | AvenSplitterWindow(MainFrm *parent_) |
---|
[b4fe9fb] | 60 | : wxSplitterWindow(parent_, -1, wxDefaultPosition, wxDefaultSize, |
---|
| 61 | wxSP_3D | wxSP_LIVE_UPDATE), |
---|
| 62 | parent(parent_) |
---|
| 63 | { |
---|
[b1de3e0] | 64 | } |
---|
| 65 | |
---|
| 66 | void OnSplitterDClick(wxSplitterEvent &e) { |
---|
| 67 | parent->ToggleSidePanel(); |
---|
| 68 | } |
---|
[f433fda] | 69 | |
---|
[b1de3e0] | 70 | private: |
---|
| 71 | DECLARE_EVENT_TABLE() |
---|
| 72 | }; |
---|
| 73 | |
---|
| 74 | BEGIN_EVENT_TABLE(AvenSplitterWindow, wxSplitterWindow) |
---|
| 75 | EVT_SPLITTER_DCLICK(-1, AvenSplitterWindow::OnSplitterDClick) |
---|
| 76 | END_EVENT_TABLE() |
---|
| 77 | |
---|
[9521a42] | 78 | class EditMarkDlg : public wxDialog { |
---|
| 79 | wxTextCtrl * easting, * northing, * altitude; |
---|
[49ce5b0] | 80 | wxTextCtrl * angle, * tilt_angle, * scale, * time; |
---|
[9521a42] | 81 | public: |
---|
| 82 | EditMarkDlg(wxWindow* parent, const PresentationMark & p) |
---|
[a5e8ada] | 83 | : wxDialog(parent, 500, wxString(wxT("Edit Waypoint"))) |
---|
[9521a42] | 84 | { |
---|
[5627cbb] | 85 | easting = new wxTextCtrl(this, 601, wxString::Format(wxT("%.3f"), p.GetX())); |
---|
| 86 | northing = new wxTextCtrl(this, 602, wxString::Format(wxT("%.3f"), p.GetY())); |
---|
| 87 | altitude = new wxTextCtrl(this, 603, wxString::Format(wxT("%.3f"), p.GetZ())); |
---|
| 88 | angle = new wxTextCtrl(this, 604, wxString::Format(wxT("%.3f"), p.angle)); |
---|
| 89 | tilt_angle = new wxTextCtrl(this, 605, wxString::Format(wxT("%.3f"), p.tilt_angle)); |
---|
| 90 | scale = new wxTextCtrl(this, 606, wxString::Format(wxT("%.3f"), p.scale)); |
---|
[49ce5b0] | 91 | if (p.time > 0.0) { |
---|
[5627cbb] | 92 | time = new wxTextCtrl(this, 607, wxString::Format(wxT("%.3f"), p.time)); |
---|
[49ce5b0] | 93 | } else if (p.time < 0.0) { |
---|
[5627cbb] | 94 | time = new wxTextCtrl(this, 607, wxString::Format(wxT("*%.3f"), -p.time)); |
---|
[49ce5b0] | 95 | } else { |
---|
[5627cbb] | 96 | time = new wxTextCtrl(this, 607, wxT("0")); |
---|
[49ce5b0] | 97 | } |
---|
| 98 | |
---|
[9521a42] | 99 | wxBoxSizer * coords = new wxBoxSizer(wxHORIZONTAL); |
---|
[5627cbb] | 100 | coords->Add(new wxStaticText(this, 610, wxT("(")), 0, wxALIGN_CENTRE_VERTICAL); |
---|
[9521a42] | 101 | coords->Add(easting, 1); |
---|
[5627cbb] | 102 | coords->Add(new wxStaticText(this, 611, wxT(",")), 0, wxALIGN_CENTRE_VERTICAL); |
---|
[9521a42] | 103 | coords->Add(northing, 1); |
---|
[5627cbb] | 104 | coords->Add(new wxStaticText(this, 612, wxT(",")), 0, wxALIGN_CENTRE_VERTICAL); |
---|
[9521a42] | 105 | coords->Add(altitude, 1); |
---|
[5627cbb] | 106 | coords->Add(new wxStaticText(this, 613, wxT(")")), 0, wxALIGN_CENTRE_VERTICAL); |
---|
[9521a42] | 107 | wxBoxSizer* vert = new wxBoxSizer(wxVERTICAL); |
---|
| 108 | vert->Add(coords, 0, wxALL, 8); |
---|
| 109 | wxBoxSizer * r2 = new wxBoxSizer(wxHORIZONTAL); |
---|
[5627cbb] | 110 | r2->Add(new wxStaticText(this, 614, wxT("Bearing: ")), 0, wxALIGN_CENTRE_VERTICAL); |
---|
[9521a42] | 111 | r2->Add(angle); |
---|
| 112 | vert->Add(r2, 0, wxALL, 8); |
---|
| 113 | wxBoxSizer * r3 = new wxBoxSizer(wxHORIZONTAL); |
---|
[5627cbb] | 114 | r3->Add(new wxStaticText(this, 615, wxT("Elevation: ")), 0, wxALIGN_CENTRE_VERTICAL); |
---|
[9521a42] | 115 | r3->Add(tilt_angle); |
---|
| 116 | vert->Add(r3, 0, wxALL, 8); |
---|
| 117 | wxBoxSizer * r4 = new wxBoxSizer(wxHORIZONTAL); |
---|
[5627cbb] | 118 | r4->Add(new wxStaticText(this, 616, wxT("Scale: ")), 0, wxALIGN_CENTRE_VERTICAL); |
---|
[9521a42] | 119 | r4->Add(scale); |
---|
[5627cbb] | 120 | r4->Add(new wxStaticText(this, 617, wxT(" (unused in perspective view)")), |
---|
[9521a42] | 121 | 0, wxALIGN_CENTRE_VERTICAL); |
---|
| 122 | vert->Add(r4, 0, wxALL, 8); |
---|
| 123 | |
---|
| 124 | wxBoxSizer * r5 = new wxBoxSizer(wxHORIZONTAL); |
---|
[5627cbb] | 125 | r5->Add(new wxStaticText(this, 616, wxT("Time: ")), 0, wxALIGN_CENTRE_VERTICAL); |
---|
[49ce5b0] | 126 | r5->Add(time); |
---|
[5627cbb] | 127 | r5->Add(new wxStaticText(this, 617, wxT(" secs (0 = auto; *6 = 6 times auto)")), |
---|
[49ce5b0] | 128 | 0, wxALIGN_CENTRE_VERTICAL); |
---|
| 129 | vert->Add(r5, 0, wxALL, 8); |
---|
| 130 | |
---|
| 131 | wxBoxSizer * buttons = new wxBoxSizer(wxHORIZONTAL); |
---|
[5627cbb] | 132 | wxButton* cancel = new wxButton(this, wxID_CANCEL, wxT("Cancel")); |
---|
[49ce5b0] | 133 | buttons->Add(cancel, 0, wxALL, 8); |
---|
[5627cbb] | 134 | wxButton* ok = new wxButton(this, wxID_OK, wxT("OK")); |
---|
[9521a42] | 135 | ok->SetDefault(); |
---|
[49ce5b0] | 136 | buttons->Add(ok, 0, wxALL, 8); |
---|
| 137 | vert->Add(buttons, 0, wxALL|wxALIGN_RIGHT); |
---|
[9521a42] | 138 | |
---|
| 139 | SetAutoLayout(true); |
---|
| 140 | SetSizer(vert); |
---|
| 141 | |
---|
| 142 | vert->Fit(this); |
---|
| 143 | vert->SetSizeHints(this); |
---|
[128fac4] | 144 | } |
---|
[9521a42] | 145 | PresentationMark GetMark() const { |
---|
[d67450e] | 146 | double a, t, s, T; |
---|
[5627cbb] | 147 | Vector3 v(atof(easting->GetValue().char_str()), |
---|
| 148 | atof(northing->GetValue().char_str()), |
---|
| 149 | atof(altitude->GetValue().char_str())); |
---|
| 150 | a = atof(angle->GetValue().char_str()); |
---|
| 151 | t = atof(tilt_angle->GetValue().char_str()); |
---|
| 152 | s = atof(scale->GetValue().char_str()); |
---|
[49ce5b0] | 153 | wxString str = time->GetValue(); |
---|
| 154 | if (str[0u] == '*') str[0u] = '-'; |
---|
[5627cbb] | 155 | T = atof(str.char_str()); |
---|
[d67450e] | 156 | return PresentationMark(v, a, t, s, T); |
---|
[9521a42] | 157 | } |
---|
| 158 | |
---|
| 159 | private: |
---|
| 160 | DECLARE_EVENT_TABLE() |
---|
| 161 | }; |
---|
| 162 | |
---|
[3fdeb44d] | 163 | // Write a value without trailing zeros after the decimal point. |
---|
| 164 | static void write_double(double d, FILE * fh) { |
---|
| 165 | char buf[64]; |
---|
| 166 | sprintf(buf, "%.21f", d); |
---|
[c988ae4] | 167 | char * p = strchr(buf, ','); |
---|
| 168 | if (p) *p = '.'; |
---|
[3fdeb44d] | 169 | size_t l = strlen(buf); |
---|
| 170 | while (l > 1 && buf[l - 1] == '0') --l; |
---|
| 171 | if (l > 1 && buf[l - 1] == '.') --l; |
---|
| 172 | fwrite(buf, l, 1, fh); |
---|
| 173 | } |
---|
| 174 | |
---|
[1c6b20d7] | 175 | class AvenPresList : public wxListCtrl { |
---|
| 176 | MainFrm * mainfrm; |
---|
[1690fa9] | 177 | GfxCore * gfx; |
---|
[9521a42] | 178 | vector<PresentationMark> entries; |
---|
[1690fa9] | 179 | long current_item; |
---|
| 180 | bool modified; |
---|
[bd7607c] | 181 | bool force_save_as; |
---|
[1690fa9] | 182 | wxString filename; |
---|
[f433fda] | 183 | |
---|
[1690fa9] | 184 | public: |
---|
[1c6b20d7] | 185 | AvenPresList(MainFrm * mainfrm_, wxWindow * parent, GfxCore * gfx_) |
---|
[1690fa9] | 186 | : wxListCtrl(parent, listctrl_PRES, wxDefaultPosition, wxDefaultSize, |
---|
[9521a42] | 187 | wxLC_REPORT|wxLC_VIRTUAL), |
---|
[bd7607c] | 188 | mainfrm(mainfrm_), gfx(gfx_), current_item(-1), modified(false), |
---|
| 189 | force_save_as(true) |
---|
[1690fa9] | 190 | { |
---|
[5627cbb] | 191 | InsertColumn(0, wmsg(/*Easting*/378)); |
---|
| 192 | InsertColumn(1, wmsg(/*Northing*/379)); |
---|
| 193 | InsertColumn(2, wmsg(/*Altitude*/335)); |
---|
[1690fa9] | 194 | } |
---|
| 195 | |
---|
| 196 | void OnBeginLabelEdit(wxListEvent& event) { |
---|
| 197 | event.Veto(); // No editting allowed |
---|
| 198 | } |
---|
| 199 | void OnDeleteItem(wxListEvent& event) { |
---|
| 200 | long item = event.GetIndex(); |
---|
| 201 | if (current_item == item) { |
---|
| 202 | current_item = -1; |
---|
| 203 | } else if (current_item > item) { |
---|
| 204 | --current_item; |
---|
| 205 | } |
---|
[9521a42] | 206 | entries.erase(entries.begin() + item); |
---|
| 207 | SetItemCount(entries.size()); |
---|
[1690fa9] | 208 | modified = true; |
---|
| 209 | } |
---|
| 210 | void OnDeleteAllItems(wxListEvent& event) { |
---|
| 211 | entries.clear(); |
---|
[9521a42] | 212 | SetItemCount(entries.size()); |
---|
[5627cbb] | 213 | filename = wxString(); |
---|
[1690fa9] | 214 | modified = false; |
---|
[bd7607c] | 215 | force_save_as = true; |
---|
[1690fa9] | 216 | } |
---|
| 217 | void OnListKeyDown(wxListEvent& event) { |
---|
| 218 | switch (event.GetKeyCode()) { |
---|
| 219 | case WXK_DELETE: { |
---|
| 220 | long item = GetNextItem(-1, wxLIST_NEXT_ALL, |
---|
| 221 | wxLIST_STATE_SELECTED); |
---|
| 222 | while (item != -1) { |
---|
| 223 | DeleteItem(item); |
---|
| 224 | // - 1 because the indices were shifted by DeleteItem() |
---|
| 225 | item = GetNextItem(item - 1, wxLIST_NEXT_ALL, |
---|
| 226 | wxLIST_STATE_SELECTED); |
---|
| 227 | } |
---|
| 228 | break; |
---|
| 229 | } |
---|
| 230 | default: |
---|
[c8f929b] | 231 | //printf("event.GetIndex() = %ld %d\n", event.GetIndex(), event.GetKeyCode()); |
---|
[1690fa9] | 232 | event.Skip(); |
---|
| 233 | } |
---|
| 234 | } |
---|
| 235 | void OnActivated(wxListEvent& event) { |
---|
| 236 | // Jump to this view. |
---|
| 237 | long item = event.GetIndex(); |
---|
[9521a42] | 238 | gfx->SetView(entries[item]); |
---|
[1690fa9] | 239 | } |
---|
| 240 | void OnFocused(wxListEvent& event) { |
---|
| 241 | current_item = event.GetIndex(); |
---|
| 242 | } |
---|
[9521a42] | 243 | void OnRightClick(wxListEvent& event) { |
---|
| 244 | long item = event.GetIndex(); |
---|
| 245 | EditMarkDlg edit(mainfrm, entries[item]); |
---|
| 246 | if (edit.ShowModal() == wxID_OK) { |
---|
| 247 | entries[item] = edit.GetMark(); |
---|
| 248 | } |
---|
| 249 | } |
---|
[1690fa9] | 250 | void OnChar(wxKeyEvent& event) { |
---|
[c8f929b] | 251 | switch (event.GetKeyCode()) { |
---|
| 252 | case WXK_INSERT: |
---|
| 253 | if (event.m_controlDown) { |
---|
| 254 | if (current_item != -1 && |
---|
| 255 | size_t(current_item) < entries.size()) { |
---|
| 256 | AddMark(current_item, entries[current_item]); |
---|
| 257 | } |
---|
| 258 | } else { |
---|
| 259 | AddMark(current_item); |
---|
| 260 | } |
---|
| 261 | break; |
---|
| 262 | case WXK_DELETE: |
---|
| 263 | // Already handled in OnListKeyDown. |
---|
| 264 | break; |
---|
| 265 | case WXK_UP: case WXK_DOWN: |
---|
| 266 | event.Skip(); |
---|
| 267 | break; |
---|
| 268 | default: |
---|
| 269 | gfx->OnKeyPress(event); |
---|
[5e31bd2] | 270 | } |
---|
[1690fa9] | 271 | } |
---|
| 272 | void AddMark(long item = -1) { |
---|
| 273 | AddMark(item, gfx->GetView()); |
---|
| 274 | } |
---|
| 275 | void AddMark(long item, const PresentationMark & mark) { |
---|
[9521a42] | 276 | if (item == -1) item = entries.size(); |
---|
| 277 | entries.insert(entries.begin() + item, mark); |
---|
| 278 | SetItemCount(entries.size()); |
---|
[1690fa9] | 279 | modified = true; |
---|
| 280 | } |
---|
[9521a42] | 281 | virtual wxString OnGetItemText(long item, long column) const { |
---|
[5627cbb] | 282 | if (item < 0 || item >= (long)entries.size()) return wxString(); |
---|
[9521a42] | 283 | const PresentationMark & p = entries[item]; |
---|
| 284 | double v; |
---|
| 285 | switch (column) { |
---|
[d67450e] | 286 | case 0: v = p.GetX(); break; |
---|
| 287 | case 1: v = p.GetY(); break; |
---|
| 288 | case 2: v = p.GetZ(); break; |
---|
[9521a42] | 289 | #if 0 |
---|
| 290 | case 3: v = p.angle; break; |
---|
| 291 | case 4: v = p.tilt_angle; break; |
---|
| 292 | case 5: v = p.scale; break; |
---|
[49ce5b0] | 293 | case 6: v = p.time; break; |
---|
[9521a42] | 294 | #endif |
---|
[5627cbb] | 295 | default: return wxString(); |
---|
[9521a42] | 296 | } |
---|
[5627cbb] | 297 | return wxString::Format(wxT("%ld"), (long)v); |
---|
[9521a42] | 298 | } |
---|
[1690fa9] | 299 | void Save(bool use_default_name) { |
---|
| 300 | wxString fnm = filename; |
---|
[bd7607c] | 301 | if (!use_default_name || force_save_as) { |
---|
[1c6b20d7] | 302 | AvenAllowOnTop ontop(mainfrm); |
---|
[1690fa9] | 303 | #ifdef __WXMOTIF__ |
---|
[5627cbb] | 304 | wxString ext(wxT("*.fly")); |
---|
[1690fa9] | 305 | #else |
---|
[5627cbb] | 306 | wxString ext = wmsg(/*Aven presentations*/320); |
---|
| 307 | ext += wxT("|*.fly|"); |
---|
| 308 | ext += wmsg(/*All files*/208); |
---|
| 309 | ext += wxT("|"); |
---|
| 310 | ext += wxFileSelectorDefaultWildcardStr; |
---|
[1690fa9] | 311 | #endif |
---|
[5627cbb] | 312 | wxFileDialog dlg(this, wmsg(/*Select an output filename*/319), |
---|
| 313 | wxString(), fnm, ext, |
---|
| 314 | wxFD_SAVE|wxFD_OVERWRITE_PROMPT); |
---|
[1690fa9] | 315 | if (dlg.ShowModal() != wxID_OK) return; |
---|
| 316 | fnm = dlg.GetPath(); |
---|
| 317 | } |
---|
| 318 | |
---|
[d3172cc] | 319 | // FIXME: This should really use fn_str() - currently we probably can't |
---|
| 320 | // save to a Unicode path on wxmsw. |
---|
| 321 | FILE * fh_pres = fopen(fnm.char_str(), "w"); |
---|
[1690fa9] | 322 | if (!fh_pres) { |
---|
[5627cbb] | 323 | wxGetApp().ReportError(wxString::Format(wmsg(/*Error writing to file `%s'*/110), fnm.c_str())); |
---|
[1690fa9] | 324 | return; |
---|
| 325 | } |
---|
[9521a42] | 326 | vector<PresentationMark>::const_iterator i; |
---|
[1690fa9] | 327 | for (i = entries.begin(); i != entries.end(); ++i) { |
---|
| 328 | const PresentationMark &p = *i; |
---|
[d67450e] | 329 | write_double(p.GetX(), fh_pres); |
---|
[3fdeb44d] | 330 | putc(' ', fh_pres); |
---|
[d67450e] | 331 | write_double(p.GetY(), fh_pres); |
---|
[3fdeb44d] | 332 | putc(' ', fh_pres); |
---|
[d67450e] | 333 | write_double(p.GetZ(), fh_pres); |
---|
[3fdeb44d] | 334 | putc(' ', fh_pres); |
---|
| 335 | write_double(p.angle, fh_pres); |
---|
| 336 | putc(' ', fh_pres); |
---|
| 337 | write_double(p.tilt_angle, fh_pres); |
---|
| 338 | putc(' ', fh_pres); |
---|
| 339 | write_double(p.scale, fh_pres); |
---|
[49ce5b0] | 340 | if (p.time != 0.0) { |
---|
| 341 | putc(' ', fh_pres); |
---|
| 342 | write_double(p.time, fh_pres); |
---|
| 343 | } |
---|
[3fdeb44d] | 344 | putc('\n', fh_pres); |
---|
[1690fa9] | 345 | } |
---|
| 346 | fclose(fh_pres); |
---|
| 347 | filename = fnm; |
---|
| 348 | modified = false; |
---|
[bd7607c] | 349 | force_save_as = false; |
---|
| 350 | } |
---|
| 351 | void New(const wxString &fnm) { |
---|
| 352 | DeleteAllItems(); |
---|
[d3172cc] | 353 | wxFileName::SplitPath(fnm, NULL, NULL, &filename, NULL, wxPATH_NATIVE); |
---|
[5627cbb] | 354 | filename += wxT(".fly"); |
---|
[bd7607c] | 355 | force_save_as = true; |
---|
[1690fa9] | 356 | } |
---|
| 357 | bool Load(const wxString &fnm) { |
---|
[d3172cc] | 358 | // FIXME: This should really use fn_str() - currently we probably |
---|
| 359 | // can't save to a Unicode path on wxmsw. |
---|
| 360 | FILE * fh_pres = fopen(fnm.char_str(), "r"); |
---|
[9b540e6] | 361 | if (!fh_pres) { |
---|
| 362 | wxString m; |
---|
[5627cbb] | 363 | m.Printf(wmsg(/*Couldn't open file `%s'*/93), fnm.c_str()); |
---|
[9b540e6] | 364 | wxGetApp().ReportError(m); |
---|
| 365 | return false; |
---|
| 366 | } |
---|
[1690fa9] | 367 | DeleteAllItems(); |
---|
| 368 | long item = 0; |
---|
| 369 | while (!feof(fh_pres)) { |
---|
| 370 | char buf[4096]; |
---|
| 371 | size_t i = 0; |
---|
| 372 | while (i < sizeof(buf) - 1) { |
---|
| 373 | int ch = getc(fh_pres); |
---|
| 374 | if (ch == EOF || ch == '\n' || ch == '\r') break; |
---|
| 375 | buf[i++] = ch; |
---|
| 376 | } |
---|
| 377 | if (i) { |
---|
| 378 | buf[i] = 0; |
---|
[49ce5b0] | 379 | double x, y, z, a, t, s, T; |
---|
| 380 | int c = sscanf(buf, "%lf %lf %lf %lf %lf %lf %lf", &x, &y, &z, &a, &t, &s, &T); |
---|
| 381 | if (c < 6) { |
---|
[c988ae4] | 382 | char *p = buf; |
---|
| 383 | while ((p = strchr(p, '.'))) *p++ = ','; |
---|
| 384 | c = sscanf(buf, "%lf %lf %lf %lf %lf %lf %lf", &x, &y, &z, &a, &t, &s, &T); |
---|
| 385 | if (c < 6) { |
---|
| 386 | DeleteAllItems(); |
---|
[5627cbb] | 387 | wxGetApp().ReportError(wxString::Format(wmsg(/*Error in format of presentation file `%s'*/323), fnm.c_str())); |
---|
[c988ae4] | 388 | return false; |
---|
| 389 | } |
---|
[1690fa9] | 390 | } |
---|
[49ce5b0] | 391 | if (c == 6) T = 0; |
---|
[d67450e] | 392 | AddMark(item, PresentationMark(Vector3(x, y, z), a, t, s, T)); |
---|
[9b540e6] | 393 | ++item; |
---|
[1690fa9] | 394 | } |
---|
| 395 | } |
---|
| 396 | fclose(fh_pres); |
---|
| 397 | filename = fnm; |
---|
| 398 | modified = false; |
---|
[bd7607c] | 399 | force_save_as = false; |
---|
[1690fa9] | 400 | return true; |
---|
| 401 | } |
---|
| 402 | bool Modified() const { return modified; } |
---|
| 403 | bool Empty() const { return entries.empty(); } |
---|
| 404 | PresentationMark GetPresMark(int which) { |
---|
| 405 | long item = current_item; |
---|
| 406 | if (which == MARK_FIRST) { |
---|
| 407 | item = 0; |
---|
| 408 | } else if (which == MARK_NEXT) { |
---|
[9521a42] | 409 | ++item; |
---|
[128fac4] | 410 | } else if (which == MARK_PREV) { |
---|
| 411 | --item; |
---|
[1690fa9] | 412 | } |
---|
[128fac4] | 413 | if (item == -1 || item == (long)entries.size()) |
---|
| 414 | return PresentationMark(); |
---|
[1690fa9] | 415 | if (item != current_item) { |
---|
| 416 | // Move the focus |
---|
| 417 | if (current_item != -1) { |
---|
| 418 | wxListCtrl::SetItemState(current_item, wxLIST_STATE_FOCUSED, |
---|
| 419 | 0); |
---|
| 420 | } |
---|
| 421 | wxListCtrl::SetItemState(item, wxLIST_STATE_FOCUSED, |
---|
| 422 | wxLIST_STATE_FOCUSED); |
---|
| 423 | } |
---|
[9521a42] | 424 | return entries[item]; |
---|
[1690fa9] | 425 | } |
---|
| 426 | |
---|
| 427 | private: |
---|
| 428 | |
---|
[1c6b20d7] | 429 | DECLARE_NO_COPY_CLASS(AvenPresList) |
---|
[1690fa9] | 430 | DECLARE_EVENT_TABLE() |
---|
| 431 | }; |
---|
[f433fda] | 432 | |
---|
[9521a42] | 433 | BEGIN_EVENT_TABLE(EditMarkDlg, wxDialog) |
---|
| 434 | END_EVENT_TABLE() |
---|
| 435 | |
---|
[1c6b20d7] | 436 | BEGIN_EVENT_TABLE(AvenPresList, wxListCtrl) |
---|
| 437 | EVT_LIST_BEGIN_LABEL_EDIT(listctrl_PRES, AvenPresList::OnBeginLabelEdit) |
---|
| 438 | EVT_LIST_DELETE_ITEM(listctrl_PRES, AvenPresList::OnDeleteItem) |
---|
| 439 | EVT_LIST_DELETE_ALL_ITEMS(listctrl_PRES, AvenPresList::OnDeleteAllItems) |
---|
| 440 | EVT_LIST_KEY_DOWN(listctrl_PRES, AvenPresList::OnListKeyDown) |
---|
| 441 | EVT_LIST_ITEM_ACTIVATED(listctrl_PRES, AvenPresList::OnActivated) |
---|
| 442 | EVT_LIST_ITEM_FOCUSED(listctrl_PRES, AvenPresList::OnFocused) |
---|
[9521a42] | 443 | EVT_LIST_ITEM_RIGHT_CLICK(listctrl_PRES, AvenPresList::OnRightClick) |
---|
[1c6b20d7] | 444 | EVT_CHAR(AvenPresList::OnChar) |
---|
[1690fa9] | 445 | END_EVENT_TABLE() |
---|
| 446 | |
---|
[137bf99] | 447 | BEGIN_EVENT_TABLE(MainFrm, wxFrame) |
---|
[d1628e8e] | 448 | EVT_TEXT(textctrl_FIND, MainFrm::OnFind) |
---|
| 449 | EVT_TEXT_ENTER(textctrl_FIND, MainFrm::OnGotoFound) |
---|
| 450 | EVT_MENU(button_FIND, MainFrm::OnGotoFound) |
---|
[8e1a10e] | 451 | EVT_MENU(button_HIDE, MainFrm::OnHide) |
---|
[429465a] | 452 | EVT_UPDATE_UI(button_HIDE, MainFrm::OnHideUpdate) |
---|
[2a02de2] | 453 | |
---|
[137bf99] | 454 | EVT_MENU(menu_FILE_OPEN, MainFrm::OnOpen) |
---|
[ce403f1] | 455 | EVT_MENU(menu_FILE_PRINT, MainFrm::OnPrint) |
---|
| 456 | EVT_MENU(menu_FILE_PAGE_SETUP, MainFrm::OnPageSetup) |
---|
[045e2af] | 457 | EVT_MENU(menu_FILE_SCREENSHOT, MainFrm::OnScreenshot) |
---|
[0e6ee74] | 458 | // EVT_MENU(menu_FILE_PREFERENCES, MainFrm::OnFilePreferences) |
---|
[223f1ad] | 459 | EVT_MENU(menu_FILE_EXPORT, MainFrm::OnExport) |
---|
[137bf99] | 460 | EVT_MENU(menu_FILE_QUIT, MainFrm::OnQuit) |
---|
[732b9b0] | 461 | EVT_MENU_RANGE(wxID_FILE1, wxID_FILE9, MainFrm::OnMRUFile) |
---|
[137bf99] | 462 | |
---|
[1690fa9] | 463 | EVT_MENU(menu_PRES_NEW, MainFrm::OnPresNew) |
---|
| 464 | EVT_MENU(menu_PRES_OPEN, MainFrm::OnPresOpen) |
---|
| 465 | EVT_MENU(menu_PRES_SAVE, MainFrm::OnPresSave) |
---|
| 466 | EVT_MENU(menu_PRES_SAVE_AS, MainFrm::OnPresSaveAs) |
---|
| 467 | EVT_MENU(menu_PRES_MARK, MainFrm::OnPresMark) |
---|
[128fac4] | 468 | EVT_MENU(menu_PRES_FREWIND, MainFrm::OnPresFRewind) |
---|
| 469 | EVT_MENU(menu_PRES_REWIND, MainFrm::OnPresRewind) |
---|
| 470 | EVT_MENU(menu_PRES_REVERSE, MainFrm::OnPresReverse) |
---|
| 471 | EVT_MENU(menu_PRES_PLAY, MainFrm::OnPresPlay) |
---|
| 472 | EVT_MENU(menu_PRES_FF, MainFrm::OnPresFF) |
---|
| 473 | EVT_MENU(menu_PRES_FFF, MainFrm::OnPresFFF) |
---|
| 474 | EVT_MENU(menu_PRES_PAUSE, MainFrm::OnPresPause) |
---|
| 475 | EVT_MENU(menu_PRES_STOP, MainFrm::OnPresStop) |
---|
[6a4cdcb6] | 476 | EVT_MENU(menu_PRES_EXPORT_MOVIE, MainFrm::OnPresExportMovie) |
---|
[1690fa9] | 477 | |
---|
| 478 | EVT_UPDATE_UI(menu_PRES_NEW, MainFrm::OnPresNewUpdate) |
---|
| 479 | EVT_UPDATE_UI(menu_PRES_OPEN, MainFrm::OnPresOpenUpdate) |
---|
| 480 | EVT_UPDATE_UI(menu_PRES_SAVE, MainFrm::OnPresSaveUpdate) |
---|
| 481 | EVT_UPDATE_UI(menu_PRES_SAVE_AS, MainFrm::OnPresSaveAsUpdate) |
---|
| 482 | EVT_UPDATE_UI(menu_PRES_MARK, MainFrm::OnPresMarkUpdate) |
---|
[128fac4] | 483 | EVT_UPDATE_UI(menu_PRES_FREWIND, MainFrm::OnPresFRewindUpdate) |
---|
| 484 | EVT_UPDATE_UI(menu_PRES_REWIND, MainFrm::OnPresRewindUpdate) |
---|
| 485 | EVT_UPDATE_UI(menu_PRES_REVERSE, MainFrm::OnPresReverseUpdate) |
---|
| 486 | EVT_UPDATE_UI(menu_PRES_PLAY, MainFrm::OnPresPlayUpdate) |
---|
| 487 | EVT_UPDATE_UI(menu_PRES_FF, MainFrm::OnPresFFUpdate) |
---|
| 488 | EVT_UPDATE_UI(menu_PRES_FFF, MainFrm::OnPresFFFUpdate) |
---|
| 489 | EVT_UPDATE_UI(menu_PRES_PAUSE, MainFrm::OnPresPauseUpdate) |
---|
| 490 | EVT_UPDATE_UI(menu_PRES_STOP, MainFrm::OnPresStopUpdate) |
---|
[6a4cdcb6] | 491 | EVT_UPDATE_UI(menu_PRES_EXPORT_MOVIE, MainFrm::OnPresExportMovieUpdate) |
---|
[5ffa439] | 492 | |
---|
[137bf99] | 493 | EVT_CLOSE(MainFrm::OnClose) |
---|
[4b1fc48] | 494 | EVT_SET_FOCUS(MainFrm::OnSetFocus) |
---|
[137bf99] | 495 | |
---|
[7ebc3d1] | 496 | EVT_MENU(menu_ROTATION_TOGGLE, MainFrm::OnToggleRotation) |
---|
[137bf99] | 497 | EVT_MENU(menu_ROTATION_SPEED_UP, MainFrm::OnSpeedUp) |
---|
| 498 | EVT_MENU(menu_ROTATION_SLOW_DOWN, MainFrm::OnSlowDown) |
---|
| 499 | EVT_MENU(menu_ROTATION_REVERSE, MainFrm::OnReverseDirectionOfRotation) |
---|
| 500 | EVT_MENU(menu_ROTATION_STEP_CCW, MainFrm::OnStepOnceAnticlockwise) |
---|
| 501 | EVT_MENU(menu_ROTATION_STEP_CW, MainFrm::OnStepOnceClockwise) |
---|
| 502 | EVT_MENU(menu_ORIENT_MOVE_NORTH, MainFrm::OnMoveNorth) |
---|
| 503 | EVT_MENU(menu_ORIENT_MOVE_EAST, MainFrm::OnMoveEast) |
---|
| 504 | EVT_MENU(menu_ORIENT_MOVE_SOUTH, MainFrm::OnMoveSouth) |
---|
| 505 | EVT_MENU(menu_ORIENT_MOVE_WEST, MainFrm::OnMoveWest) |
---|
| 506 | EVT_MENU(menu_ORIENT_SHIFT_LEFT, MainFrm::OnShiftDisplayLeft) |
---|
| 507 | EVT_MENU(menu_ORIENT_SHIFT_RIGHT, MainFrm::OnShiftDisplayRight) |
---|
| 508 | EVT_MENU(menu_ORIENT_SHIFT_UP, MainFrm::OnShiftDisplayUp) |
---|
| 509 | EVT_MENU(menu_ORIENT_SHIFT_DOWN, MainFrm::OnShiftDisplayDown) |
---|
| 510 | EVT_MENU(menu_ORIENT_PLAN, MainFrm::OnPlan) |
---|
| 511 | EVT_MENU(menu_ORIENT_ELEVATION, MainFrm::OnElevation) |
---|
| 512 | EVT_MENU(menu_ORIENT_HIGHER_VP, MainFrm::OnHigherViewpoint) |
---|
| 513 | EVT_MENU(menu_ORIENT_LOWER_VP, MainFrm::OnLowerViewpoint) |
---|
| 514 | EVT_MENU(menu_ORIENT_ZOOM_IN, MainFrm::OnZoomIn) |
---|
| 515 | EVT_MENU(menu_ORIENT_ZOOM_OUT, MainFrm::OnZoomOut) |
---|
| 516 | EVT_MENU(menu_ORIENT_DEFAULTS, MainFrm::OnDefaults) |
---|
| 517 | EVT_MENU(menu_VIEW_SHOW_LEGS, MainFrm::OnShowSurveyLegs) |
---|
| 518 | EVT_MENU(menu_VIEW_SHOW_CROSSES, MainFrm::OnShowCrosses) |
---|
[fe444b8] | 519 | EVT_MENU(menu_VIEW_SHOW_ENTRANCES, MainFrm::OnShowEntrances) |
---|
| 520 | EVT_MENU(menu_VIEW_SHOW_FIXED_PTS, MainFrm::OnShowFixedPts) |
---|
| 521 | EVT_MENU(menu_VIEW_SHOW_EXPORTED_PTS, MainFrm::OnShowExportedPts) |
---|
[137bf99] | 522 | EVT_MENU(menu_VIEW_SHOW_NAMES, MainFrm::OnShowStationNames) |
---|
| 523 | EVT_MENU(menu_VIEW_SHOW_OVERLAPPING_NAMES, MainFrm::OnDisplayOverlappingNames) |
---|
[da6c802] | 524 | EVT_MENU(menu_VIEW_COLOUR_BY_DEPTH, MainFrm::OnColourByDepth) |
---|
[d4650b3] | 525 | EVT_MENU(menu_VIEW_COLOUR_BY_DATE, MainFrm::OnColourByDate) |
---|
[c61aa79] | 526 | EVT_MENU(menu_VIEW_COLOUR_BY_ERROR, MainFrm::OnColourByError) |
---|
[137bf99] | 527 | EVT_MENU(menu_VIEW_SHOW_SURFACE, MainFrm::OnShowSurface) |
---|
[c1cf79d] | 528 | EVT_MENU(menu_VIEW_GRID, MainFrm::OnViewGrid) |
---|
[f4c5932] | 529 | EVT_MENU(menu_VIEW_BOUNDING_BOX, MainFrm::OnViewBoundingBox) |
---|
[6abab84] | 530 | EVT_MENU(menu_VIEW_PERSPECTIVE, MainFrm::OnViewPerspective) |
---|
[d67450e] | 531 | EVT_MENU(menu_VIEW_SMOOTH_SHADING, MainFrm::OnViewSmoothShading) |
---|
[a517825] | 532 | EVT_MENU(menu_VIEW_TEXTURED, MainFrm::OnViewTextured) |
---|
[c60062d] | 533 | EVT_MENU(menu_VIEW_FOG, MainFrm::OnViewFog) |
---|
[db452ae] | 534 | EVT_MENU(menu_VIEW_SMOOTH_LINES, MainFrm::OnViewSmoothLines) |
---|
[b13aee4] | 535 | EVT_MENU(menu_VIEW_FULLSCREEN, MainFrm::OnViewFullScreen) |
---|
[33b2094] | 536 | EVT_MENU(menu_VIEW_SHOW_TUBES, MainFrm::OnToggleTubes) |
---|
[7a36b67] | 537 | EVT_MENU(menu_IND_COMPASS, MainFrm::OnViewCompass) |
---|
| 538 | EVT_MENU(menu_IND_CLINO, MainFrm::OnViewClino) |
---|
| 539 | EVT_MENU(menu_IND_DEPTH_BAR, MainFrm::OnToggleDepthbar) |
---|
| 540 | EVT_MENU(menu_IND_SCALE_BAR, MainFrm::OnToggleScalebar) |
---|
| 541 | EVT_MENU(menu_CTL_SIDE_PANEL, MainFrm::OnViewSidePanel) |
---|
| 542 | EVT_MENU(menu_CTL_METRIC, MainFrm::OnToggleMetric) |
---|
| 543 | EVT_MENU(menu_CTL_DEGREES, MainFrm::OnToggleDegrees) |
---|
[137bf99] | 544 | EVT_MENU(menu_CTL_REVERSE, MainFrm::OnReverseControls) |
---|
[1fd2edb] | 545 | EVT_MENU(menu_CTL_CANCEL_DIST_LINE, MainFrm::OnCancelDistLine) |
---|
[a87b1f7] | 546 | EVT_MENU(menu_HELP_ABOUT, MainFrm::OnAbout) |
---|
[137bf99] | 547 | |
---|
[ce403f1] | 548 | EVT_UPDATE_UI(menu_FILE_PRINT, MainFrm::OnPrintUpdate) |
---|
[045e2af] | 549 | EVT_UPDATE_UI(menu_FILE_SCREENSHOT, MainFrm::OnScreenshotUpdate) |
---|
[223f1ad] | 550 | EVT_UPDATE_UI(menu_FILE_EXPORT, MainFrm::OnExportUpdate) |
---|
[546a6f3] | 551 | EVT_UPDATE_UI(menu_ROTATION_TOGGLE, MainFrm::OnToggleRotationUpdate) |
---|
[137bf99] | 552 | EVT_UPDATE_UI(menu_ROTATION_SPEED_UP, MainFrm::OnSpeedUpUpdate) |
---|
| 553 | EVT_UPDATE_UI(menu_ROTATION_SLOW_DOWN, MainFrm::OnSlowDownUpdate) |
---|
| 554 | EVT_UPDATE_UI(menu_ROTATION_REVERSE, MainFrm::OnReverseDirectionOfRotationUpdate) |
---|
| 555 | EVT_UPDATE_UI(menu_ROTATION_STEP_CCW, MainFrm::OnStepOnceAnticlockwiseUpdate) |
---|
| 556 | EVT_UPDATE_UI(menu_ROTATION_STEP_CW, MainFrm::OnStepOnceClockwiseUpdate) |
---|
| 557 | EVT_UPDATE_UI(menu_ORIENT_MOVE_NORTH, MainFrm::OnMoveNorthUpdate) |
---|
| 558 | EVT_UPDATE_UI(menu_ORIENT_MOVE_EAST, MainFrm::OnMoveEastUpdate) |
---|
| 559 | EVT_UPDATE_UI(menu_ORIENT_MOVE_SOUTH, MainFrm::OnMoveSouthUpdate) |
---|
| 560 | EVT_UPDATE_UI(menu_ORIENT_MOVE_WEST, MainFrm::OnMoveWestUpdate) |
---|
| 561 | EVT_UPDATE_UI(menu_ORIENT_SHIFT_LEFT, MainFrm::OnShiftDisplayLeftUpdate) |
---|
| 562 | EVT_UPDATE_UI(menu_ORIENT_SHIFT_RIGHT, MainFrm::OnShiftDisplayRightUpdate) |
---|
| 563 | EVT_UPDATE_UI(menu_ORIENT_SHIFT_UP, MainFrm::OnShiftDisplayUpUpdate) |
---|
| 564 | EVT_UPDATE_UI(menu_ORIENT_SHIFT_DOWN, MainFrm::OnShiftDisplayDownUpdate) |
---|
| 565 | EVT_UPDATE_UI(menu_ORIENT_PLAN, MainFrm::OnPlanUpdate) |
---|
| 566 | EVT_UPDATE_UI(menu_ORIENT_ELEVATION, MainFrm::OnElevationUpdate) |
---|
| 567 | EVT_UPDATE_UI(menu_ORIENT_HIGHER_VP, MainFrm::OnHigherViewpointUpdate) |
---|
| 568 | EVT_UPDATE_UI(menu_ORIENT_LOWER_VP, MainFrm::OnLowerViewpointUpdate) |
---|
| 569 | EVT_UPDATE_UI(menu_ORIENT_ZOOM_IN, MainFrm::OnZoomInUpdate) |
---|
| 570 | EVT_UPDATE_UI(menu_ORIENT_ZOOM_OUT, MainFrm::OnZoomOutUpdate) |
---|
| 571 | EVT_UPDATE_UI(menu_ORIENT_DEFAULTS, MainFrm::OnDefaultsUpdate) |
---|
| 572 | EVT_UPDATE_UI(menu_VIEW_SHOW_LEGS, MainFrm::OnShowSurveyLegsUpdate) |
---|
| 573 | EVT_UPDATE_UI(menu_VIEW_SHOW_CROSSES, MainFrm::OnShowCrossesUpdate) |
---|
[fe444b8] | 574 | EVT_UPDATE_UI(menu_VIEW_SHOW_ENTRANCES, MainFrm::OnShowEntrancesUpdate) |
---|
| 575 | EVT_UPDATE_UI(menu_VIEW_SHOW_FIXED_PTS, MainFrm::OnShowFixedPtsUpdate) |
---|
| 576 | EVT_UPDATE_UI(menu_VIEW_SHOW_EXPORTED_PTS, MainFrm::OnShowExportedPtsUpdate) |
---|
[137bf99] | 577 | EVT_UPDATE_UI(menu_VIEW_SHOW_NAMES, MainFrm::OnShowStationNamesUpdate) |
---|
| 578 | EVT_UPDATE_UI(menu_VIEW_SHOW_SURFACE, MainFrm::OnShowSurfaceUpdate) |
---|
| 579 | EVT_UPDATE_UI(menu_VIEW_SHOW_OVERLAPPING_NAMES, MainFrm::OnDisplayOverlappingNamesUpdate) |
---|
[da6c802] | 580 | EVT_UPDATE_UI(menu_VIEW_COLOUR_BY_DEPTH, MainFrm::OnColourByDepthUpdate) |
---|
[d4650b3] | 581 | EVT_UPDATE_UI(menu_VIEW_COLOUR_BY_DATE, MainFrm::OnColourByDateUpdate) |
---|
[c61aa79] | 582 | EVT_UPDATE_UI(menu_VIEW_COLOUR_BY_ERROR, MainFrm::OnColourByErrorUpdate) |
---|
[c1cf79d] | 583 | EVT_UPDATE_UI(menu_VIEW_GRID, MainFrm::OnViewGridUpdate) |
---|
[f4c5932] | 584 | EVT_UPDATE_UI(menu_VIEW_BOUNDING_BOX, MainFrm::OnViewBoundingBoxUpdate) |
---|
[6abab84] | 585 | EVT_UPDATE_UI(menu_VIEW_PERSPECTIVE, MainFrm::OnViewPerspectiveUpdate) |
---|
[d67450e] | 586 | EVT_UPDATE_UI(menu_VIEW_SMOOTH_SHADING, MainFrm::OnViewSmoothShadingUpdate) |
---|
[a517825] | 587 | EVT_UPDATE_UI(menu_VIEW_TEXTURED, MainFrm::OnViewTexturedUpdate) |
---|
[c60062d] | 588 | EVT_UPDATE_UI(menu_VIEW_FOG, MainFrm::OnViewFogUpdate) |
---|
[db452ae] | 589 | EVT_UPDATE_UI(menu_VIEW_SMOOTH_LINES, MainFrm::OnViewSmoothLinesUpdate) |
---|
[b13aee4] | 590 | EVT_UPDATE_UI(menu_VIEW_FULLSCREEN, MainFrm::OnViewFullScreenUpdate) |
---|
[33b2094] | 591 | EVT_UPDATE_UI(menu_VIEW_SHOW_TUBES, MainFrm::OnToggleTubesUpdate) |
---|
[7a36b67] | 592 | EVT_UPDATE_UI(menu_IND_COMPASS, MainFrm::OnViewCompassUpdate) |
---|
| 593 | EVT_UPDATE_UI(menu_IND_CLINO, MainFrm::OnViewClinoUpdate) |
---|
| 594 | EVT_UPDATE_UI(menu_IND_DEPTH_BAR, MainFrm::OnToggleDepthbarUpdate) |
---|
| 595 | EVT_UPDATE_UI(menu_IND_SCALE_BAR, MainFrm::OnToggleScalebarUpdate) |
---|
| 596 | EVT_UPDATE_UI(menu_CTL_INDICATORS, MainFrm::OnIndicatorsUpdate) |
---|
| 597 | EVT_UPDATE_UI(menu_CTL_SIDE_PANEL, MainFrm::OnViewSidePanelUpdate) |
---|
| 598 | EVT_UPDATE_UI(menu_CTL_REVERSE, MainFrm::OnReverseControlsUpdate) |
---|
| 599 | EVT_UPDATE_UI(menu_CTL_CANCEL_DIST_LINE, MainFrm::OnCancelDistLineUpdate) |
---|
| 600 | EVT_UPDATE_UI(menu_CTL_METRIC, MainFrm::OnToggleMetricUpdate) |
---|
| 601 | EVT_UPDATE_UI(menu_CTL_DEGREES, MainFrm::OnToggleDegreesUpdate) |
---|
[5809313] | 602 | END_EVENT_TABLE() |
---|
| 603 | |
---|
[63dc4eb] | 604 | class LabelCmp : public greater<const LabelInfo*> { |
---|
[2f36993] | 605 | int separator; |
---|
[156dc16] | 606 | public: |
---|
[2f36993] | 607 | LabelCmp(int separator_) : separator(separator_) {} |
---|
[156dc16] | 608 | bool operator()(const LabelInfo* pt1, const LabelInfo* pt2) { |
---|
[2f36993] | 609 | return name_cmp(pt1->GetText(), pt2->GetText(), separator) < 0; |
---|
[156dc16] | 610 | } |
---|
| 611 | }; |
---|
| 612 | |
---|
[63dc4eb] | 613 | class LabelPlotCmp : public greater<const LabelInfo*> { |
---|
[2f36993] | 614 | int separator; |
---|
[291ca5d] | 615 | public: |
---|
[2f36993] | 616 | LabelPlotCmp(int separator_) : separator(separator_) {} |
---|
[291ca5d] | 617 | bool operator()(const LabelInfo* pt1, const LabelInfo* pt2) { |
---|
[5a24583] | 618 | int n = pt1->get_flags() - pt2->get_flags(); |
---|
[291ca5d] | 619 | if (n) return n > 0; |
---|
[5a24583] | 620 | wxString l1 = pt1->GetText().AfterLast(separator); |
---|
| 621 | wxString l2 = pt2->GetText().AfterLast(separator); |
---|
[f11f2af] | 622 | n = name_cmp(l1, l2, separator); |
---|
| 623 | if (n) return n < 0; |
---|
[2a94924] | 624 | // Prefer non-2-nodes... |
---|
| 625 | // FIXME; implement |
---|
[f11f2af] | 626 | // if leaf names are the same, prefer shorter labels as we can |
---|
| 627 | // display more of them |
---|
[5a24583] | 628 | n = pt1->GetText().length() - pt2->GetText().length(); |
---|
[f11f2af] | 629 | if (n) return n < 0; |
---|
[2a94924] | 630 | // make sure that we don't ever compare different labels as equal |
---|
[5a24583] | 631 | return name_cmp(pt1->GetText(), pt2->GetText(), separator) < 0; |
---|
[291ca5d] | 632 | } |
---|
| 633 | }; |
---|
| 634 | |
---|
[f6fe808] | 635 | #if wxUSE_DRAG_AND_DROP |
---|
[5901b62] | 636 | class DnDFile : public wxFileDropTarget { |
---|
| 637 | public: |
---|
| 638 | DnDFile(MainFrm *parent) : m_Parent(parent) { } |
---|
| 639 | virtual bool OnDropFiles(wxCoord, wxCoord, |
---|
| 640 | const wxArrayString &filenames); |
---|
| 641 | |
---|
| 642 | private: |
---|
| 643 | MainFrm * m_Parent; |
---|
| 644 | }; |
---|
| 645 | |
---|
| 646 | bool |
---|
| 647 | DnDFile::OnDropFiles(wxCoord, wxCoord, const wxArrayString &filenames) |
---|
| 648 | { |
---|
| 649 | // Load a survey file by drag-and-drop. |
---|
| 650 | assert(filenames.GetCount() > 0); |
---|
| 651 | |
---|
| 652 | if (filenames.GetCount() != 1) { |
---|
[5627cbb] | 653 | wxGetApp().ReportError(wmsg(/*You may only view one 3d file at a time.*/336)); |
---|
[5901b62] | 654 | return FALSE; |
---|
| 655 | } |
---|
[421b7d2] | 656 | |
---|
[5901b62] | 657 | m_Parent->OpenFile(filenames[0]); |
---|
| 658 | return TRUE; |
---|
| 659 | } |
---|
[f6fe808] | 660 | #endif |
---|
[5901b62] | 661 | |
---|
[137bf99] | 662 | MainFrm::MainFrm(const wxString& title, const wxPoint& pos, const wxSize& size) : |
---|
[d7d7fa7] | 663 | wxFrame(NULL, 101, title, pos, size, wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE), // wxNO_FULL_REPAINT_ON_RESIZE is 0 in wx >= 2.6 |
---|
[429465a] | 664 | m_Gfx(NULL), m_NumEntrances(0), m_NumFixedPts(0), m_NumExportedPts(0), |
---|
[eef68f9] | 665 | m_NumHighlighted(0), m_HasUndergroundLegs(false), m_HasSurfaceLegs(false), |
---|
[c61aa79] | 666 | m_HasErrorInformation(false), m_IsExtendedElevation(false) |
---|
[9c3d91e] | 667 | #ifdef PREFDLG |
---|
| 668 | , m_PrefsDlg(NULL) |
---|
| 669 | #endif |
---|
[5809313] | 670 | { |
---|
[5627cbb] | 671 | icon_path = wxString(msg_cfgpth(), wxConvUTF8); |
---|
[95fa391] | 672 | icon_path += wxCONFIG_PATH_SEPARATOR; |
---|
[5627cbb] | 673 | icon_path += wxT("icons"); |
---|
[95fa391] | 674 | icon_path += wxCONFIG_PATH_SEPARATOR; |
---|
| 675 | |
---|
[cfd6c44] | 676 | #ifdef _WIN32 |
---|
[003d953] | 677 | // The peculiar name is so that the icon is the first in the file |
---|
[b1de3e0] | 678 | // (required by Microsoft Windows for this type of icon) |
---|
[5627cbb] | 679 | SetIcon(wxIcon(wxT("aaaaaAven"))); |
---|
[95fa391] | 680 | #else |
---|
[469485f] | 681 | SetIcon(wxIcon(icon_path + APP_IMAGE, wxBITMAP_TYPE_PNG)); |
---|
[cfd6c44] | 682 | #endif |
---|
| 683 | |
---|
[9d3d8cc] | 684 | CreateMenuBar(); |
---|
| 685 | CreateToolBar(); |
---|
[7c29c976] | 686 | CreateStatusBar(2, wxST_SIZEGRIP); |
---|
[9d3d8cc] | 687 | CreateSidePanel(); |
---|
[f433fda] | 688 | |
---|
[7c29c976] | 689 | int widths[2] = { -1 /* variable width */, -1 }; |
---|
| 690 | GetStatusBar()->SetStatusWidths(2, widths); |
---|
[9d3d8cc] | 691 | |
---|
[0580c6a] | 692 | #ifdef __X__ // wxMotif or wxX11 |
---|
[9d3d8cc] | 693 | int x; |
---|
| 694 | int y; |
---|
| 695 | GetSize(&x, &y); |
---|
| 696 | // X seems to require a forced resize. |
---|
| 697 | SetSize(-1, -1, x, y); |
---|
| 698 | #endif |
---|
| 699 | |
---|
[0edb0d0] | 700 | #if wxUSE_DRAG_AND_DROP |
---|
[5901b62] | 701 | SetDropTarget(new DnDFile(this)); |
---|
[f6fe808] | 702 | #endif |
---|
[9d3d8cc] | 703 | } |
---|
| 704 | |
---|
| 705 | MainFrm::~MainFrm() |
---|
| 706 | { |
---|
| 707 | } |
---|
| 708 | |
---|
| 709 | void MainFrm::CreateMenuBar() |
---|
| 710 | { |
---|
| 711 | // Create the menus and the menu bar. |
---|
[137bf99] | 712 | |
---|
| 713 | wxMenu* filemenu = new wxMenu; |
---|
[003d953] | 714 | filemenu->Append(menu_FILE_OPEN, GetTabMsg(/*@Open...##Ctrl+O*/220)); |
---|
[137bf99] | 715 | filemenu->AppendSeparator(); |
---|
[ce403f1] | 716 | filemenu->Append(menu_FILE_PRINT, GetTabMsg(/*@Print...##Ctrl+P*/380)); |
---|
| 717 | filemenu->Append(menu_FILE_PAGE_SETUP, GetTabMsg(/*P@age Setup...*/381)); |
---|
| 718 | filemenu->AppendSeparator(); |
---|
| 719 | filemenu->Append(menu_FILE_SCREENSHOT, GetTabMsg(/*@Screenshot...*/201)); |
---|
[4c46260] | 720 | filemenu->Append(menu_FILE_EXPORT, GetTabMsg(/*@Export as...*/382)); |
---|
[b72f4b5] | 721 | #ifndef __WXMAC__ |
---|
| 722 | // On wxMac the "Quit" menu item will be moved elsewhere, so we suppress |
---|
| 723 | // this separator. |
---|
[223f1ad] | 724 | filemenu->AppendSeparator(); |
---|
[b72f4b5] | 725 | #endif |
---|
[223f1ad] | 726 | filemenu->Append(menu_FILE_QUIT, GetTabMsg(/*@Quit##Ctrl+Q*/221)); |
---|
[137bf99] | 727 | |
---|
[cf8c84b] | 728 | m_history.UseMenu(filemenu); |
---|
| 729 | m_history.Load(*wxConfigBase::Get()); |
---|
| 730 | |
---|
[137bf99] | 731 | wxMenu* rotmenu = new wxMenu; |
---|
[4c46260] | 732 | rotmenu->AppendCheckItem(menu_ROTATION_TOGGLE, GetTabMsg(/*@Auto-Rotate##Space*/231)); |
---|
[137bf99] | 733 | rotmenu->AppendSeparator(); |
---|
[026ae3c] | 734 | rotmenu->Append(menu_ROTATION_SPEED_UP, GetTabMsg(/*Speed @Up*/232)); |
---|
[c40038a] | 735 | rotmenu->Append(menu_ROTATION_SLOW_DOWN, GetTabMsg(/*Slow @Down*/233)); |
---|
[137bf99] | 736 | rotmenu->AppendSeparator(); |
---|
[026ae3c] | 737 | rotmenu->Append(menu_ROTATION_REVERSE, GetTabMsg(/*@Reverse Direction*/234)); |
---|
[137bf99] | 738 | rotmenu->AppendSeparator(); |
---|
[4b1fc48] | 739 | rotmenu->Append(menu_ROTATION_STEP_CCW, GetTabMsg(/*Step Once @Anticlockwise*/235)); |
---|
| 740 | rotmenu->Append(menu_ROTATION_STEP_CW, GetTabMsg(/*Step Once @Clockwise*/236)); |
---|
[137bf99] | 741 | |
---|
| 742 | wxMenu* orientmenu = new wxMenu; |
---|
[026ae3c] | 743 | orientmenu->Append(menu_ORIENT_MOVE_NORTH, GetTabMsg(/*View @North*/240)); |
---|
| 744 | orientmenu->Append(menu_ORIENT_MOVE_EAST, GetTabMsg(/*View @East*/241)); |
---|
| 745 | orientmenu->Append(menu_ORIENT_MOVE_SOUTH, GetTabMsg(/*View @South*/242)); |
---|
| 746 | orientmenu->Append(menu_ORIENT_MOVE_WEST, GetTabMsg(/*View @West*/243)); |
---|
[137bf99] | 747 | orientmenu->AppendSeparator(); |
---|
[84f1ed1] | 748 | orientmenu->Append(menu_ORIENT_SHIFT_LEFT, GetTabMsg(/*Shift Survey @Left*/244)); |
---|
| 749 | orientmenu->Append(menu_ORIENT_SHIFT_RIGHT, GetTabMsg(/*Shift Survey @Right*/245)); |
---|
| 750 | orientmenu->Append(menu_ORIENT_SHIFT_UP, GetTabMsg(/*Shift Survey @Up*/246)); |
---|
| 751 | orientmenu->Append(menu_ORIENT_SHIFT_DOWN, GetTabMsg(/*Shift Survey @Down*/247)); |
---|
[137bf99] | 752 | orientmenu->AppendSeparator(); |
---|
[026ae3c] | 753 | orientmenu->Append(menu_ORIENT_PLAN, GetTabMsg(/*@Plan View*/248)); |
---|
[c40038a] | 754 | orientmenu->Append(menu_ORIENT_ELEVATION, GetTabMsg(/*Ele@vation*/249)); |
---|
[137bf99] | 755 | orientmenu->AppendSeparator(); |
---|
[4b1fc48] | 756 | orientmenu->Append(menu_ORIENT_HIGHER_VP, GetTabMsg(/*@Higher Viewpoint*/250)); |
---|
[46cb98f] | 757 | orientmenu->Append(menu_ORIENT_LOWER_VP, GetTabMsg(/*L@ower Viewpoint*/251)); |
---|
[137bf99] | 758 | orientmenu->AppendSeparator(); |
---|
[003d953] | 759 | orientmenu->Append(menu_ORIENT_ZOOM_IN, GetTabMsg(/*@Zoom In##]*/252)); |
---|
| 760 | orientmenu->Append(menu_ORIENT_ZOOM_OUT, GetTabMsg(/*Zoo@m Out##[*/253)); |
---|
[137bf99] | 761 | orientmenu->AppendSeparator(); |
---|
[82dac6d] | 762 | orientmenu->Append(menu_ORIENT_DEFAULTS, GetTabMsg(/*Restore De@fault View*/254)); |
---|
[1690fa9] | 763 | |
---|
[203d2a7] | 764 | wxMenu* presmenu = new wxMenu; |
---|
[9b540e6] | 765 | presmenu->Append(menu_PRES_NEW, GetTabMsg(/*@New Presentation*/311)); |
---|
| 766 | presmenu->Append(menu_PRES_OPEN, GetTabMsg(/*@Open Presentation...*/312)); |
---|
| 767 | presmenu->Append(menu_PRES_SAVE, GetTabMsg(/*@Save Presentation*/313)); |
---|
| 768 | presmenu->Append(menu_PRES_SAVE_AS, GetTabMsg(/*Save Presentation @As...*/314)); |
---|
[203d2a7] | 769 | presmenu->AppendSeparator(); |
---|
[9b540e6] | 770 | presmenu->Append(menu_PRES_MARK, GetTabMsg(/*@Mark*/315)); |
---|
[128fac4] | 771 | presmenu->Append(menu_PRES_PLAY, GetTabMsg(/*@Play*/316)); |
---|
[9b540e6] | 772 | presmenu->Append(menu_PRES_EXPORT_MOVIE, GetTabMsg(/*@Export as Movie...*/317)); |
---|
[1690fa9] | 773 | |
---|
[203d2a7] | 774 | wxMenu* viewmenu = new wxMenu; |
---|
[edb6576] | 775 | #ifndef PREFDLG |
---|
[5e69a83] | 776 | viewmenu->AppendCheckItem(menu_VIEW_SHOW_NAMES, GetTabMsg(/*Station @Names##Ctrl+N*/270)); |
---|
| 777 | viewmenu->AppendCheckItem(menu_VIEW_SHOW_TUBES, GetTabMsg(/*Passage @Tubes*/346)); |
---|
| 778 | viewmenu->AppendCheckItem(menu_VIEW_SHOW_CROSSES, GetTabMsg(/*@Crosses##Ctrl+X*/271)); |
---|
| 779 | viewmenu->AppendCheckItem(menu_VIEW_GRID, GetTabMsg(/*@Grid##Ctrl+G*/297)); |
---|
| 780 | viewmenu->AppendCheckItem(menu_VIEW_BOUNDING_BOX, GetTabMsg(/*@Bounding Box##Ctrl+B*/318)); |
---|
[edb6576] | 781 | viewmenu->AppendSeparator(); |
---|
[5e69a83] | 782 | viewmenu->AppendCheckItem(menu_VIEW_SHOW_LEGS, GetTabMsg(/*@Underground Survey Legs##Ctrl+L*/272)); |
---|
| 783 | viewmenu->AppendCheckItem(menu_VIEW_SHOW_SURFACE, GetTabMsg(/*@Surface Survey Legs##Ctrl+F*/291)); |
---|
[edb6576] | 784 | viewmenu->AppendSeparator(); |
---|
[5e69a83] | 785 | viewmenu->AppendCheckItem(menu_VIEW_SHOW_OVERLAPPING_NAMES, GetTabMsg(/*@Overlapping Names*/273)); |
---|
| 786 | viewmenu->AppendCheckItem(menu_VIEW_COLOUR_BY_DEPTH, GetTabMsg(/*Colour by @Depth*/292)); |
---|
| 787 | viewmenu->AppendCheckItem(menu_VIEW_COLOUR_BY_DATE, GetTabMsg(/*Colour by D@ate*/293)); |
---|
[c61aa79] | 788 | viewmenu->AppendCheckItem(menu_VIEW_COLOUR_BY_ERROR, GetTabMsg(/*Colour by E@rror*/289)); |
---|
[edb6576] | 789 | viewmenu->AppendSeparator(); |
---|
[5e69a83] | 790 | viewmenu->AppendCheckItem(menu_VIEW_SHOW_ENTRANCES, GetTabMsg(/*Highlight @Entrances*/294)); |
---|
| 791 | viewmenu->AppendCheckItem(menu_VIEW_SHOW_FIXED_PTS, GetTabMsg(/*Highlight @Fixed Points*/295)); |
---|
| 792 | viewmenu->AppendCheckItem(menu_VIEW_SHOW_EXPORTED_PTS, GetTabMsg(/*Highlight E@xported Points*/296)); |
---|
[edb6576] | 793 | viewmenu->AppendSeparator(); |
---|
| 794 | #else |
---|
[7a36b67] | 795 | viewmenu-> Append(menu_VIEW_CANCEL_DIST_LINE, GetTabMsg(/*@Cancel Measuring Line##Escape*/281)); |
---|
[edb6576] | 796 | #endif |
---|
[5e69a83] | 797 | viewmenu->AppendCheckItem(menu_VIEW_PERSPECTIVE, GetTabMsg(/*@Perspective*/237)); |
---|
[d67450e] | 798 | // FIXME: enable this viewmenu->AppendCheckItem(menu_VIEW_SMOOTH_SHADING, GetTabMsg(/*@Smooth Shading*/?!?); |
---|
[5e69a83] | 799 | viewmenu->AppendCheckItem(menu_VIEW_TEXTURED, GetTabMsg(/*Textured @Walls*/238)); |
---|
| 800 | viewmenu->AppendCheckItem(menu_VIEW_FOG, GetTabMsg(/*Fade @Distant Objects*/239)); |
---|
| 801 | viewmenu->AppendCheckItem(menu_VIEW_SMOOTH_LINES, GetTabMsg(/*@Smoothed Survey Legs*/298)); |
---|
[6abab84] | 802 | viewmenu->AppendSeparator(); |
---|
[5e69a83] | 803 | viewmenu->AppendCheckItem(menu_VIEW_FULLSCREEN, GetTabMsg(/*@Full Screen Mode##F11*/356)); |
---|
[edb6576] | 804 | #ifdef PREFDLG |
---|
[203d2a7] | 805 | viewmenu->AppendSeparator(); |
---|
[7a36b67] | 806 | viewmenu-> Append(menu_VIEW_PREFERENCES, GetTabMsg(/*@Preferences...*/347)); |
---|
[edb6576] | 807 | #endif |
---|
| 808 | |
---|
| 809 | #ifndef PREFDLG |
---|
| 810 | wxMenu* ctlmenu = new wxMenu; |
---|
[5e69a83] | 811 | ctlmenu->AppendCheckItem(menu_CTL_REVERSE, GetTabMsg(/*@Reverse Sense##Ctrl+R*/280)); |
---|
[edb6576] | 812 | ctlmenu->AppendSeparator(); |
---|
| 813 | ctlmenu->Append(menu_CTL_CANCEL_DIST_LINE, GetTabMsg(/*@Cancel Measuring Line##Escape*/281)); |
---|
| 814 | ctlmenu->AppendSeparator(); |
---|
| 815 | wxMenu* indmenu = new wxMenu; |
---|
[5e69a83] | 816 | indmenu->AppendCheckItem(menu_IND_COMPASS, GetTabMsg(/*@Compass*/274)); |
---|
| 817 | indmenu->AppendCheckItem(menu_IND_CLINO, GetTabMsg(/*C@linometer*/275)); |
---|
| 818 | indmenu->AppendCheckItem(menu_IND_DEPTH_BAR, GetTabMsg(/*@Depth Bar*/276)); |
---|
| 819 | indmenu->AppendCheckItem(menu_IND_SCALE_BAR, GetTabMsg(/*@Scale Bar*/277)); |
---|
[7a36b67] | 820 | ctlmenu->Append(menu_CTL_INDICATORS, GetTabMsg(/*@Indicators*/299), indmenu); |
---|
[5e69a83] | 821 | ctlmenu->AppendCheckItem(menu_CTL_SIDE_PANEL, GetTabMsg(/*@Side Panel*/337)); |
---|
[edb6576] | 822 | ctlmenu->AppendSeparator(); |
---|
[5e69a83] | 823 | ctlmenu->AppendCheckItem(menu_CTL_METRIC, GetTabMsg(/*@Metric*/342)); |
---|
| 824 | ctlmenu->AppendCheckItem(menu_CTL_DEGREES, GetTabMsg(/*@Degrees*/343)); |
---|
[edb6576] | 825 | #endif |
---|
[137bf99] | 826 | |
---|
| 827 | wxMenu* helpmenu = new wxMenu; |
---|
[c40038a] | 828 | helpmenu->Append(menu_HELP_ABOUT, GetTabMsg(/*@About...*/290)); |
---|
[137bf99] | 829 | |
---|
[c988ae4] | 830 | wxMenuBar* menubar = new wxMenuBar(); |
---|
[137bf99] | 831 | menubar->Append(filemenu, GetTabMsg(/*@File*/210)); |
---|
| 832 | menubar->Append(rotmenu, GetTabMsg(/*@Rotation*/211)); |
---|
| 833 | menubar->Append(orientmenu, GetTabMsg(/*@Orientation*/212)); |
---|
| 834 | menubar->Append(viewmenu, GetTabMsg(/*@View*/213)); |
---|
[5de0cac] | 835 | #ifndef PREFDLG |
---|
| 836 | menubar->Append(ctlmenu, GetTabMsg(/*@Controls*/214)); |
---|
| 837 | #endif |
---|
[9b540e6] | 838 | menubar->Append(presmenu, GetTabMsg(/*@Presentation*/216)); |
---|
[b72f4b5] | 839 | #ifndef __WXMAC__ |
---|
| 840 | // On wxMac the "About" menu item will be moved elsewhere, so we suppress |
---|
| 841 | // this menu since it will then be empty. |
---|
[137bf99] | 842 | menubar->Append(helpmenu, GetTabMsg(/*@Help*/215)); |
---|
[b72f4b5] | 843 | #endif |
---|
[137bf99] | 844 | SetMenuBar(menubar); |
---|
[9d3d8cc] | 845 | } |
---|
[137bf99] | 846 | |
---|
[95fa391] | 847 | // ICON must be a literal string. |
---|
[5627cbb] | 848 | #define TOOLBAR_BITMAP(ICON) wxBitmap(icon_path + wxT(ICON".png"), wxBITMAP_TYPE_PNG) |
---|
[95fa391] | 849 | |
---|
[9d3d8cc] | 850 | void MainFrm::CreateToolBar() |
---|
| 851 | { |
---|
| 852 | // Create the toolbar. |
---|
[137bf99] | 853 | |
---|
[9d3d8cc] | 854 | wxToolBar* toolbar = wxFrame::CreateToolBar(); |
---|
[137bf99] | 855 | |
---|
[b65c13f] | 856 | #ifndef __WXGTK20__ |
---|
[d94f5db] | 857 | toolbar->SetMargins(5, 5); |
---|
| 858 | #endif |
---|
| 859 | |
---|
[9b540e6] | 860 | // FIXME: TRANSLATE tooltips |
---|
[5627cbb] | 861 | toolbar->AddTool(menu_FILE_OPEN, wxT("Open"), TOOLBAR_BITMAP("open"), wxT("Open a 3D file for viewing")); |
---|
| 862 | toolbar->AddTool(menu_PRES_OPEN, wxT("Open presentation"), TOOLBAR_BITMAP("open-pres"), wxT("Open a presentation")); |
---|
[2d9ed8ad] | 863 | toolbar->AddSeparator(); |
---|
[5627cbb] | 864 | toolbar->AddCheckTool(menu_ROTATION_TOGGLE, wxT("Toggle rotation"), TOOLBAR_BITMAP("rotation"), wxNullBitmap, wxT("Toggle rotation")); |
---|
| 865 | toolbar->AddTool(menu_ORIENT_PLAN, wxT("Plan"), TOOLBAR_BITMAP("plan"), wxT("Switch to plan view")); |
---|
| 866 | toolbar->AddTool(menu_ORIENT_ELEVATION, wxT("Elevation"), TOOLBAR_BITMAP("elevation"), wxT("Switch to elevation view")); |
---|
| 867 | toolbar->AddTool(menu_ORIENT_DEFAULTS, wxT("Default view"), TOOLBAR_BITMAP("defaults"), wxT("Restore default view")); |
---|
[2d9ed8ad] | 868 | toolbar->AddSeparator(); |
---|
[5627cbb] | 869 | toolbar->AddCheckTool(menu_VIEW_SHOW_NAMES, wxT("Names"), TOOLBAR_BITMAP("names"), wxNullBitmap, wxT("Show station names")); |
---|
| 870 | toolbar->AddCheckTool(menu_VIEW_SHOW_CROSSES, wxT("Crosses"), TOOLBAR_BITMAP("crosses"), wxNullBitmap, wxT("Show crosses on stations")); |
---|
| 871 | toolbar->AddCheckTool(menu_VIEW_SHOW_ENTRANCES, wxT("Entrances"), TOOLBAR_BITMAP("entrances"), wxNullBitmap, wxT("Highlight entrances")); |
---|
| 872 | toolbar->AddCheckTool(menu_VIEW_SHOW_FIXED_PTS, wxT("Fixed points"), TOOLBAR_BITMAP("fixed-pts"), wxNullBitmap, wxT("Highlight fixed points")); |
---|
| 873 | toolbar->AddCheckTool(menu_VIEW_SHOW_EXPORTED_PTS, wxT("Exported points"), TOOLBAR_BITMAP("exported-pts"), wxNullBitmap, wxT("Highlight exported stations")); |
---|
[2d9ed8ad] | 874 | toolbar->AddSeparator(); |
---|
[5627cbb] | 875 | toolbar->AddCheckTool(menu_VIEW_SHOW_LEGS, wxT("Underground legs"), TOOLBAR_BITMAP("ug-legs"), wxNullBitmap, wxT("Show underground surveys")); |
---|
| 876 | toolbar->AddCheckTool(menu_VIEW_SHOW_SURFACE, wxT("Surface legs"), TOOLBAR_BITMAP("surface-legs"), wxNullBitmap, wxT("Show surface surveys")); |
---|
| 877 | toolbar->AddCheckTool(menu_VIEW_SHOW_TUBES, wxT("Tubes"), TOOLBAR_BITMAP("tubes"), wxNullBitmap, wxT("Show passage tubes")); |
---|
[128fac4] | 878 | toolbar->AddSeparator(); |
---|
[5627cbb] | 879 | toolbar->AddCheckTool(menu_PRES_FREWIND, wxT("Fast Rewind"), TOOLBAR_BITMAP("pres-frew"), wxNullBitmap, wxT("Very Fast Rewind")); |
---|
| 880 | toolbar->AddCheckTool(menu_PRES_REWIND, wxT("Rewind"), TOOLBAR_BITMAP("pres-rew"), wxNullBitmap, wxT("Fast Rewind")); |
---|
| 881 | toolbar->AddCheckTool(menu_PRES_REVERSE, wxT("Backwards"), TOOLBAR_BITMAP("pres-go-back"), wxNullBitmap, wxT("Play Backwards")); |
---|
| 882 | toolbar->AddCheckTool(menu_PRES_PAUSE, wxT("Pause"), TOOLBAR_BITMAP("pres-pause"), wxNullBitmap, wxT("Pause")); |
---|
| 883 | toolbar->AddCheckTool(menu_PRES_PLAY, wxT("Go"), TOOLBAR_BITMAP("pres-go"), wxNullBitmap, wxT("Play")); |
---|
| 884 | toolbar->AddCheckTool(menu_PRES_FF, wxT("FF"), TOOLBAR_BITMAP("pres-ff"), wxNullBitmap, wxT("Fast Forward")); |
---|
| 885 | toolbar->AddCheckTool(menu_PRES_FFF, wxT("Very FF"), TOOLBAR_BITMAP("pres-fff"), wxNullBitmap, wxT("Very Fast Forward")); |
---|
| 886 | toolbar->AddTool(menu_PRES_STOP, wxT("Stop"), TOOLBAR_BITMAP("pres-stop"), wxT("Stop")); |
---|
[fd6e0d5] | 887 | |
---|
[203d2a7] | 888 | toolbar->AddSeparator(); |
---|
[5627cbb] | 889 | m_FindBox = new wxTextCtrl(toolbar, textctrl_FIND, wxString(), wxDefaultPosition, |
---|
[429465a] | 890 | wxDefaultSize, wxTE_PROCESS_ENTER); |
---|
[fd6e0d5] | 891 | toolbar->AddControl(m_FindBox); |
---|
[95fa391] | 892 | toolbar->AddTool(button_FIND, TOOLBAR_BITMAP("find"), |
---|
[5627cbb] | 893 | wmsg(/*Find*/332)/*"Search for station name"*/); |
---|
[95fa391] | 894 | toolbar->AddTool(button_HIDE, TOOLBAR_BITMAP("hideresults"), |
---|
[5627cbb] | 895 | wmsg(/*Hide*/333)/*"Hide search results"*/); |
---|
[fd6e0d5] | 896 | |
---|
[2d9ed8ad] | 897 | toolbar->Realize(); |
---|
[9d3d8cc] | 898 | } |
---|
[2d9ed8ad] | 899 | |
---|
[9d3d8cc] | 900 | void MainFrm::CreateSidePanel() |
---|
| 901 | { |
---|
[b1de3e0] | 902 | m_Splitter = new AvenSplitterWindow(this); |
---|
[421b7d2] | 903 | |
---|
[203d2a7] | 904 | m_Notebook = new wxNotebook(m_Splitter, 400, wxDefaultPosition, |
---|
[b63cf6cc] | 905 | wxDefaultSize, |
---|
[4e98397] | 906 | wxBK_BOTTOM | wxBK_LEFT); |
---|
[203d2a7] | 907 | m_Notebook->Show(false); |
---|
[f433fda] | 908 | |
---|
[1be3a88] | 909 | wxPanel * panel = new wxPanel(m_Notebook); |
---|
| 910 | m_Tree = new AvenTreeCtrl(this, panel); |
---|
[156dc16] | 911 | |
---|
[429465a] | 912 | // m_RegexpCheckBox = new wxCheckBox(find_panel, -1, |
---|
| 913 | // msg(/*Regular expression*/334)); |
---|
[2c30188] | 914 | |
---|
| 915 | wxBoxSizer *panel_sizer = new wxBoxSizer(wxVERTICAL); |
---|
| 916 | panel_sizer->Add(m_Tree, 1, wxALL | wxEXPAND, 2); |
---|
[1be3a88] | 917 | panel->SetAutoLayout(true); |
---|
| 918 | panel->SetSizer(panel_sizer); |
---|
| 919 | // panel_sizer->Fit(panel); |
---|
| 920 | // panel_sizer->SetSizeHints(panel); |
---|
[156dc16] | 921 | |
---|
[5876fcb] | 922 | m_Control = new GUIControl(); |
---|
| 923 | m_Gfx = new GfxCore(this, m_Splitter, m_Control); |
---|
| 924 | m_Control->SetView(m_Gfx); |
---|
[156dc16] | 925 | |
---|
[203d2a7] | 926 | // Presentation panel: |
---|
[1be3a88] | 927 | wxPanel * prespanel = new wxPanel(m_Notebook); |
---|
[203d2a7] | 928 | |
---|
[1be3a88] | 929 | m_PresList = new AvenPresList(this, prespanel, m_Gfx); |
---|
[f433fda] | 930 | |
---|
[203d2a7] | 931 | wxBoxSizer *pres_panel_sizer = new wxBoxSizer(wxVERTICAL); |
---|
| 932 | pres_panel_sizer->Add(m_PresList, 1, wxALL | wxEXPAND, 2); |
---|
[1be3a88] | 933 | prespanel->SetAutoLayout(true); |
---|
| 934 | prespanel->SetSizer(pres_panel_sizer); |
---|
[1690fa9] | 935 | |
---|
[203d2a7] | 936 | // Overall tabbed structure: |
---|
[c5032bb0] | 937 | // FIXME: this assumes images are 15x15 |
---|
| 938 | wxImageList* image_list = new wxImageList(15, 15); |
---|
[5627cbb] | 939 | wxString path = wxString(msg_cfgpth(), wxConvUTF8); |
---|
| 940 | path += wxCONFIG_PATH_SEPARATOR; |
---|
| 941 | path += wxT("icons") ; |
---|
| 942 | path += wxCONFIG_PATH_SEPARATOR; |
---|
| 943 | image_list->Add(wxBitmap(path + wxT("survey-tree.png"), wxBITMAP_TYPE_PNG)); |
---|
| 944 | image_list->Add(wxBitmap(path + wxT("pres-tree.png"), wxBITMAP_TYPE_PNG)); |
---|
[203d2a7] | 945 | m_Notebook->SetImageList(image_list); |
---|
[5627cbb] | 946 | m_Notebook->AddPage(panel, wmsg(/*Surveys*/376), true, 0); |
---|
| 947 | m_Notebook->AddPage(prespanel, wmsg(/*Presentation*/377), false, 1); |
---|
[203d2a7] | 948 | |
---|
[e9b97eb] | 949 | m_Splitter->Initialize(m_Gfx); |
---|
[068b4f2] | 950 | } |
---|
[137bf99] | 951 | |
---|
[b88b171] | 952 | bool |
---|
| 953 | MainFrm::ProcessSVXFile(const wxString & file) |
---|
| 954 | { |
---|
[68be120] | 955 | Show(true); |
---|
[5627cbb] | 956 | m_Splitter->Show(false); |
---|
[68be120] | 957 | CavernLogWindow * log = new CavernLogWindow(this); |
---|
| 958 | log->SetSize(GetClientSize()); |
---|
[b88b171] | 959 | |
---|
[5627cbb] | 960 | int result = log->process(file); |
---|
| 961 | if (result == 0) { |
---|
| 962 | log->Show(false); |
---|
| 963 | m_Splitter->Show(); |
---|
| 964 | } |
---|
| 965 | return result >= 0; |
---|
[b88b171] | 966 | } |
---|
| 967 | |
---|
| 968 | bool MainFrm::LoadData(const wxString& file_, wxString prefix) |
---|
| 969 | { |
---|
| 970 | wxString file(file_); |
---|
[137bf99] | 971 | // Load survey data from file, centre the dataset around the origin, |
---|
[f4fae12] | 972 | // and prepare the data for drawing. |
---|
[137bf99] | 973 | |
---|
[c9427d2] | 974 | #if 0 |
---|
| 975 | wxStopWatch timer; |
---|
| 976 | timer.Start(); |
---|
| 977 | #endif |
---|
[b88b171] | 978 | wxString filename_used; |
---|
| 979 | |
---|
| 980 | // Check if this is an unprocessed survey data file. |
---|
| 981 | if (file.length() > 4 && file[file.length() - 4] == '.') { |
---|
| 982 | wxString ext = file.substr(file.length() - 3, 3); |
---|
[5627cbb] | 983 | if (strcasecmp(ext.char_str(), "svx") == 0 || |
---|
| 984 | strcasecmp(ext.char_str(), "dat") == 0 || |
---|
| 985 | strcasecmp(ext.char_str(), "mak") == 0) { |
---|
[b88b171] | 986 | if (!ProcessSVXFile(file)) return false; |
---|
| 987 | filename_used = file; |
---|
[5627cbb] | 988 | char * base_fnm = base_from_fnm(file.char_str()); |
---|
[b88b171] | 989 | char * fnm_3d = add_ext(base_fnm, "3d"); |
---|
[5627cbb] | 990 | file = wxString(fnm_3d, wxConvUTF8); |
---|
[b88b171] | 991 | osfree(fnm_3d); |
---|
| 992 | osfree(base_fnm); |
---|
| 993 | } |
---|
| 994 | } |
---|
[137bf99] | 995 | |
---|
[b88b171] | 996 | // Load the survey data. |
---|
[5627cbb] | 997 | img* survey = img_open_survey(file.char_str(), prefix.char_str()); |
---|
[137bf99] | 998 | if (!survey) { |
---|
[5627cbb] | 999 | wxString m = wxString::Format(wmsg(img_error()), file.c_str()); |
---|
[421b7d2] | 1000 | wxGetApp().ReportError(m); |
---|
| 1001 | return false; |
---|
[137bf99] | 1002 | } |
---|
[1d0cd97] | 1003 | |
---|
[b88b171] | 1004 | if (!filename_used.empty()) { |
---|
| 1005 | m_File = filename_used; |
---|
| 1006 | } else { |
---|
[5627cbb] | 1007 | m_File = wxString(survey->filename_opened, wxConvUTF8); |
---|
[b88b171] | 1008 | } |
---|
[eef68f9] | 1009 | m_IsExtendedElevation = survey->is_extended_elevation; |
---|
[156dc16] | 1010 | |
---|
[9f176bd] | 1011 | m_Tree->DeleteAllItems(); |
---|
| 1012 | |
---|
[1d0cd97] | 1013 | // Create a list of all the leg vertices, counting them and finding the |
---|
| 1014 | // extent of the survey at the same time. |
---|
| 1015 | |
---|
| 1016 | m_NumFixedPts = 0; |
---|
| 1017 | m_NumExportedPts = 0; |
---|
| 1018 | m_NumEntrances = 0; |
---|
[f433fda] | 1019 | m_HasUndergroundLegs = false; |
---|
| 1020 | m_HasSurfaceLegs = false; |
---|
[c61aa79] | 1021 | m_HasErrorInformation = false; |
---|
[1d0cd97] | 1022 | |
---|
[1690fa9] | 1023 | // FIXME: discard existing presentation? ask user about saving if we do! |
---|
[156dc16] | 1024 | |
---|
[1d0cd97] | 1025 | // Delete any existing list entries. |
---|
[0e6ee74] | 1026 | m_Labels.clear(); |
---|
[1d0cd97] | 1027 | |
---|
[a6f081c] | 1028 | Double xmin = DBL_MAX; |
---|
[1d0cd97] | 1029 | Double xmax = -DBL_MAX; |
---|
[a6f081c] | 1030 | Double ymin = DBL_MAX; |
---|
[1d0cd97] | 1031 | Double ymax = -DBL_MAX; |
---|
[78c67a6] | 1032 | Double zmin = DBL_MAX; |
---|
[1d0cd97] | 1033 | Double zmax = -DBL_MAX; |
---|
[78c67a6] | 1034 | |
---|
| 1035 | m_DepthMin = DBL_MAX; |
---|
| 1036 | Double depthmax = -DBL_MAX; |
---|
| 1037 | |
---|
[d4650b3] | 1038 | m_DateMin = (time_t)-1; |
---|
| 1039 | if (m_DateMin < 0) { |
---|
| 1040 | // Hmm, signed time_t! |
---|
| 1041 | // FIXME: find a cleaner way to do this... |
---|
| 1042 | time_t x = time_t(1) << (sizeof(time_t) * 8 - 2); |
---|
| 1043 | m_DateMin = x; |
---|
| 1044 | while ((x>>=1) != 0) m_DateMin |= x; |
---|
| 1045 | } |
---|
| 1046 | time_t datemax = 0; |
---|
[a74b014] | 1047 | complete_dateinfo = true; |
---|
[1d0cd97] | 1048 | |
---|
[3ddcad8] | 1049 | traverses.clear(); |
---|
| 1050 | surface_traverses.clear(); |
---|
[ee05463] | 1051 | tubes.clear(); |
---|
[3ddcad8] | 1052 | |
---|
| 1053 | // Ultimately we probably want different types (subclasses perhaps?) for |
---|
| 1054 | // underground and surface data, so we don't need to store LRUD for surface |
---|
| 1055 | // stuff. |
---|
[c61aa79] | 1056 | traverse * current_traverse = NULL; |
---|
| 1057 | traverse * current_surface_traverse = NULL; |
---|
[ee05463] | 1058 | vector<XSect> * current_tube = NULL; |
---|
[1d0cd97] | 1059 | |
---|
| 1060 | int result; |
---|
[3ddcad8] | 1061 | img_point prev_pt = {0,0,0}; |
---|
| 1062 | bool current_polyline_is_surface = false; |
---|
| 1063 | bool pending_move = false; |
---|
[c61aa79] | 1064 | // When a traverse is split between surface and underground, we split it |
---|
| 1065 | // into contiguous traverses of each, but we need to track these so we can |
---|
| 1066 | // assign the error statistics to all of them. So we keep counts of how |
---|
| 1067 | // many surface_traverses and traverses we've generated for the current |
---|
| 1068 | // traverse. |
---|
| 1069 | size_t n_traverses = 0; |
---|
| 1070 | size_t n_surface_traverses = 0; |
---|
[1d0cd97] | 1071 | do { |
---|
[e9bd2800] | 1072 | #if 0 |
---|
[3ddcad8] | 1073 | if (++items % 200 == 0) { |
---|
[b63cf6cc] | 1074 | long pos = ftell(survey->fh); |
---|
| 1075 | int progress = int((double(pos) / double(file_size)) * 100.0); |
---|
[0580c6a] | 1076 | // SetProgress(progress); |
---|
[b63cf6cc] | 1077 | } |
---|
[e9bd2800] | 1078 | #endif |
---|
[203d2a7] | 1079 | |
---|
[421b7d2] | 1080 | img_point pt; |
---|
| 1081 | result = img_read_item(survey, &pt); |
---|
| 1082 | switch (result) { |
---|
| 1083 | case img_MOVE: |
---|
[c61aa79] | 1084 | n_traverses = n_surface_traverses = 0; |
---|
[3ddcad8] | 1085 | pending_move = true; |
---|
| 1086 | prev_pt = pt; |
---|
| 1087 | break; |
---|
[421b7d2] | 1088 | |
---|
[3ddcad8] | 1089 | case img_LINE: { |
---|
[421b7d2] | 1090 | // Update survey extents. |
---|
[a6f081c] | 1091 | if (pt.x < xmin) xmin = pt.x; |
---|
[421b7d2] | 1092 | if (pt.x > xmax) xmax = pt.x; |
---|
[a6f081c] | 1093 | if (pt.y < ymin) ymin = pt.y; |
---|
[421b7d2] | 1094 | if (pt.y > ymax) ymax = pt.y; |
---|
[78c67a6] | 1095 | if (pt.z < zmin) zmin = pt.z; |
---|
[421b7d2] | 1096 | if (pt.z > zmax) zmax = pt.z; |
---|
| 1097 | |
---|
[64f0791] | 1098 | time_t date; |
---|
| 1099 | date = survey->date1 + (survey->date2 - survey->date1) / 2; |
---|
[d4650b3] | 1100 | if (date) { |
---|
| 1101 | if (date < m_DateMin) m_DateMin = date; |
---|
| 1102 | if (date > datemax) datemax = date; |
---|
[a74b014] | 1103 | } else { |
---|
| 1104 | complete_dateinfo = false; |
---|
[d4650b3] | 1105 | } |
---|
| 1106 | |
---|
[3ddcad8] | 1107 | bool is_surface = (survey->flags & img_FLAG_SURFACE); |
---|
[78c67a6] | 1108 | if (!is_surface) { |
---|
| 1109 | if (pt.z < m_DepthMin) m_DepthMin = pt.z; |
---|
| 1110 | if (pt.z > depthmax) depthmax = pt.z; |
---|
| 1111 | } |
---|
[3ddcad8] | 1112 | if (pending_move || current_polyline_is_surface != is_surface) { |
---|
[57a3cd4] | 1113 | if (!current_polyline_is_surface && current_traverse) { |
---|
[ee05463] | 1114 | //FixLRUD(*current_traverse); |
---|
[57a3cd4] | 1115 | } |
---|
[3ddcad8] | 1116 | current_polyline_is_surface = is_surface; |
---|
| 1117 | // Start new traverse (surface or underground). |
---|
[f433fda] | 1118 | if (is_surface) { |
---|
| 1119 | m_HasSurfaceLegs = true; |
---|
[c61aa79] | 1120 | surface_traverses.push_back(traverse()); |
---|
[faae79c] | 1121 | current_surface_traverse = &surface_traverses.back(); |
---|
[c61aa79] | 1122 | ++n_surface_traverses; |
---|
[f433fda] | 1123 | } else { |
---|
| 1124 | m_HasUndergroundLegs = true; |
---|
[c61aa79] | 1125 | traverses.push_back(traverse()); |
---|
[3ddcad8] | 1126 | current_traverse = &traverses.back(); |
---|
[c61aa79] | 1127 | ++n_traverses; |
---|
[78c67a6] | 1128 | // The previous point was at a surface->ug transition. |
---|
| 1129 | if (prev_pt.z < m_DepthMin) m_DepthMin = prev_pt.z; |
---|
| 1130 | if (prev_pt.z > depthmax) depthmax = prev_pt.z; |
---|
[3ddcad8] | 1131 | } |
---|
| 1132 | if (pending_move) { |
---|
[faae79c] | 1133 | // Update survey extents. We only need to do this if |
---|
| 1134 | // there's a pending move, since for a surface <-> |
---|
| 1135 | // underground transition, we'll already have handled |
---|
| 1136 | // this point. |
---|
[3ddcad8] | 1137 | if (prev_pt.x < xmin) xmin = prev_pt.x; |
---|
| 1138 | if (prev_pt.x > xmax) xmax = prev_pt.x; |
---|
| 1139 | if (prev_pt.y < ymin) ymin = prev_pt.y; |
---|
| 1140 | if (prev_pt.y > ymax) ymax = prev_pt.y; |
---|
[78c67a6] | 1141 | if (prev_pt.z < zmin) zmin = prev_pt.z; |
---|
[3ddcad8] | 1142 | if (prev_pt.z > zmax) zmax = prev_pt.z; |
---|
[faae79c] | 1143 | } |
---|
[3ddcad8] | 1144 | |
---|
[faae79c] | 1145 | if (is_surface) { |
---|
[d4650b3] | 1146 | current_surface_traverse->push_back(PointInfo(prev_pt)); |
---|
[faae79c] | 1147 | } else { |
---|
[d4650b3] | 1148 | current_traverse->push_back(PointInfo(prev_pt)); |
---|
[f433fda] | 1149 | } |
---|
[421b7d2] | 1150 | } |
---|
| 1151 | |
---|
[3ddcad8] | 1152 | if (is_surface) { |
---|
[d4650b3] | 1153 | current_surface_traverse->push_back(PointInfo(pt, date)); |
---|
[3ddcad8] | 1154 | } else { |
---|
[d4650b3] | 1155 | current_traverse->push_back(PointInfo(pt, date)); |
---|
[3ddcad8] | 1156 | } |
---|
| 1157 | |
---|
| 1158 | prev_pt = pt; |
---|
| 1159 | pending_move = false; |
---|
[421b7d2] | 1160 | break; |
---|
| 1161 | } |
---|
| 1162 | |
---|
[3ddcad8] | 1163 | case img_LABEL: { |
---|
[5a24583] | 1164 | int flags = survey->flags; |
---|
| 1165 | if (flags & img_SFLAG_ENTRANCE) { |
---|
| 1166 | flags ^= (img_SFLAG_ENTRANCE | LFLAG_ENTRANCE); |
---|
[fa42426] | 1167 | } |
---|
[5627cbb] | 1168 | LabelInfo* label = new LabelInfo(pt, wxString(survey->label, wxConvUTF8), flags); |
---|
[421b7d2] | 1169 | if (label->IsEntrance()) { |
---|
| 1170 | m_NumEntrances++; |
---|
| 1171 | } |
---|
| 1172 | if (label->IsFixedPt()) { |
---|
| 1173 | m_NumFixedPts++; |
---|
| 1174 | } |
---|
| 1175 | if (label->IsExportedPt()) { |
---|
| 1176 | m_NumExportedPts++; |
---|
| 1177 | } |
---|
| 1178 | m_Labels.push_back(label); |
---|
| 1179 | break; |
---|
| 1180 | } |
---|
| 1181 | |
---|
[ee05463] | 1182 | case img_XSECT: { |
---|
| 1183 | if (!current_tube) { |
---|
| 1184 | // Start new current_tube. |
---|
| 1185 | tubes.push_back(vector<XSect>()); |
---|
| 1186 | current_tube = &tubes.back(); |
---|
| 1187 | } |
---|
| 1188 | |
---|
| 1189 | // FIXME: avoid linear search... |
---|
| 1190 | list<LabelInfo*>::const_iterator i = m_Labels.begin(); |
---|
[5627cbb] | 1191 | wxString label(survey->label, wxConvUTF8); |
---|
| 1192 | while (i != m_Labels.end() && (*i)->GetText() != label) ++i; |
---|
[d7d7fa7] | 1193 | |
---|
| 1194 | if (i == m_Labels.end()) { |
---|
| 1195 | // Unattached cross-section - ignore for now. |
---|
| 1196 | printf("unattached cross-section\n"); |
---|
| 1197 | if (current_tube->size() == 1) |
---|
| 1198 | tubes.resize(tubes.size() - 1); |
---|
| 1199 | current_tube = NULL; |
---|
| 1200 | break; |
---|
| 1201 | } |
---|
[ee05463] | 1202 | |
---|
[428dcad] | 1203 | time_t date; |
---|
| 1204 | date = survey->date1 + (survey->date2 - survey->date1) / 2; |
---|
[d4650b3] | 1205 | if (date) { |
---|
| 1206 | if (date < m_DateMin) m_DateMin = date; |
---|
| 1207 | if (date > datemax) datemax = date; |
---|
| 1208 | } |
---|
| 1209 | |
---|
| 1210 | current_tube->push_back(XSect(**i, date, survey->l, survey->r, survey->u, survey->d)); |
---|
[ee05463] | 1211 | break; |
---|
| 1212 | } |
---|
| 1213 | |
---|
[d7d7fa7] | 1214 | case img_XSECT_END: |
---|
| 1215 | // Finish off current_tube. |
---|
| 1216 | // If there's only one cross-section in the tube, just |
---|
| 1217 | // discard it for now. FIXME: we should handle this |
---|
| 1218 | // when we come to skinning the tubes. |
---|
| 1219 | if (current_tube && current_tube->size() == 1) |
---|
| 1220 | tubes.resize(tubes.size() - 1); |
---|
| 1221 | current_tube = NULL; |
---|
| 1222 | break; |
---|
| 1223 | |
---|
[c61aa79] | 1224 | case img_ERROR_INFO: { |
---|
[ed58edc] | 1225 | if (survey->E == 0.0) { |
---|
| 1226 | // Currently cavern doesn't spot all articulating traverses |
---|
| 1227 | // so we assume that any traverse with no error isn't part |
---|
| 1228 | // of a loop. FIXME: fix cavern! |
---|
| 1229 | break; |
---|
| 1230 | } |
---|
[c61aa79] | 1231 | m_HasErrorInformation = true; |
---|
| 1232 | list<traverse>::reverse_iterator t; |
---|
| 1233 | t = surface_traverses.rbegin(); |
---|
| 1234 | while (n_surface_traverses) { |
---|
| 1235 | assert(t != surface_traverses.rend()); |
---|
| 1236 | t->n_legs = survey->n_legs; |
---|
| 1237 | t->length = survey->length; |
---|
| 1238 | t->E = survey->E; |
---|
| 1239 | t->H = survey->H; |
---|
| 1240 | t->V = survey->V; |
---|
| 1241 | --n_surface_traverses; |
---|
| 1242 | ++t; |
---|
| 1243 | } |
---|
| 1244 | t = traverses.rbegin(); |
---|
| 1245 | while (n_traverses) { |
---|
| 1246 | assert(t != traverses.rend()); |
---|
| 1247 | t->n_legs = survey->n_legs; |
---|
| 1248 | t->length = survey->length; |
---|
| 1249 | t->E = survey->E; |
---|
| 1250 | t->H = survey->H; |
---|
| 1251 | t->V = survey->V; |
---|
| 1252 | --n_traverses; |
---|
| 1253 | ++t; |
---|
| 1254 | } |
---|
| 1255 | break; |
---|
| 1256 | } |
---|
| 1257 | |
---|
[3ddcad8] | 1258 | case img_BAD: { |
---|
[421b7d2] | 1259 | m_Labels.clear(); |
---|
| 1260 | |
---|
| 1261 | // FIXME: Do we need to reset all these? - Olly |
---|
| 1262 | m_NumFixedPts = 0; |
---|
| 1263 | m_NumExportedPts = 0; |
---|
| 1264 | m_NumEntrances = 0; |
---|
[f433fda] | 1265 | m_HasUndergroundLegs = false; |
---|
| 1266 | m_HasSurfaceLegs = false; |
---|
[421b7d2] | 1267 | |
---|
| 1268 | img_close(survey); |
---|
| 1269 | |
---|
[5627cbb] | 1270 | wxString m = wxString::Format(wmsg(img_error()), file.c_str()); |
---|
[421b7d2] | 1271 | wxGetApp().ReportError(m); |
---|
[dc1a546] | 1272 | |
---|
[421b7d2] | 1273 | return false; |
---|
| 1274 | } |
---|
| 1275 | |
---|
| 1276 | default: |
---|
| 1277 | break; |
---|
| 1278 | } |
---|
[1d0cd97] | 1279 | } while (result != img_STOP); |
---|
[c1cf79d] | 1280 | |
---|
[57a3cd4] | 1281 | if (!current_polyline_is_surface && current_traverse) { |
---|
[ee05463] | 1282 | //FixLRUD(*current_traverse); |
---|
[57a3cd4] | 1283 | } |
---|
| 1284 | |
---|
[d7d7fa7] | 1285 | // Finish off current_tube. |
---|
| 1286 | // If there's only one cross-section in the tube, just |
---|
| 1287 | // discard it for now. FIXME: we should handle this |
---|
| 1288 | // when we come to skinning the tubes. |
---|
| 1289 | if (current_tube && current_tube->size() == 1) |
---|
| 1290 | tubes.resize(tubes.size() - 1); |
---|
[ee05463] | 1291 | |
---|
[ee1ec59] | 1292 | separator = survey->separator; |
---|
[5627cbb] | 1293 | m_Title = wxString(survey->title, wxConvUTF8); |
---|
| 1294 | m_DateStamp = wxString(survey->datestamp, wxConvUTF8); |
---|
[1d0cd97] | 1295 | img_close(survey); |
---|
[137bf99] | 1296 | |
---|
[1d0cd97] | 1297 | // Check we've actually loaded some legs or stations! |
---|
[f433fda] | 1298 | if (!m_HasUndergroundLegs && !m_HasSurfaceLegs && m_Labels.empty()) { |
---|
[5627cbb] | 1299 | wxString m = wxString::Format(wmsg(/*No survey data in 3d file `%s'*/202), file.c_str()); |
---|
[421b7d2] | 1300 | wxGetApp().ReportError(m); |
---|
| 1301 | return false; |
---|
[1d0cd97] | 1302 | } |
---|
[137bf99] | 1303 | |
---|
[3ddcad8] | 1304 | if (traverses.empty() && surface_traverses.empty()) { |
---|
[421b7d2] | 1305 | // No legs, so get survey extents from stations |
---|
| 1306 | list<LabelInfo*>::const_iterator i; |
---|
| 1307 | for (i = m_Labels.begin(); i != m_Labels.end(); ++i) { |
---|
[5a24583] | 1308 | if ((*i)->GetX() < xmin) xmin = (*i)->GetX(); |
---|
| 1309 | if ((*i)->GetX() > xmax) xmax = (*i)->GetX(); |
---|
| 1310 | if ((*i)->GetY() < ymin) ymin = (*i)->GetY(); |
---|
| 1311 | if ((*i)->GetY() > ymax) ymax = (*i)->GetY(); |
---|
[78c67a6] | 1312 | if ((*i)->GetZ() < zmin) zmin = (*i)->GetZ(); |
---|
[5a24583] | 1313 | if ((*i)->GetZ() > zmax) zmax = (*i)->GetZ(); |
---|
[421b7d2] | 1314 | } |
---|
[137bf99] | 1315 | } |
---|
| 1316 | |
---|
[78c67a6] | 1317 | m_Ext.assign(xmax - xmin, ymax - ymin, zmax - zmin); |
---|
[1d0cd97] | 1318 | |
---|
[d4650b3] | 1319 | if (datemax < m_DateMin) m_DateMin = 0; |
---|
| 1320 | m_DateExt = datemax - m_DateMin; |
---|
| 1321 | |
---|
[156dc16] | 1322 | // Sort the labels. |
---|
[ee1ec59] | 1323 | m_Labels.sort(LabelCmp(separator)); |
---|
[156dc16] | 1324 | |
---|
| 1325 | // Fill the tree of stations and prefixes. |
---|
| 1326 | FillTree(); |
---|
| 1327 | |
---|
[291ca5d] | 1328 | // Sort labels so that entrances are displayed in preference, |
---|
| 1329 | // then fixed points, then exported points, then other points. |
---|
[50ada97] | 1330 | // |
---|
[291ca5d] | 1331 | // Also sort by leaf name so that we'll tend to choose labels |
---|
| 1332 | // from different surveys, rather than labels from surveys which |
---|
| 1333 | // are earlier in the list. |
---|
[ee1ec59] | 1334 | m_Labels.sort(LabelPlotCmp(separator)); |
---|
[291ca5d] | 1335 | |
---|
[a6f081c] | 1336 | // Centre the dataset around the origin. |
---|
[78c67a6] | 1337 | CentreDataset(Vector3(xmin, ymin, zmin)); |
---|
| 1338 | |
---|
| 1339 | if (depthmax < m_DepthMin) { |
---|
| 1340 | m_DepthMin = 0; |
---|
| 1341 | m_DepthExt = 0; |
---|
| 1342 | } else { |
---|
| 1343 | m_DepthExt = depthmax - m_DepthMin; |
---|
| 1344 | m_DepthMin -= m_Offsets.GetZ(); |
---|
| 1345 | } |
---|
[a6f081c] | 1346 | |
---|
[c9427d2] | 1347 | #if 0 |
---|
| 1348 | printf("time to load = %.3f\n", (double)timer.Time()); |
---|
| 1349 | #endif |
---|
| 1350 | |
---|
[1d0cd97] | 1351 | // Update window title. |
---|
[1d7f0fd] | 1352 | SetTitle(m_Title + " - "APP_NAME); |
---|
[1d0cd97] | 1353 | |
---|
| 1354 | return true; |
---|
[f626e1f] | 1355 | } |
---|
| 1356 | |
---|
[d4650b3] | 1357 | #if 0 |
---|
[57a3cd4] | 1358 | // Run along a newly read in traverse and make up plausible LRUD where |
---|
| 1359 | // it is missing. |
---|
| 1360 | void |
---|
[c61aa79] | 1361 | MainFrm::FixLRUD(traverse & centreline) |
---|
[57a3cd4] | 1362 | { |
---|
| 1363 | assert(centreline.size() > 1); |
---|
| 1364 | |
---|
| 1365 | Double last_size = 0; |
---|
[d4650b3] | 1366 | vector<PointInfo>::iterator i = centreline.begin(); |
---|
[57a3cd4] | 1367 | while (i != centreline.end()) { |
---|
[4c9e87b] | 1368 | // Get the coordinates of this vertex. |
---|
[db36155] | 1369 | Point & pt_v = *i++; |
---|
[57a3cd4] | 1370 | Double size; |
---|
| 1371 | |
---|
| 1372 | if (i != centreline.end()) { |
---|
| 1373 | Double h = sqrd(i->GetX() - pt_v.GetX()) + |
---|
| 1374 | sqrd(i->GetY() - pt_v.GetY()); |
---|
| 1375 | Double v = sqrd(i->GetZ() - pt_v.GetZ()); |
---|
| 1376 | if (h + v > 30.0 * 30.0) { |
---|
| 1377 | Double scale = 30.0 / sqrt(h + v); |
---|
| 1378 | h *= scale; |
---|
| 1379 | v *= scale; |
---|
| 1380 | } |
---|
| 1381 | size = sqrt(h + v / 9); |
---|
| 1382 | size /= 4; |
---|
| 1383 | if (i == centreline.begin() + 1) { |
---|
| 1384 | // First segment. |
---|
| 1385 | last_size = size; |
---|
| 1386 | } else { |
---|
| 1387 | // Intermediate segment. |
---|
| 1388 | swap(size, last_size); |
---|
| 1389 | size += last_size; |
---|
| 1390 | size /= 2; |
---|
| 1391 | } |
---|
| 1392 | } else { |
---|
| 1393 | // Last segment. |
---|
| 1394 | size = last_size; |
---|
| 1395 | } |
---|
| 1396 | |
---|
| 1397 | Double & l = pt_v.l; |
---|
| 1398 | Double & r = pt_v.r; |
---|
| 1399 | Double & u = pt_v.u; |
---|
| 1400 | Double & d = pt_v.d; |
---|
| 1401 | |
---|
| 1402 | if (l == 0 && r == 0 && u == 0 && d == 0) { |
---|
| 1403 | l = r = u = d = -size; |
---|
| 1404 | } else { |
---|
| 1405 | if (l < 0 && r < 0) { |
---|
| 1406 | l = r = -size; |
---|
| 1407 | } else if (l < 0) { |
---|
| 1408 | l = -(2 * size - r); |
---|
| 1409 | if (l >= 0) l = -0.01; |
---|
| 1410 | } else if (r < 0) { |
---|
| 1411 | r = -(2 * size - l); |
---|
| 1412 | if (r >= 0) r = -0.01; |
---|
| 1413 | } |
---|
| 1414 | if (u < 0 && d < 0) { |
---|
| 1415 | u = d = -size; |
---|
| 1416 | } else if (u < 0) { |
---|
| 1417 | u = -(2 * size - d); |
---|
| 1418 | if (u >= 0) u = -0.01; |
---|
| 1419 | } else if (d < 0) { |
---|
| 1420 | d = -(2 * size - u); |
---|
| 1421 | if (d >= 0) d = -0.01; |
---|
| 1422 | } |
---|
| 1423 | } |
---|
| 1424 | } |
---|
| 1425 | } |
---|
[d4650b3] | 1426 | #endif |
---|
[57a3cd4] | 1427 | |
---|
[156dc16] | 1428 | void MainFrm::FillTree() |
---|
| 1429 | { |
---|
[91c9bea] | 1430 | // Create the root of the tree. |
---|
| 1431 | wxTreeItemId treeroot = m_Tree->AddRoot(wxFileNameFromPath(m_File)); |
---|
[156dc16] | 1432 | |
---|
[91c9bea] | 1433 | // Fill the tree of stations and prefixes. |
---|
[156dc16] | 1434 | stack<wxTreeItemId> previous_ids; |
---|
[5627cbb] | 1435 | wxString current_prefix; |
---|
[91c9bea] | 1436 | wxTreeItemId current_id = treeroot; |
---|
[156dc16] | 1437 | |
---|
[86cdcf2] | 1438 | list<LabelInfo*>::iterator pos = m_Labels.begin(); |
---|
[156dc16] | 1439 | while (pos != m_Labels.end()) { |
---|
[421b7d2] | 1440 | LabelInfo* label = *pos++; |
---|
[156dc16] | 1441 | |
---|
[421b7d2] | 1442 | // Determine the current prefix. |
---|
[ee1ec59] | 1443 | wxString prefix = label->GetText().BeforeLast(separator); |
---|
[9d3d8cc] | 1444 | |
---|
[421b7d2] | 1445 | // Determine if we're still on the same prefix. |
---|
| 1446 | if (prefix == current_prefix) { |
---|
| 1447 | // no need to fiddle with branches... |
---|
| 1448 | } |
---|
| 1449 | // If not, then see if we've descended to a new prefix. |
---|
[4252768] | 1450 | else if (prefix.length() > current_prefix.length() && |
---|
[003d953] | 1451 | prefix.StartsWith(current_prefix) && |
---|
[4252768] | 1452 | (prefix[current_prefix.length()] == separator || |
---|
[5627cbb] | 1453 | current_prefix.empty())) { |
---|
[421b7d2] | 1454 | // We have, so start as many new branches as required. |
---|
[4252768] | 1455 | int current_prefix_length = current_prefix.length(); |
---|
[421b7d2] | 1456 | current_prefix = prefix; |
---|
[05b5d5b] | 1457 | size_t next_dot = current_prefix_length; |
---|
| 1458 | if (!next_dot) --next_dot; |
---|
[421b7d2] | 1459 | do { |
---|
[44ed489] | 1460 | size_t prev_dot = next_dot + 1; |
---|
| 1461 | |
---|
[421b7d2] | 1462 | // Extract the next bit of prefix. |
---|
[44ed489] | 1463 | next_dot = prefix.find(separator, prev_dot + 1); |
---|
[421b7d2] | 1464 | |
---|
[44ed489] | 1465 | wxString bit = prefix.substr(prev_dot, next_dot - prev_dot); |
---|
[5627cbb] | 1466 | assert(!bit.empty()); |
---|
[421b7d2] | 1467 | |
---|
| 1468 | // Add the current tree ID to the stack. |
---|
| 1469 | previous_ids.push(current_id); |
---|
| 1470 | |
---|
| 1471 | // Append the new item to the tree and set this as the current branch. |
---|
| 1472 | current_id = m_Tree->AppendItem(current_id, bit); |
---|
[44ed489] | 1473 | m_Tree->SetItemData(current_id, new TreeData(prefix.substr(0, next_dot))); |
---|
| 1474 | } while (next_dot != wxString::npos); |
---|
[421b7d2] | 1475 | } |
---|
| 1476 | // Otherwise, we must have moved up, and possibly then down again. |
---|
| 1477 | else { |
---|
[dc8d2eb] | 1478 | size_t count = 0; |
---|
[4252768] | 1479 | bool ascent_only = (prefix.length() < current_prefix.length() && |
---|
[421b7d2] | 1480 | current_prefix.StartsWith(prefix) && |
---|
[4252768] | 1481 | (current_prefix[prefix.length()] == separator || |
---|
[5627cbb] | 1482 | prefix.empty())); |
---|
[421b7d2] | 1483 | if (!ascent_only) { |
---|
[7d9e02b] | 1484 | // Find out how much of the current prefix and the new prefix |
---|
| 1485 | // are the same. |
---|
| 1486 | // Note that we require a match of a whole number of parts |
---|
| 1487 | // between dots! |
---|
[b4fe9fb] | 1488 | for (size_t i = 0; prefix[i] == current_prefix[i]; ++i) { |
---|
| 1489 | if (prefix[i] == separator) count = i + 1; |
---|
[421b7d2] | 1490 | } |
---|
[b4fe9fb] | 1491 | } else { |
---|
[4252768] | 1492 | count = prefix.length() + 1; |
---|
[421b7d2] | 1493 | } |
---|
| 1494 | |
---|
[7d9e02b] | 1495 | // Extract the part of the current prefix after the bit (if any) |
---|
| 1496 | // which has matched. |
---|
[421b7d2] | 1497 | // This gives the prefixes to ascend over. |
---|
[4252768] | 1498 | wxString prefixes_ascended = current_prefix.substr(count); |
---|
[421b7d2] | 1499 | |
---|
| 1500 | // Count the number of prefixes to ascend over. |
---|
[ee1ec59] | 1501 | int num_prefixes = prefixes_ascended.Freq(separator); |
---|
[421b7d2] | 1502 | |
---|
| 1503 | // Reverse up over these prefixes. |
---|
| 1504 | for (int i = 1; i <= num_prefixes; i++) { |
---|
| 1505 | previous_ids.pop(); |
---|
| 1506 | } |
---|
[8734409] | 1507 | current_id = previous_ids.top(); |
---|
| 1508 | previous_ids.pop(); |
---|
[421b7d2] | 1509 | |
---|
| 1510 | if (!ascent_only) { |
---|
| 1511 | // Add branches for this new part. |
---|
[44ed489] | 1512 | size_t next_dot = count - 1; |
---|
| 1513 | do { |
---|
| 1514 | size_t prev_dot = next_dot + 1; |
---|
| 1515 | |
---|
[421b7d2] | 1516 | // Extract the next bit of prefix. |
---|
[44ed489] | 1517 | next_dot = prefix.find(separator, prev_dot + 1); |
---|
[421b7d2] | 1518 | |
---|
[44ed489] | 1519 | wxString bit = prefix.substr(prev_dot, next_dot - prev_dot); |
---|
[5627cbb] | 1520 | assert(!bit.empty()); |
---|
[421b7d2] | 1521 | |
---|
| 1522 | // Add the current tree ID to the stack. |
---|
| 1523 | previous_ids.push(current_id); |
---|
| 1524 | |
---|
[44ed489] | 1525 | // Append the new item to the tree and set this as the current branch. |
---|
[421b7d2] | 1526 | current_id = m_Tree->AppendItem(current_id, bit); |
---|
[44ed489] | 1527 | m_Tree->SetItemData(current_id, new TreeData(prefix.substr(0, next_dot))); |
---|
| 1528 | } while (next_dot != wxString::npos); |
---|
[421b7d2] | 1529 | } |
---|
| 1530 | |
---|
| 1531 | current_prefix = prefix; |
---|
| 1532 | } |
---|
| 1533 | |
---|
| 1534 | // Now add the leaf. |
---|
[ee1ec59] | 1535 | wxString bit = label->GetText().AfterLast(separator); |
---|
[5627cbb] | 1536 | assert(!bit.empty()); |
---|
[421b7d2] | 1537 | wxTreeItemId id = m_Tree->AppendItem(current_id, bit); |
---|
| 1538 | m_Tree->SetItemData(id, new TreeData(label)); |
---|
[91c9bea] | 1539 | label->tree_id = id; |
---|
| 1540 | // Set the colour for an item in the survey tree. |
---|
| 1541 | if (label->IsEntrance()) { |
---|
| 1542 | // Entrances are green (like entrance blobs). |
---|
| 1543 | m_Tree->SetItemTextColour(id, wxColour(0, 255, 0)); |
---|
| 1544 | } else if (label->IsSurface()) { |
---|
| 1545 | // Surface stations are dark green. |
---|
| 1546 | m_Tree->SetItemTextColour(id, wxColour(49, 158, 79)); |
---|
| 1547 | } |
---|
[156dc16] | 1548 | } |
---|
[91c9bea] | 1549 | |
---|
| 1550 | m_Tree->Expand(treeroot); |
---|
| 1551 | m_Tree->SetEnabled(); |
---|
[156dc16] | 1552 | } |
---|
| 1553 | |
---|
[6dde19f] | 1554 | void MainFrm::SelectTreeItem(LabelInfo* label) |
---|
| 1555 | { |
---|
| 1556 | m_Tree->SelectItem(label->tree_id); |
---|
| 1557 | } |
---|
| 1558 | |
---|
[d67450e] | 1559 | void MainFrm::CentreDataset(const Vector3 & vmin) |
---|
[a6f081c] | 1560 | { |
---|
| 1561 | // Centre the dataset around the origin. |
---|
| 1562 | |
---|
[d67450e] | 1563 | m_Offsets = vmin + (m_Ext * 0.5); |
---|
[a6f081c] | 1564 | |
---|
[c61aa79] | 1565 | list<traverse>::iterator t = traverses.begin(); |
---|
[3ddcad8] | 1566 | while (t != traverses.end()) { |
---|
[faae79c] | 1567 | assert(t->size() > 1); |
---|
[d4650b3] | 1568 | vector<PointInfo>::iterator pos = t->begin(); |
---|
[3ddcad8] | 1569 | while (pos != t->end()) { |
---|
[db36155] | 1570 | Point & point = *pos++; |
---|
[d67450e] | 1571 | point -= m_Offsets; |
---|
[3ddcad8] | 1572 | } |
---|
| 1573 | ++t; |
---|
| 1574 | } |
---|
| 1575 | |
---|
| 1576 | t = surface_traverses.begin(); |
---|
| 1577 | while (t != surface_traverses.end()) { |
---|
[faae79c] | 1578 | assert(t->size() > 1); |
---|
[d4650b3] | 1579 | vector<PointInfo>::iterator pos = t->begin(); |
---|
[3ddcad8] | 1580 | while (pos != t->end()) { |
---|
[db36155] | 1581 | Point & point = *pos++; |
---|
[d67450e] | 1582 | point -= m_Offsets; |
---|
[3ddcad8] | 1583 | } |
---|
| 1584 | ++t; |
---|
[a6f081c] | 1585 | } |
---|
| 1586 | |
---|
[ee05463] | 1587 | list<vector<XSect> >::iterator i = tubes.begin(); |
---|
| 1588 | while (i != tubes.end()) { |
---|
| 1589 | assert(i->size() > 1); |
---|
| 1590 | vector<XSect>::iterator pos = i->begin(); |
---|
| 1591 | while (pos != i->end()) { |
---|
[d4650b3] | 1592 | Point & point = *pos++; |
---|
[d67450e] | 1593 | point -= m_Offsets; |
---|
[ee05463] | 1594 | } |
---|
| 1595 | ++i; |
---|
| 1596 | } |
---|
| 1597 | |
---|
[a6f081c] | 1598 | list<LabelInfo*>::iterator lpos = m_Labels.begin(); |
---|
| 1599 | while (lpos != m_Labels.end()) { |
---|
[d4650b3] | 1600 | Point & point = **lpos++; |
---|
[d67450e] | 1601 | point -= m_Offsets; |
---|
[a6f081c] | 1602 | } |
---|
| 1603 | } |
---|
| 1604 | |
---|
[732b9b0] | 1605 | void MainFrm::OnMRUFile(wxCommandEvent& event) |
---|
| 1606 | { |
---|
| 1607 | wxString f(m_history.GetHistoryFile(event.GetId() - wxID_FILE1)); |
---|
| 1608 | if (!f.empty()) OpenFile(f); |
---|
| 1609 | } |
---|
| 1610 | |
---|
[dde4fe7] | 1611 | void MainFrm::OpenFile(const wxString& file, wxString survey) |
---|
[137bf99] | 1612 | { |
---|
[4b1fc48] | 1613 | wxBusyCursor hourglass; |
---|
[0c6bf5e8] | 1614 | wxString old_file = m_File; |
---|
[1d0cd97] | 1615 | if (LoadData(file, survey)) { |
---|
[cc9eb738] | 1616 | if (wxIsAbsolutePath(m_File)) { |
---|
| 1617 | m_history.AddFileToHistory(m_File); |
---|
[eb5b48df] | 1618 | } else { |
---|
[5627cbb] | 1619 | wxString abs = wxGetCwd(); |
---|
| 1620 | abs += wxCONFIG_PATH_SEPARATOR; |
---|
| 1621 | abs += m_File; |
---|
[eb5b48df] | 1622 | m_history.AddFileToHistory(abs); |
---|
| 1623 | } |
---|
| 1624 | wxConfigBase *b = wxConfigBase::Get(); |
---|
| 1625 | m_history.Save(*b); |
---|
| 1626 | b->Flush(); |
---|
| 1627 | |
---|
[421b7d2] | 1628 | int x; |
---|
| 1629 | int y; |
---|
[0580c6a] | 1630 | GetClientSize(&x, &y); |
---|
[01faa28] | 1631 | if (x < 600) |
---|
| 1632 | x /= 3; |
---|
| 1633 | else if (x < 1000) |
---|
| 1634 | x = 200; |
---|
| 1635 | else |
---|
| 1636 | x /= 5; |
---|
[421b7d2] | 1637 | |
---|
[203d2a7] | 1638 | m_Splitter->SplitVertically(m_Notebook, m_Gfx, x); |
---|
[0580c6a] | 1639 | m_SashPosition = x; // Save width of panel. |
---|
[8000d8f] | 1640 | |
---|
[0c6bf5e8] | 1641 | m_Gfx->Initialise(old_file == m_File); |
---|
[e8adffd] | 1642 | m_Notebook->Show(true); |
---|
| 1643 | |
---|
[b72f4b5] | 1644 | m_Gfx->Show(true); |
---|
[33b2094] | 1645 | m_Gfx->SetFocus(); |
---|
[137bf99] | 1646 | } |
---|
| 1647 | } |
---|
| 1648 | |
---|
| 1649 | // |
---|
| 1650 | // UI event handlers |
---|
| 1651 | // |
---|
| 1652 | |
---|
[c988ae4] | 1653 | // For Unix we want "*.svx;*.SVX" while for Windows we only want "*.svx". |
---|
| 1654 | #ifdef _WIN32 |
---|
| 1655 | # define CASE(X) |
---|
| 1656 | #else |
---|
| 1657 | # define CASE(X) ";"X |
---|
[496a208] | 1658 | #endif |
---|
| 1659 | |
---|
[137bf99] | 1660 | void MainFrm::OnOpen(wxCommandEvent&) |
---|
| 1661 | { |
---|
[1c6b20d7] | 1662 | AvenAllowOnTop ontop(this); |
---|
[137bf99] | 1663 | #ifdef __WXMOTIF__ |
---|
[5627cbb] | 1664 | wxString filetypes = wxT("*.3d"); |
---|
[137bf99] | 1665 | #else |
---|
[c988ae4] | 1666 | wxString filetypes; |
---|
[5627cbb] | 1667 | filetypes.Printf(wxT("%s|*.3d;*.svx;*.plt;*.plf;*.dat;*.mak;*.xyz" |
---|
[c988ae4] | 1668 | CASE("*.3D;*.SVX;*.PLT;*.PLF;*.DAT;*.MAK;*.XYZ") |
---|
[71de189] | 1669 | "|%s|*.3d"CASE("*.3D") |
---|
[c988ae4] | 1670 | "|%s|*.svx"CASE("*.SVX") |
---|
| 1671 | "|%s|*.plt;*.plf"CASE("*.PLT;*.PLF") |
---|
| 1672 | "|%s|*.dat;*.mak"CASE("*.DAT;*.MAK") |
---|
| 1673 | "|%s|*.xyz"CASE("*.XYZ") |
---|
[5627cbb] | 1674 | "|%s|%s"), |
---|
| 1675 | wxT("All survey files"), |
---|
| 1676 | wmsg(/*Survex 3d files*/207).c_str(), |
---|
| 1677 | wxT("Survex svx files"), |
---|
| 1678 | wmsg(/*Compass PLT files*/324).c_str(), |
---|
| 1679 | wxT("Compass DAT and MAK files"), |
---|
| 1680 | wmsg(/*CMAP XYZ files*/325).c_str(), |
---|
| 1681 | wmsg(/*All files*/208).c_str(), |
---|
[c988ae4] | 1682 | wxFileSelectorDefaultWildcardStr); |
---|
[5627cbb] | 1683 | #endif |
---|
[c988ae4] | 1684 | // FIXME: drop "3d" from this message? |
---|
[5627cbb] | 1685 | wxFileDialog dlg(this, wmsg(/*Select a 3d file to view*/206), |
---|
| 1686 | wxString(), wxString(), |
---|
[c988ae4] | 1687 | filetypes, wxFD_OPEN|wxFD_FILE_MUST_EXIST); |
---|
[137bf99] | 1688 | if (dlg.ShowModal() == wxID_OK) { |
---|
[421b7d2] | 1689 | OpenFile(dlg.GetPath()); |
---|
[137bf99] | 1690 | } |
---|
| 1691 | } |
---|
| 1692 | |
---|
[045e2af] | 1693 | void MainFrm::OnScreenshot(wxCommandEvent&) |
---|
| 1694 | { |
---|
[1c6b20d7] | 1695 | AvenAllowOnTop ontop(this); |
---|
[f302cbaa] | 1696 | wxString baseleaf; |
---|
| 1697 | wxFileName::SplitPath(m_File, NULL, NULL, &baseleaf, NULL, wxPATH_NATIVE); |
---|
[5627cbb] | 1698 | wxFileDialog dlg(this, wmsg(/*Save Screenshot*/321), wxString(), |
---|
[f302cbaa] | 1699 | baseleaf + wxT(".png"), |
---|
[5627cbb] | 1700 | wxT("*.png"), wxFD_SAVE|wxFD_OVERWRITE_PROMPT); |
---|
[045e2af] | 1701 | if (dlg.ShowModal() == wxID_OK) { |
---|
| 1702 | static bool png_handled = false; |
---|
| 1703 | if (!png_handled) { |
---|
[4a0e6b35] | 1704 | #if 0 // FIXME : enable this to allow other export formats... |
---|
[ee41e88] | 1705 | ::wxInitAllImageHandlers(); |
---|
| 1706 | #else |
---|
[045e2af] | 1707 | wxImage::AddHandler(new wxPNGHandler); |
---|
[ee41e88] | 1708 | #endif |
---|
[045e2af] | 1709 | png_handled = true; |
---|
| 1710 | } |
---|
| 1711 | if (!m_Gfx->SaveScreenshot(dlg.GetPath(), wxBITMAP_TYPE_PNG)) { |
---|
[5627cbb] | 1712 | wxGetApp().ReportError(wxString::Format(wmsg(/*Error writing to file `%s'*/110), dlg.GetPath().c_str())); |
---|
[045e2af] | 1713 | } |
---|
| 1714 | } |
---|
| 1715 | } |
---|
| 1716 | |
---|
| 1717 | void MainFrm::OnScreenshotUpdate(wxUpdateUIEvent& event) |
---|
| 1718 | { |
---|
| 1719 | event.Enable(!m_File.empty()); |
---|
| 1720 | } |
---|
| 1721 | |
---|
[02c7c1a] | 1722 | void MainFrm::OnFilePreferences(wxCommandEvent&) |
---|
| 1723 | { |
---|
[edb6576] | 1724 | #ifdef PREFDLG |
---|
[203d2a7] | 1725 | m_PrefsDlg = new PrefsDlg(m_Gfx, this); |
---|
[02c7c1a] | 1726 | m_PrefsDlg->Show(true); |
---|
[edb6576] | 1727 | #endif |
---|
[02c7c1a] | 1728 | } |
---|
[8000d8f] | 1729 | |
---|
[ce403f1] | 1730 | void MainFrm::OnPrint(wxCommandEvent&) |
---|
| 1731 | { |
---|
| 1732 | m_Gfx->OnPrint(m_File, m_Title, m_DateStamp); |
---|
| 1733 | } |
---|
| 1734 | |
---|
| 1735 | void MainFrm::OnPageSetup(wxCommandEvent&) |
---|
| 1736 | { |
---|
[e0ffc2c] | 1737 | wxPageSetupDialog dlg(this, wxGetApp().GetPageSetupDialogData()); |
---|
| 1738 | if (dlg.ShowModal() == wxID_OK) { |
---|
| 1739 | wxGetApp().SetPageSetupDialogData(dlg.GetPageSetupData()); |
---|
| 1740 | } |
---|
[ce403f1] | 1741 | } |
---|
| 1742 | |
---|
[223f1ad] | 1743 | void MainFrm::OnExport(wxCommandEvent&) |
---|
| 1744 | { |
---|
[5940815] | 1745 | m_Gfx->OnExport(m_File, m_Title); |
---|
[223f1ad] | 1746 | } |
---|
| 1747 | |
---|
[137bf99] | 1748 | void MainFrm::OnQuit(wxCommandEvent&) |
---|
| 1749 | { |
---|
[1690fa9] | 1750 | if (m_PresList->Modified()) { |
---|
[1c6b20d7] | 1751 | AvenAllowOnTop ontop(this); |
---|
[1690fa9] | 1752 | // FIXME: better to ask "Do you want to save your changes?" and offer [Save] [Discard] [Cancel] |
---|
[5627cbb] | 1753 | if (wxMessageBox(wmsg(/*The current presentation has been modified. Abandon unsaved changes?*/327), |
---|
| 1754 | wmsg(/*Modified Presentation*/326), |
---|
[1690fa9] | 1755 | wxOK|wxCANCEL|wxICON_QUESTION) == wxCANCEL) { |
---|
| 1756 | return; |
---|
| 1757 | } |
---|
| 1758 | } |
---|
[3db0798] | 1759 | wxConfigBase *b = wxConfigBase::Get(); |
---|
| 1760 | if (IsFullScreen()) { |
---|
[5627cbb] | 1761 | b->Write(wxT("width"), -2); |
---|
| 1762 | b->DeleteEntry(wxT("height")); |
---|
[3db0798] | 1763 | } else if (IsMaximized()) { |
---|
[5627cbb] | 1764 | b->Write(wxT("width"), -1); |
---|
| 1765 | b->DeleteEntry(wxT("height")); |
---|
[3db0798] | 1766 | } else { |
---|
| 1767 | int width, height; |
---|
| 1768 | GetSize(&width, &height); |
---|
[5627cbb] | 1769 | b->Write(wxT("width"), width); |
---|
| 1770 | b->Write(wxT("height"), height); |
---|
[3db0798] | 1771 | } |
---|
| 1772 | b->Flush(); |
---|
[137bf99] | 1773 | exit(0); |
---|
| 1774 | } |
---|
| 1775 | |
---|
| 1776 | void MainFrm::OnClose(wxCloseEvent&) |
---|
| 1777 | { |
---|
[3db0798] | 1778 | wxCommandEvent dummy; |
---|
| 1779 | OnQuit(dummy); |
---|
[137bf99] | 1780 | } |
---|
| 1781 | |
---|
| 1782 | void MainFrm::OnAbout(wxCommandEvent&) |
---|
| 1783 | { |
---|
[1c6b20d7] | 1784 | AvenAllowOnTop ontop(this); |
---|
[cf5e9ee] | 1785 | AboutDlg dlg(this, icon_path); |
---|
[796aee3] | 1786 | dlg.Centre(); |
---|
| 1787 | dlg.ShowModal(); |
---|
[137bf99] | 1788 | } |
---|
[c6d95d8] | 1789 | |
---|
[7c29c976] | 1790 | void MainFrm::UpdateStatusBar() |
---|
| 1791 | { |
---|
| 1792 | if (!here_text.empty()) { |
---|
| 1793 | GetStatusBar()->SetStatusText(here_text); |
---|
| 1794 | GetStatusBar()->SetStatusText(dist_text, 1); |
---|
| 1795 | } else if (!coords_text.empty()) { |
---|
| 1796 | GetStatusBar()->SetStatusText(coords_text); |
---|
[0633bcc] | 1797 | GetStatusBar()->SetStatusText(distfree_text, 1); |
---|
[7c29c976] | 1798 | } else { |
---|
[5627cbb] | 1799 | GetStatusBar()->SetStatusText(wxString()); |
---|
| 1800 | GetStatusBar()->SetStatusText(wxString(), 1); |
---|
[7c29c976] | 1801 | } |
---|
| 1802 | } |
---|
| 1803 | |
---|
[1fd2edb] | 1804 | void MainFrm::ClearTreeSelection() |
---|
| 1805 | { |
---|
| 1806 | m_Tree->UnselectAll(); |
---|
[4b031c0] | 1807 | if (!dist_text.empty()) { |
---|
[5627cbb] | 1808 | dist_text = wxString(); |
---|
[4b031c0] | 1809 | UpdateStatusBar(); |
---|
| 1810 | } |
---|
[19026f3] | 1811 | m_Gfx->SetThere(); |
---|
[1fd2edb] | 1812 | } |
---|
| 1813 | |
---|
[156dc16] | 1814 | void MainFrm::ClearCoords() |
---|
| 1815 | { |
---|
[4b031c0] | 1816 | if (!coords_text.empty()) { |
---|
[5627cbb] | 1817 | coords_text = wxString(); |
---|
[4b031c0] | 1818 | UpdateStatusBar(); |
---|
| 1819 | } |
---|
[156dc16] | 1820 | } |
---|
| 1821 | |
---|
[d67450e] | 1822 | void MainFrm::SetCoords(const Vector3 &v) |
---|
[d877aa2] | 1823 | { |
---|
[7c29c976] | 1824 | wxString & s = coords_text; |
---|
[d877aa2] | 1825 | if (m_Gfx->GetMetric()) { |
---|
[5627cbb] | 1826 | s.Printf(wmsg(/*%.2f E, %.2f N*/338), v.GetX(), v.GetY()); |
---|
| 1827 | s += wxString::Format(wxT(", %s %.2fm"), wmsg(/*Altitude*/335).c_str(), v.GetZ()); |
---|
[d877aa2] | 1828 | } else { |
---|
[5627cbb] | 1829 | s.Printf(wmsg(/*%.2f E, %.2f N*/338), |
---|
[3d4bee1] | 1830 | v.GetX() / METRES_PER_FOOT, v.GetY() / METRES_PER_FOOT); |
---|
[5627cbb] | 1831 | s += wxString::Format(wxT(", %s %.2fft"), wmsg(/*Altitude*/335).c_str(), |
---|
[3d4bee1] | 1832 | v.GetZ() / METRES_PER_FOOT); |
---|
[d877aa2] | 1833 | } |
---|
[5627cbb] | 1834 | distfree_text = wxString(); |
---|
[7c29c976] | 1835 | UpdateStatusBar(); |
---|
[d877aa2] | 1836 | } |
---|
| 1837 | |
---|
[0633bcc] | 1838 | const LabelInfo * MainFrm::GetTreeSelection() const { |
---|
| 1839 | wxTreeItemData* sel_wx; |
---|
| 1840 | if (!m_Tree->GetSelectionData(&sel_wx)) return NULL; |
---|
| 1841 | |
---|
[44ed489] | 1842 | const TreeData* data = static_cast<const TreeData*>(sel_wx); |
---|
[0633bcc] | 1843 | if (!data->IsStation()) return NULL; |
---|
| 1844 | |
---|
| 1845 | return data->GetLabel(); |
---|
| 1846 | } |
---|
| 1847 | |
---|
[156dc16] | 1848 | void MainFrm::SetCoords(Double x, Double y) |
---|
| 1849 | { |
---|
[7c29c976] | 1850 | wxString & s = coords_text; |
---|
[33b2094] | 1851 | if (m_Gfx->GetMetric()) { |
---|
[5627cbb] | 1852 | s.Printf(wmsg(/*%.2f E, %.2f N*/338), x, y); |
---|
[7a89dc2] | 1853 | } else { |
---|
[5627cbb] | 1854 | s.Printf(wmsg(/*%.2f E, %.2f N*/338), |
---|
[3d4bee1] | 1855 | x / METRES_PER_FOOT, y / METRES_PER_FOOT); |
---|
[7a89dc2] | 1856 | } |
---|
[0633bcc] | 1857 | |
---|
[c00c6713] | 1858 | wxString & t = distfree_text; |
---|
[5627cbb] | 1859 | t = wxString(); |
---|
[c00c6713] | 1860 | const LabelInfo* label; |
---|
| 1861 | if (m_Gfx->ShowingMeasuringLine() && (label = GetTreeSelection())) { |
---|
[0633bcc] | 1862 | Vector3 delta(x - m_Offsets.GetX() - label->GetX(), |
---|
| 1863 | y - m_Offsets.GetY() - label->GetY(), 0); |
---|
| 1864 | Double dh = sqrt(delta.GetX()*delta.GetX() + delta.GetY()*delta.GetY()); |
---|
| 1865 | Double brg = deg(atan2(delta.GetX(), delta.GetY())); |
---|
| 1866 | if (brg < 0) brg += 360; |
---|
| 1867 | |
---|
| 1868 | wxString from_str; |
---|
[5627cbb] | 1869 | from_str.Printf(wmsg(/*From %s*/339), label->GetText().c_str()); |
---|
[0633bcc] | 1870 | |
---|
| 1871 | wxString brg_unit; |
---|
| 1872 | if (m_Gfx->GetDegrees()) { |
---|
[5627cbb] | 1873 | brg_unit = wmsg(/*°*/344); |
---|
[0633bcc] | 1874 | } else { |
---|
| 1875 | brg *= 400.0 / 360.0; |
---|
[5627cbb] | 1876 | brg_unit = wmsg(/*grad*/345); |
---|
[0633bcc] | 1877 | } |
---|
| 1878 | |
---|
| 1879 | if (m_Gfx->GetMetric()) { |
---|
[5627cbb] | 1880 | t.Printf(wmsg(/*%s: H %.2f%s, Brg %03d%s*/374), |
---|
| 1881 | from_str.c_str(), dh, wxT("m"), int(brg), brg_unit.c_str()); |
---|
[0633bcc] | 1882 | } else { |
---|
[5627cbb] | 1883 | t.Printf(wmsg(/*%s: H %.2f%s, Brg %03d%s*/374), |
---|
| 1884 | from_str.c_str(), dh / METRES_PER_FOOT, wxT("ft"), int(brg), |
---|
[0633bcc] | 1885 | brg_unit.c_str()); |
---|
| 1886 | } |
---|
| 1887 | } |
---|
| 1888 | |
---|
[7c29c976] | 1889 | UpdateStatusBar(); |
---|
[156dc16] | 1890 | } |
---|
| 1891 | |
---|
[7a89dc2] | 1892 | void MainFrm::SetAltitude(Double z) |
---|
[156dc16] | 1893 | { |
---|
[7c29c976] | 1894 | wxString & s = coords_text; |
---|
[33b2094] | 1895 | if (m_Gfx->GetMetric()) { |
---|
[5627cbb] | 1896 | s.Printf(wxT("%s %.2fm"), wmsg(/*Altitude*/335).c_str(), double(z)); |
---|
[7a89dc2] | 1897 | } else { |
---|
[5627cbb] | 1898 | s.Printf(wxT("%s %.2fft"), wmsg(/*Altitude*/335).c_str(), double(z / METRES_PER_FOOT)); |
---|
[7a89dc2] | 1899 | } |
---|
[0633bcc] | 1900 | |
---|
[c00c6713] | 1901 | wxString & t = distfree_text; |
---|
[5627cbb] | 1902 | t = wxString(); |
---|
[c00c6713] | 1903 | const LabelInfo* label; |
---|
| 1904 | if (m_Gfx->ShowingMeasuringLine() && (label = GetTreeSelection())) { |
---|
[0633bcc] | 1905 | Double dz = z - m_Offsets.GetZ() - label->GetZ(); |
---|
| 1906 | |
---|
| 1907 | wxString from_str; |
---|
[5627cbb] | 1908 | from_str.Printf(wmsg(/*From %s*/339), label->GetText().c_str()); |
---|
[0633bcc] | 1909 | |
---|
| 1910 | if (m_Gfx->GetMetric()) { |
---|
[5627cbb] | 1911 | t.Printf(wmsg(/*%s: V %.2f%s*/375), |
---|
| 1912 | from_str.c_str(), dz, wxT("m")); |
---|
[0633bcc] | 1913 | } else { |
---|
[5627cbb] | 1914 | t.Printf(wmsg(/*%s: V %.2f%s*/375), |
---|
| 1915 | from_str.c_str(), dz / METRES_PER_FOOT, wxT("ft")); |
---|
[0633bcc] | 1916 | } |
---|
| 1917 | } |
---|
| 1918 | |
---|
[7c29c976] | 1919 | UpdateStatusBar(); |
---|
[2a3d328] | 1920 | } |
---|
| 1921 | |
---|
[0633bcc] | 1922 | void MainFrm::ShowInfo(const LabelInfo *here) |
---|
[7a89dc2] | 1923 | { |
---|
| 1924 | assert(m_Gfx); |
---|
[f433fda] | 1925 | |
---|
[0633bcc] | 1926 | if (!here) { |
---|
[7c29c976] | 1927 | m_Gfx->SetHere(); |
---|
[570d62c3] | 1928 | m_Tree->SetHere(wxTreeItemId()); |
---|
[1235f9b] | 1929 | // Don't clear "There" mark here. |
---|
[4b031c0] | 1930 | if (here_text.empty() && dist_text.empty()) return; |
---|
[5627cbb] | 1931 | here_text = wxString(); |
---|
| 1932 | dist_text = wxString(); |
---|
[7c29c976] | 1933 | UpdateStatusBar(); |
---|
| 1934 | return; |
---|
| 1935 | } |
---|
| 1936 | |
---|
[0633bcc] | 1937 | Vector3 v = *here + m_Offsets; |
---|
[7c29c976] | 1938 | wxString & s = here_text; |
---|
[33b2094] | 1939 | if (m_Gfx->GetMetric()) { |
---|
[5627cbb] | 1940 | s.Printf(wmsg(/*%.2f E, %.2f N*/338), v.GetX(), v.GetY()); |
---|
| 1941 | s += wxString::Format(wxT(", %s %.2fm"), wmsg(/*Altitude*/335).c_str(), v.GetZ()); |
---|
[7a89dc2] | 1942 | } else { |
---|
[5627cbb] | 1943 | s.Printf(wmsg(/*%.2f E, %.2f N*/338), |
---|
[3d4bee1] | 1944 | v.GetX() / METRES_PER_FOOT, v.GetY() / METRES_PER_FOOT); |
---|
[5627cbb] | 1945 | s += wxString::Format(wxT(", %s %.2fft"), wmsg(/*Altitude*/335).c_str(), |
---|
[3d4bee1] | 1946 | v.GetZ() / METRES_PER_FOOT); |
---|
[7a89dc2] | 1947 | } |
---|
[5627cbb] | 1948 | s += wxT(": "); |
---|
[5a24583] | 1949 | s += here->GetText(); |
---|
[0633bcc] | 1950 | m_Gfx->SetHere(*here); |
---|
[570d62c3] | 1951 | m_Tree->SetHere(here->tree_id); |
---|
[7a89dc2] | 1952 | |
---|
[c00c6713] | 1953 | const LabelInfo* label; |
---|
| 1954 | if (m_Gfx->ShowingMeasuringLine() && (label = GetTreeSelection())) { |
---|
[0633bcc] | 1955 | Vector3 delta = *here - *label; |
---|
[d67450e] | 1956 | |
---|
[0633bcc] | 1957 | Double d_horiz = sqrt(delta.GetX()*delta.GetX() + delta.GetY()*delta.GetY()); |
---|
| 1958 | Double dr = delta.magnitude(); |
---|
[d67450e] | 1959 | |
---|
[0633bcc] | 1960 | Double brg = deg(atan2(delta.GetX(), delta.GetY())); |
---|
| 1961 | if (brg < 0) brg += 360; |
---|
[421b7d2] | 1962 | |
---|
[0633bcc] | 1963 | wxString from_str; |
---|
[5627cbb] | 1964 | from_str.Printf(wmsg(/*From %s*/339), label->GetText().c_str()); |
---|
[203d2a7] | 1965 | |
---|
[0633bcc] | 1966 | wxString hv_str; |
---|
| 1967 | if (m_Gfx->GetMetric()) { |
---|
[5627cbb] | 1968 | hv_str.Printf(wmsg(/*H %.2f%s, V %.2f%s*/340), |
---|
| 1969 | d_horiz, wxT("m"), delta.GetZ(), wxT("m")); |
---|
[0633bcc] | 1970 | } else { |
---|
[5627cbb] | 1971 | hv_str.Printf(wmsg(/*H %.2f%s, V %.2f%s*/340), |
---|
| 1972 | d_horiz / METRES_PER_FOOT, wxT("ft"), |
---|
| 1973 | delta.GetZ() / METRES_PER_FOOT, wxT("ft")); |
---|
[0633bcc] | 1974 | } |
---|
| 1975 | wxString brg_unit; |
---|
| 1976 | if (m_Gfx->GetDegrees()) { |
---|
[5627cbb] | 1977 | brg_unit = wmsg(/*°*/344); |
---|
[7a89dc2] | 1978 | } else { |
---|
[0633bcc] | 1979 | brg *= 400.0 / 360.0; |
---|
[5627cbb] | 1980 | brg_unit = wmsg(/*grad*/345); |
---|
[421b7d2] | 1981 | } |
---|
[0633bcc] | 1982 | wxString & d = dist_text; |
---|
| 1983 | if (m_Gfx->GetMetric()) { |
---|
[5627cbb] | 1984 | d.Printf(wmsg(/*%s: %s, Dist %.2f%s, Brg %03d%s*/341), |
---|
[0633bcc] | 1985 | from_str.c_str(), hv_str.c_str(), |
---|
[5627cbb] | 1986 | dr, wxT("m"), int(brg), brg_unit.c_str()); |
---|
[0633bcc] | 1987 | } else { |
---|
[5627cbb] | 1988 | d.Printf(wmsg(/*%s: %s, Dist %.2f%s, Brg %03d%s*/341), |
---|
[0633bcc] | 1989 | from_str.c_str(), hv_str.c_str(), |
---|
[5627cbb] | 1990 | dr / METRES_PER_FOOT, wxT("ft"), int(brg), |
---|
[0633bcc] | 1991 | brg_unit.c_str()); |
---|
| 1992 | } |
---|
| 1993 | m_Gfx->SetThere(*label); |
---|
| 1994 | } else { |
---|
[5627cbb] | 1995 | dist_text = wxString(); |
---|
[0633bcc] | 1996 | m_Gfx->SetThere(); |
---|
[156dc16] | 1997 | } |
---|
[7c29c976] | 1998 | UpdateStatusBar(); |
---|
[7a89dc2] | 1999 | } |
---|
| 2000 | |
---|
[8734409] | 2001 | void MainFrm::DisplayTreeInfo(const wxTreeItemData* item) |
---|
[7a89dc2] | 2002 | { |
---|
[8734409] | 2003 | const TreeData* data = static_cast<const TreeData*>(item); |
---|
[887c26e] | 2004 | if (data && data->IsStation()) { |
---|
| 2005 | const LabelInfo * label = data->GetLabel(); |
---|
| 2006 | ShowInfo(label); |
---|
| 2007 | m_Gfx->SetHere(*label); |
---|
| 2008 | } else { |
---|
[7c29c976] | 2009 | ShowInfo(NULL); |
---|
[156dc16] | 2010 | } |
---|
| 2011 | } |
---|
| 2012 | |
---|
[44ed489] | 2013 | void MainFrm::TreeItemSelected(const wxTreeItemData* item, bool zoom) |
---|
[156dc16] | 2014 | { |
---|
[44ed489] | 2015 | const TreeData* data = static_cast<const TreeData*>(item); |
---|
[156dc16] | 2016 | if (data && data->IsStation()) { |
---|
[8734409] | 2017 | const LabelInfo* label = data->GetLabel(); |
---|
[44ed489] | 2018 | if (zoom) m_Gfx->CentreOn(*label); |
---|
[82c3731] | 2019 | m_Gfx->SetThere(*label); |
---|
[5627cbb] | 2020 | dist_text = wxString(); |
---|
[7c29c976] | 2021 | // FIXME: Need to update dist_text (From ... etc) |
---|
[887c26e] | 2022 | // But we don't currently know where "here" is at this point in the |
---|
| 2023 | // code! |
---|
[0580c6a] | 2024 | } else { |
---|
[5627cbb] | 2025 | dist_text = wxString(); |
---|
[0580c6a] | 2026 | m_Gfx->SetThere(); |
---|
[156dc16] | 2027 | } |
---|
[44ed489] | 2028 | if (!data) { |
---|
| 2029 | // Must be the root. |
---|
[5627cbb] | 2030 | m_FindBox->SetValue(wxString()); |
---|
[44ed489] | 2031 | if (zoom) { |
---|
| 2032 | wxCommandEvent dummy; |
---|
| 2033 | OnDefaults(dummy); |
---|
| 2034 | } |
---|
| 2035 | } else if (data && !data->IsStation()) { |
---|
[5627cbb] | 2036 | m_FindBox->SetValue(data->GetSurvey() + wxT(".*")); |
---|
[44ed489] | 2037 | if (zoom) { |
---|
| 2038 | wxCommandEvent dummy; |
---|
| 2039 | OnGotoFound(dummy); |
---|
| 2040 | } |
---|
| 2041 | } |
---|
[7c29c976] | 2042 | UpdateStatusBar(); |
---|
[156dc16] | 2043 | } |
---|
| 2044 | |
---|
[97a414f] | 2045 | void MainFrm::OnPresNew(wxCommandEvent&) |
---|
[156dc16] | 2046 | { |
---|
[1690fa9] | 2047 | if (m_PresList->Modified()) { |
---|
[1c6b20d7] | 2048 | AvenAllowOnTop ontop(this); |
---|
[1690fa9] | 2049 | // FIXME: better to ask "Do you want to save your changes?" and offer [Save] [Discard] [Cancel] |
---|
[5627cbb] | 2050 | if (wxMessageBox(wmsg(/*The current presentation has been modified. Abandon unsaved changes?*/327), |
---|
| 2051 | wmsg(/*Modified Presentation*/326), |
---|
[1690fa9] | 2052 | wxOK|wxCANCEL|wxICON_QUESTION) == wxCANCEL) { |
---|
| 2053 | return; |
---|
| 2054 | } |
---|
[156dc16] | 2055 | } |
---|
[bd7607c] | 2056 | m_PresList->New(m_File); |
---|
[24961e2] | 2057 | if (!ShowingSidePanel()) ToggleSidePanel(); |
---|
[c8f929b] | 2058 | // Select the presentation page in the notebook. |
---|
| 2059 | m_Notebook->SetSelection(1); |
---|
[156dc16] | 2060 | } |
---|
| 2061 | |
---|
[97a414f] | 2062 | void MainFrm::OnPresOpen(wxCommandEvent&) |
---|
[156dc16] | 2063 | { |
---|
[1c6b20d7] | 2064 | AvenAllowOnTop ontop(this); |
---|
[1690fa9] | 2065 | if (m_PresList->Modified()) { |
---|
| 2066 | // FIXME: better to ask "Do you want to save your changes?" and offer [Save] [Discard] [Cancel] |
---|
[5627cbb] | 2067 | if (wxMessageBox(wmsg(/*The current presentation has been modified. Abandon unsaved changes?*/327), |
---|
| 2068 | wmsg(/*Modified Presentation*/326), |
---|
[1690fa9] | 2069 | wxOK|wxCANCEL|wxICON_QUESTION) == wxCANCEL) { |
---|
| 2070 | return; |
---|
| 2071 | } |
---|
| 2072 | } |
---|
[156dc16] | 2073 | #ifdef __WXMOTIF__ |
---|
[5627cbb] | 2074 | wxFileDialog dlg(this, wmsg(/*Select a presentation to open*/322), wxString(), wxString(), |
---|
| 2075 | wxT("*.fly"), wxFD_OPEN); |
---|
[156dc16] | 2076 | #else |
---|
[5627cbb] | 2077 | wxFileDialog dlg(this, wmsg(/*Select a presentation to open*/322), wxString(), wxString(), |
---|
| 2078 | wxString::Format(wxT("%s|*.fly|%s|%s"), |
---|
| 2079 | wmsg(/*Aven presentations*/320).c_str(), |
---|
| 2080 | wmsg(/*All files*/208).c_str(), |
---|
| 2081 | wxFileSelectorDefaultWildcardStr), |
---|
| 2082 | wxFD_OPEN|wxFD_FILE_MUST_EXIST); |
---|
[156dc16] | 2083 | #endif |
---|
| 2084 | if (dlg.ShowModal() == wxID_OK) { |
---|
[1690fa9] | 2085 | if (!m_PresList->Load(dlg.GetPath())) { |
---|
| 2086 | return; |
---|
| 2087 | } |
---|
[97a414f] | 2088 | // FIXME : keep a history of loaded/saved presentations, like we do for |
---|
| 2089 | // loaded surveys... |
---|
[c8f929b] | 2090 | // Select the presentation page in the notebook. |
---|
| 2091 | m_Notebook->SetSelection(1); |
---|
[156dc16] | 2092 | } |
---|
| 2093 | } |
---|
[5ffa439] | 2094 | |
---|
[97a414f] | 2095 | void MainFrm::OnPresSave(wxCommandEvent&) |
---|
[8000d8f] | 2096 | { |
---|
[1690fa9] | 2097 | m_PresList->Save(true); |
---|
[8000d8f] | 2098 | } |
---|
| 2099 | |
---|
[97a414f] | 2100 | void MainFrm::OnPresSaveAs(wxCommandEvent&) |
---|
[5ffa439] | 2101 | { |
---|
[1690fa9] | 2102 | m_PresList->Save(false); |
---|
[5ffa439] | 2103 | } |
---|
| 2104 | |
---|
[97a414f] | 2105 | void MainFrm::OnPresMark(wxCommandEvent&) |
---|
[5ffa439] | 2106 | { |
---|
[1690fa9] | 2107 | m_PresList->AddMark(); |
---|
[5ffa439] | 2108 | } |
---|
| 2109 | |
---|
[128fac4] | 2110 | void MainFrm::OnPresFRewind(wxCommandEvent&) |
---|
| 2111 | { |
---|
| 2112 | m_Gfx->PlayPres(-100); |
---|
| 2113 | } |
---|
| 2114 | |
---|
| 2115 | void MainFrm::OnPresRewind(wxCommandEvent&) |
---|
| 2116 | { |
---|
| 2117 | m_Gfx->PlayPres(-10); |
---|
| 2118 | } |
---|
| 2119 | |
---|
| 2120 | void MainFrm::OnPresReverse(wxCommandEvent&) |
---|
| 2121 | { |
---|
| 2122 | m_Gfx->PlayPres(-1); |
---|
| 2123 | } |
---|
| 2124 | |
---|
| 2125 | void MainFrm::OnPresPlay(wxCommandEvent&) |
---|
[5ffa439] | 2126 | { |
---|
[128fac4] | 2127 | m_Gfx->PlayPres(1); |
---|
| 2128 | } |
---|
| 2129 | |
---|
| 2130 | void MainFrm::OnPresFF(wxCommandEvent&) |
---|
| 2131 | { |
---|
| 2132 | m_Gfx->PlayPres(10); |
---|
| 2133 | } |
---|
| 2134 | |
---|
| 2135 | void MainFrm::OnPresFFF(wxCommandEvent&) |
---|
| 2136 | { |
---|
| 2137 | m_Gfx->PlayPres(100); |
---|
| 2138 | } |
---|
| 2139 | |
---|
| 2140 | void MainFrm::OnPresPause(wxCommandEvent&) |
---|
| 2141 | { |
---|
| 2142 | m_Gfx->PlayPres(0); |
---|
| 2143 | } |
---|
| 2144 | |
---|
| 2145 | void MainFrm::OnPresStop(wxCommandEvent&) |
---|
| 2146 | { |
---|
| 2147 | m_Gfx->PlayPres(0, false); |
---|
[5ffa439] | 2148 | } |
---|
| 2149 | |
---|
[97a414f] | 2150 | void MainFrm::OnPresExportMovie(wxCommandEvent&) |
---|
[6a4cdcb6] | 2151 | { |
---|
[1c6b20d7] | 2152 | AvenAllowOnTop ontop(this); |
---|
[97a414f] | 2153 | // FIXME : Taking the leaf of the currently loaded presentation as the |
---|
| 2154 | // default might make more sense? |
---|
[f302cbaa] | 2155 | wxString baseleaf; |
---|
| 2156 | wxFileName::SplitPath(m_File, NULL, NULL, &baseleaf, NULL, wxPATH_NATIVE); |
---|
[5627cbb] | 2157 | wxFileDialog dlg(this, wxT("Export Movie"), wxString(), |
---|
[f302cbaa] | 2158 | baseleaf + wxT(".mpg"), |
---|
[5627cbb] | 2159 | wxT("MPEG|*.mpg|AVI|*.avi|QuickTime|*.mov|WMV|*.wmv;*.asf"), |
---|
[4e98397] | 2160 | wxFD_SAVE|wxFD_OVERWRITE_PROMPT); |
---|
[97a414f] | 2161 | if (dlg.ShowModal() == wxID_OK) { |
---|
| 2162 | if (!m_Gfx->ExportMovie(dlg.GetPath())) { |
---|
[5627cbb] | 2163 | wxGetApp().ReportError(wxString::Format(wmsg(/*Error writing to file `%s'*/110), dlg.GetPath().c_str())); |
---|
[97a414f] | 2164 | } |
---|
[6a4cdcb6] | 2165 | } |
---|
| 2166 | } |
---|
| 2167 | |
---|
[1690fa9] | 2168 | PresentationMark MainFrm::GetPresMark(int which) |
---|
[5ffa439] | 2169 | { |
---|
[1690fa9] | 2170 | return m_PresList->GetPresMark(which); |
---|
[5ffa439] | 2171 | } |
---|
| 2172 | |
---|
[1690fa9] | 2173 | //void MainFrm::OnFileOpenTerrainUpdate(wxUpdateUIEvent& event) |
---|
| 2174 | //{ |
---|
| 2175 | // event.Enable(!m_File.empty()); |
---|
| 2176 | //} |
---|
| 2177 | |
---|
| 2178 | void MainFrm::OnPresNewUpdate(wxUpdateUIEvent& event) |
---|
[5ffa439] | 2179 | { |
---|
[1366db2] | 2180 | event.Enable(!m_File.empty()); |
---|
[5ffa439] | 2181 | } |
---|
| 2182 | |
---|
[1690fa9] | 2183 | void MainFrm::OnPresOpenUpdate(wxUpdateUIEvent& event) |
---|
[5ffa439] | 2184 | { |
---|
[1690fa9] | 2185 | event.Enable(!m_File.empty()); |
---|
[5ffa439] | 2186 | } |
---|
| 2187 | |
---|
[1690fa9] | 2188 | void MainFrm::OnPresSaveUpdate(wxUpdateUIEvent& event) |
---|
[5ffa439] | 2189 | { |
---|
[1690fa9] | 2190 | event.Enable(!m_PresList->Empty()); |
---|
[5ffa439] | 2191 | } |
---|
| 2192 | |
---|
[1690fa9] | 2193 | void MainFrm::OnPresSaveAsUpdate(wxUpdateUIEvent& event) |
---|
[5ffa439] | 2194 | { |
---|
[1690fa9] | 2195 | event.Enable(!m_PresList->Empty()); |
---|
[5ffa439] | 2196 | } |
---|
| 2197 | |
---|
[1690fa9] | 2198 | void MainFrm::OnPresMarkUpdate(wxUpdateUIEvent& event) |
---|
[5ffa439] | 2199 | { |
---|
[1690fa9] | 2200 | event.Enable(!m_File.empty()); |
---|
| 2201 | } |
---|
| 2202 | |
---|
[128fac4] | 2203 | void MainFrm::OnPresFRewindUpdate(wxUpdateUIEvent& event) |
---|
| 2204 | { |
---|
| 2205 | event.Enable(m_Gfx && m_Gfx->GetPresentationMode()); |
---|
| 2206 | event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() < -10); |
---|
| 2207 | } |
---|
| 2208 | |
---|
| 2209 | void MainFrm::OnPresRewindUpdate(wxUpdateUIEvent& event) |
---|
| 2210 | { |
---|
| 2211 | event.Enable(m_Gfx && m_Gfx->GetPresentationMode()); |
---|
| 2212 | event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() == -10); |
---|
| 2213 | } |
---|
| 2214 | |
---|
| 2215 | void MainFrm::OnPresReverseUpdate(wxUpdateUIEvent& event) |
---|
| 2216 | { |
---|
| 2217 | event.Enable(m_Gfx && m_Gfx->GetPresentationMode()); |
---|
| 2218 | event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() == -1); |
---|
| 2219 | } |
---|
| 2220 | |
---|
| 2221 | void MainFrm::OnPresPlayUpdate(wxUpdateUIEvent& event) |
---|
[1690fa9] | 2222 | { |
---|
| 2223 | event.Enable(!m_PresList->Empty()); |
---|
[128fac4] | 2224 | event.Check(m_Gfx && m_Gfx->GetPresentationMode() && |
---|
| 2225 | m_Gfx->GetPresentationSpeed() == 1); |
---|
| 2226 | } |
---|
| 2227 | |
---|
| 2228 | void MainFrm::OnPresFFUpdate(wxUpdateUIEvent& event) |
---|
| 2229 | { |
---|
| 2230 | event.Enable(m_Gfx && m_Gfx->GetPresentationMode()); |
---|
| 2231 | event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() == 10); |
---|
| 2232 | } |
---|
| 2233 | |
---|
| 2234 | void MainFrm::OnPresFFFUpdate(wxUpdateUIEvent& event) |
---|
| 2235 | { |
---|
| 2236 | event.Enable(m_Gfx && m_Gfx->GetPresentationMode()); |
---|
| 2237 | event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() > 10); |
---|
| 2238 | } |
---|
| 2239 | |
---|
| 2240 | void MainFrm::OnPresPauseUpdate(wxUpdateUIEvent& event) |
---|
| 2241 | { |
---|
| 2242 | event.Enable(m_Gfx && m_Gfx->GetPresentationMode()); |
---|
| 2243 | event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() == 0); |
---|
| 2244 | } |
---|
| 2245 | |
---|
| 2246 | void MainFrm::OnPresStopUpdate(wxUpdateUIEvent& event) |
---|
| 2247 | { |
---|
| 2248 | event.Enable(m_Gfx && m_Gfx->GetPresentationMode()); |
---|
[5ffa439] | 2249 | } |
---|
[2a02de2] | 2250 | |
---|
[6a4cdcb6] | 2251 | void MainFrm::OnPresExportMovieUpdate(wxUpdateUIEvent& event) |
---|
| 2252 | { |
---|
| 2253 | event.Enable(!m_PresList->Empty()); |
---|
| 2254 | } |
---|
| 2255 | |
---|
[b4fe9fb] | 2256 | void MainFrm::OnFind(wxCommandEvent&) |
---|
[2a02de2] | 2257 | { |
---|
[e98af57] | 2258 | wxBusyCursor hourglass; |
---|
[44ed489] | 2259 | // Find stations specified by a string or regular expression pattern. |
---|
[9d3d8cc] | 2260 | |
---|
[0580c6a] | 2261 | wxString pattern = m_FindBox->GetValue(); |
---|
[d1628e8e] | 2262 | if (pattern.empty()) { |
---|
| 2263 | // Hide any search result highlights. |
---|
| 2264 | list<LabelInfo*>::iterator pos = m_Labels.begin(); |
---|
| 2265 | while (pos != m_Labels.end()) { |
---|
| 2266 | LabelInfo* label = *pos++; |
---|
[5a24583] | 2267 | label->clear_flags(LFLAG_HIGHLIGHTED); |
---|
[c8aff97] | 2268 | } |
---|
[d1628e8e] | 2269 | m_NumHighlighted = 0; |
---|
[0c76ad9] | 2270 | } else { |
---|
[d1628e8e] | 2271 | int re_flags = wxRE_NOSUB; |
---|
| 2272 | |
---|
| 2273 | if (true /* case insensitive */) { |
---|
| 2274 | re_flags |= wxRE_ICASE; |
---|
[0c76ad9] | 2275 | } |
---|
| 2276 | |
---|
[d1628e8e] | 2277 | bool substring = true; |
---|
| 2278 | if (false /*m_RegexpCheckBox->GetValue()*/) { |
---|
| 2279 | re_flags |= wxRE_EXTENDED; |
---|
| 2280 | } else if (true /* simple glob-style */) { |
---|
| 2281 | wxString pat; |
---|
| 2282 | for (size_t i = 0; i < pattern.size(); i++) { |
---|
[5627cbb] | 2283 | wxChar ch = pattern[i]; |
---|
[d1628e8e] | 2284 | // ^ only special at start; $ at end. But this is simpler... |
---|
| 2285 | switch (ch) { |
---|
| 2286 | case '^': case '$': case '.': case '[': case '\\': |
---|
[5627cbb] | 2287 | pat += wxT('\\'); |
---|
[d1628e8e] | 2288 | pat += ch; |
---|
| 2289 | break; |
---|
| 2290 | case '*': |
---|
[5627cbb] | 2291 | pat += wxT(".*"); |
---|
[d1628e8e] | 2292 | substring = false; |
---|
| 2293 | break; |
---|
| 2294 | case '?': |
---|
[5627cbb] | 2295 | pat += wxT('.'); |
---|
[d1628e8e] | 2296 | substring = false; |
---|
| 2297 | break; |
---|
| 2298 | default: |
---|
| 2299 | pat += ch; |
---|
| 2300 | } |
---|
| 2301 | } |
---|
| 2302 | pattern = pat; |
---|
| 2303 | re_flags |= wxRE_BASIC; |
---|
| 2304 | } else { |
---|
| 2305 | wxString pat; |
---|
| 2306 | for (size_t i = 0; i < pattern.size(); i++) { |
---|
[5627cbb] | 2307 | wxChar ch = pattern[i]; |
---|
[d1628e8e] | 2308 | // ^ only special at start; $ at end. But this is simpler... |
---|
| 2309 | switch (ch) { |
---|
| 2310 | case '^': case '$': case '*': case '.': case '[': case '\\': |
---|
[5627cbb] | 2311 | pat += wxT('\\'); |
---|
[d1628e8e] | 2312 | } |
---|
| 2313 | pat += ch; |
---|
| 2314 | } |
---|
| 2315 | pattern = pat; |
---|
| 2316 | re_flags |= wxRE_BASIC; |
---|
| 2317 | } |
---|
[421b7d2] | 2318 | |
---|
[d1628e8e] | 2319 | if (!substring) { |
---|
| 2320 | // FIXME "0u" required to avoid compilation error with g++-3.0 |
---|
[5627cbb] | 2321 | if (pattern.empty() || pattern[0u] != '^') pattern = wxT('^') + pattern; |
---|
[d1628e8e] | 2322 | // FIXME: this fails to cope with "\$" at the end of pattern... |
---|
[5627cbb] | 2323 | if (pattern[pattern.size() - 1] != '$') pattern += wxT('$'); |
---|
[d1628e8e] | 2324 | } |
---|
[2a02de2] | 2325 | |
---|
[d1628e8e] | 2326 | wxRegEx regex; |
---|
| 2327 | if (!regex.Compile(pattern, re_flags)) { |
---|
| 2328 | wxBell(); |
---|
| 2329 | return; |
---|
| 2330 | } |
---|
[2a02de2] | 2331 | |
---|
[d1628e8e] | 2332 | int found = 0; |
---|
[1be3a88] | 2333 | |
---|
[d1628e8e] | 2334 | list<LabelInfo*>::iterator pos = m_Labels.begin(); |
---|
| 2335 | while (pos != m_Labels.end()) { |
---|
| 2336 | LabelInfo* label = *pos++; |
---|
| 2337 | |
---|
[5a24583] | 2338 | if (regex.Matches(label->GetText())) { |
---|
| 2339 | label->set_flags(LFLAG_HIGHLIGHTED); |
---|
[d1628e8e] | 2340 | ++found; |
---|
| 2341 | } else { |
---|
[5a24583] | 2342 | label->clear_flags(LFLAG_HIGHLIGHTED); |
---|
[d1628e8e] | 2343 | } |
---|
[1be3a88] | 2344 | } |
---|
| 2345 | |
---|
[d1628e8e] | 2346 | m_NumHighlighted = found; |
---|
| 2347 | |
---|
| 2348 | // Re-sort so highlighted points get names in preference |
---|
| 2349 | if (found) m_Labels.sort(LabelPlotCmp(separator)); |
---|
| 2350 | } |
---|
[421b7d2] | 2351 | |
---|
[429465a] | 2352 | m_Gfx->UpdateBlobs(); |
---|
[fa42426] | 2353 | m_Gfx->ForceRefresh(); |
---|
[9d3d8cc] | 2354 | |
---|
[d1628e8e] | 2355 | if (!m_NumHighlighted) { |
---|
[5627cbb] | 2356 | GetToolBar()->SetToolShortHelp(button_HIDE, wmsg(/*No matches were found.*/328)); |
---|
[a2f4720] | 2357 | } else { |
---|
[5627cbb] | 2358 | GetToolBar()->SetToolShortHelp(button_HIDE, wxString::Format(wxT("Unhilight %d found stations"), m_NumHighlighted)); |
---|
[9d3d8cc] | 2359 | } |
---|
[2a02de2] | 2360 | } |
---|
| 2361 | |
---|
[d1628e8e] | 2362 | void MainFrm::OnGotoFound(wxCommandEvent&) |
---|
[2a02de2] | 2363 | { |
---|
[d1628e8e] | 2364 | if (!m_NumHighlighted) { |
---|
[5627cbb] | 2365 | wxGetApp().ReportError(wmsg(/*No matches were found.*/328)); |
---|
[d1628e8e] | 2366 | return; |
---|
| 2367 | } |
---|
| 2368 | |
---|
| 2369 | Double xmin = DBL_MAX; |
---|
| 2370 | Double xmax = -DBL_MAX; |
---|
| 2371 | Double ymin = DBL_MAX; |
---|
| 2372 | Double ymax = -DBL_MAX; |
---|
| 2373 | Double zmin = DBL_MAX; |
---|
| 2374 | Double zmax = -DBL_MAX; |
---|
| 2375 | |
---|
[fa42426] | 2376 | list<LabelInfo*>::iterator pos = m_Labels.begin(); |
---|
| 2377 | while (pos != m_Labels.end()) { |
---|
| 2378 | LabelInfo* label = *pos++; |
---|
[d1628e8e] | 2379 | |
---|
[5a24583] | 2380 | if (label->get_flags() & LFLAG_HIGHLIGHTED) { |
---|
| 2381 | if (label->GetX() < xmin) xmin = label->GetX(); |
---|
| 2382 | if (label->GetX() > xmax) xmax = label->GetX(); |
---|
| 2383 | if (label->GetY() < ymin) ymin = label->GetY(); |
---|
| 2384 | if (label->GetY() > ymax) ymax = label->GetY(); |
---|
| 2385 | if (label->GetZ() < zmin) zmin = label->GetZ(); |
---|
| 2386 | if (label->GetZ() > zmax) zmax = label->GetZ(); |
---|
[d1628e8e] | 2387 | } |
---|
[fa42426] | 2388 | } |
---|
[d1628e8e] | 2389 | |
---|
| 2390 | m_Gfx->SetViewTo(xmin, xmax, ymin, ymax, zmin, zmax); |
---|
| 2391 | m_Gfx->SetFocus(); |
---|
| 2392 | } |
---|
| 2393 | |
---|
| 2394 | void MainFrm::OnHide(wxCommandEvent&) |
---|
| 2395 | { |
---|
[5627cbb] | 2396 | m_FindBox->SetValue(wxString()); |
---|
[2a02de2] | 2397 | } |
---|
[39e460c9] | 2398 | |
---|
[429465a] | 2399 | void MainFrm::OnHideUpdate(wxUpdateUIEvent& ui) |
---|
| 2400 | { |
---|
| 2401 | ui.Enable(m_NumHighlighted != 0); |
---|
| 2402 | } |
---|
| 2403 | |
---|
[9059368] | 2404 | void MainFrm::OnViewSidePanel(wxCommandEvent&) |
---|
[b1de3e0] | 2405 | { |
---|
| 2406 | ToggleSidePanel(); |
---|
| 2407 | } |
---|
| 2408 | |
---|
| 2409 | void MainFrm::ToggleSidePanel() |
---|
[9059368] | 2410 | { |
---|
| 2411 | // Toggle display of the side panel. |
---|
| 2412 | |
---|
| 2413 | assert(m_Gfx); |
---|
| 2414 | |
---|
| 2415 | if (m_Splitter->IsSplit()) { |
---|
[421b7d2] | 2416 | m_SashPosition = m_Splitter->GetSashPosition(); // save width of panel |
---|
[1690fa9] | 2417 | m_Splitter->Unsplit(m_Notebook); |
---|
[b63cf6cc] | 2418 | } else { |
---|
[203d2a7] | 2419 | m_Notebook->Show(true); |
---|
[b1de3e0] | 2420 | m_Gfx->Show(true); |
---|
[203d2a7] | 2421 | m_Splitter->SplitVertically(m_Notebook, m_Gfx, m_SashPosition); |
---|
[9059368] | 2422 | } |
---|
| 2423 | } |
---|
| 2424 | |
---|
| 2425 | void MainFrm::OnViewSidePanelUpdate(wxUpdateUIEvent& ui) |
---|
| 2426 | { |
---|
[f48d6949] | 2427 | ui.Enable(!m_File.empty()); |
---|
[203d2a7] | 2428 | ui.Check(ShowingSidePanel()); |
---|
[9059368] | 2429 | } |
---|
[203d2a7] | 2430 | |
---|
| 2431 | bool MainFrm::ShowingSidePanel() |
---|
| 2432 | { |
---|
| 2433 | return m_Splitter->IsSplit(); |
---|
| 2434 | } |
---|
[fdfa926] | 2435 | |
---|
| 2436 | void MainFrm::ViewFullScreen() { |
---|
| 2437 | ShowFullScreen(!IsFullScreen()); |
---|
| 2438 | static bool sidepanel; |
---|
| 2439 | if (IsFullScreen()) sidepanel = ShowingSidePanel(); |
---|
| 2440 | if (sidepanel) ToggleSidePanel(); |
---|
[b72f4b5] | 2441 | #ifdef __WXGTK__ |
---|
[fdfa926] | 2442 | // wxGTK doesn't currently remove the toolbar, statusbar, or menubar. |
---|
| 2443 | // Can't work out how to lose the menubar right now, but this works for |
---|
| 2444 | // the other two. FIXME: tidy this code up and submit a patch for |
---|
[1324d6c] | 2445 | // wxWidgets. |
---|
[fdfa926] | 2446 | wxToolBar *tb = GetToolBar(); |
---|
| 2447 | if (tb) tb->Show(!IsFullScreen()); |
---|
| 2448 | wxStatusBar *sb = GetStatusBar(); |
---|
| 2449 | if (sb) sb->Show(!IsFullScreen()); |
---|
| 2450 | #if 0 |
---|
| 2451 | // FIXME: This sort of works, but we lose the top-level shortcuts |
---|
| 2452 | // (e.g. alt-F for File) |
---|
| 2453 | wxMenuBar *mb = GetMenuBar(); |
---|
| 2454 | if (mb) { |
---|
| 2455 | static list<wxMenu *> menus; |
---|
| 2456 | static list<wxString> labels; |
---|
| 2457 | if (IsFullScreen()) { |
---|
| 2458 | // remove menus |
---|
| 2459 | for (int c = mb->GetMenuCount(); c >= 0; --c) { |
---|
| 2460 | labels.push_back(mb->GetLabelTop(c)); |
---|
| 2461 | menus.push_back(mb->Remove(c)); |
---|
| 2462 | } |
---|
| 2463 | } else { |
---|
| 2464 | while (!menus.empty()) { |
---|
| 2465 | mb->Append(menus.back(), labels.back()); |
---|
| 2466 | menus.pop_back(); |
---|
| 2467 | labels.pop_back(); |
---|
| 2468 | } |
---|
| 2469 | } |
---|
| 2470 | } |
---|
| 2471 | #endif |
---|
| 2472 | #endif |
---|
| 2473 | } |
---|