source: git/src/mainfrm.cc @ ef81817

RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
Last change on this file since ef81817 was 36f0d86, checked in by Olly Betts <olly@…>, 5 years ago

[aven] Support colouring by survey style

  • Property mode set to 100644
File size: 79.4 KB
RevLine 
[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
[8be4d09]7//  Copyright (C) 2001-2003,2004,2005,2006,2010,2011,2012,2013,2014,2015,2016,2018 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"
[a405bc1]35#include "img_hosted.h"
[41adebb]36#include "namecompare.h"
[4283d6f]37#include "printing.h"
[045e2af]38#include "filename.h"
[e577f89]39#include "useful.h"
[706b033]40
[2d9ed8ad]41#include <wx/confbase.h>
[8991d7f]42//#include <wx/filefn.h>
[f302cbaa]43#include <wx/filename.h>
[ee41e88]44#include <wx/image.h>
[0580c6a]45#include <wx/imaglist.h>
[b88b171]46#include <wx/process.h>
[0580c6a]47#include <wx/regex.h>
[562ca6a]48#ifdef USING_GENERIC_TOOLBAR
[2737db5]49# include <wx/sysopt.h>
50#endif
[203d2a7]51
[549eb37]52#include <cerrno>
[42bd3576]53#include <cstdlib>
[5809313]54#include <float.h>
[63dc4eb]55#include <functional>
[7a2e1ed]56#include <vector>
[0c76ad9]57
[63c2fe8]58// XPM files declare the array as static, but we also want it to be const too.
59// This avoids a compiler warning, and also means the data can go in a
60// read-only page and be shared between processes.
61#define static static const
[63a2dba]62#ifndef __WXMSW__
[ea1ea51]63#include "../lib/icons/aven.xpm"
[63a2dba]64#endif
[d7b53e3]65#include "../lib/icons/log.xpm"
[63c2fe8]66#include "../lib/icons/open.xpm"
67#include "../lib/icons/open_pres.xpm"
68#include "../lib/icons/rotation.xpm"
69#include "../lib/icons/plan.xpm"
70#include "../lib/icons/elevation.xpm"
71#include "../lib/icons/defaults.xpm"
72#include "../lib/icons/names.xpm"
73#include "../lib/icons/crosses.xpm"
74#include "../lib/icons/entrances.xpm"
75#include "../lib/icons/fixed_pts.xpm"
76#include "../lib/icons/exported_pts.xpm"
77#include "../lib/icons/ug_legs.xpm"
78#include "../lib/icons/surface_legs.xpm"
79#include "../lib/icons/tubes.xpm"
[4938bcd]80#include "../lib/icons/solid_surface.xpm"
[63c2fe8]81#include "../lib/icons/pres_frew.xpm"
82#include "../lib/icons/pres_rew.xpm"
83#include "../lib/icons/pres_go_back.xpm"
84#include "../lib/icons/pres_pause.xpm"
85#include "../lib/icons/pres_go.xpm"
86#include "../lib/icons/pres_ff.xpm"
87#include "../lib/icons/pres_fff.xpm"
88#include "../lib/icons/pres_stop.xpm"
89#include "../lib/icons/find.xpm"
90#include "../lib/icons/hideresults.xpm"
91#include "../lib/icons/survey_tree.xpm"
92#include "../lib/icons/pres_tree.xpm"
93#undef static
[63a2dba]94#ifdef __WXMSW__
95# define TOOL(x) wxBitmap(x##_xpm)
96#else
97# define TOOL(x) wxBITMAP(x)
[63c2fe8]98#endif
99
[0580c6a]100using namespace std;
[5809313]101
[b1de3e0]102class AvenSplitterWindow : public wxSplitterWindow {
103    MainFrm *parent;
104
105    public:
[fd4f6ff]106        explicit AvenSplitterWindow(MainFrm *parent_)
[b4fe9fb]107            : wxSplitterWindow(parent_, -1, wxDefaultPosition, wxDefaultSize,
[5ed907b0]108                               wxSP_3DSASH),
[b4fe9fb]109              parent(parent_)
110        {
[b1de3e0]111        }
112
[41f7a27]113        void OnSplitterDClick(wxSplitterEvent &) {
[b1de3e0]114            parent->ToggleSidePanel();
115        }
[f433fda]116
[b1de3e0]117    private:
118        DECLARE_EVENT_TABLE()
119};
120
121BEGIN_EVENT_TABLE(AvenSplitterWindow, wxSplitterWindow)
122    EVT_SPLITTER_DCLICK(-1, AvenSplitterWindow::OnSplitterDClick)
123END_EVENT_TABLE()
124
[9521a42]125class EditMarkDlg : public wxDialog {
126    wxTextCtrl * easting, * northing, * altitude;
[49ce5b0]127    wxTextCtrl * angle, * tilt_angle, * scale, * time;
[9521a42]128public:
[736f7df]129    // TRANSLATORS: Title of dialog to edit a waypoint in a presentation.
[9521a42]130    EditMarkDlg(wxWindow* parent, const PresentationMark & p)
[fbc1d32]131        : wxDialog(parent, 500, wmsg(/*Edit Waypoint*/404))
[9521a42]132    {
[5627cbb]133        easting = new wxTextCtrl(this, 601, wxString::Format(wxT("%.3f"), p.GetX()));
134        northing = new wxTextCtrl(this, 602, wxString::Format(wxT("%.3f"), p.GetY()));
135        altitude = new wxTextCtrl(this, 603, wxString::Format(wxT("%.3f"), p.GetZ()));
136        angle = new wxTextCtrl(this, 604, wxString::Format(wxT("%.3f"), p.angle));
137        tilt_angle = new wxTextCtrl(this, 605, wxString::Format(wxT("%.3f"), p.tilt_angle));
138        scale = new wxTextCtrl(this, 606, wxString::Format(wxT("%.3f"), p.scale));
[49ce5b0]139        if (p.time > 0.0) {
[5627cbb]140            time = new wxTextCtrl(this, 607, wxString::Format(wxT("%.3f"), p.time));
[49ce5b0]141        } else if (p.time < 0.0) {
[5627cbb]142            time = new wxTextCtrl(this, 607, wxString::Format(wxT("*%.3f"), -p.time));
[49ce5b0]143        } else {
[5627cbb]144            time = new wxTextCtrl(this, 607, wxT("0"));
[49ce5b0]145        }
146
[9521a42]147        wxBoxSizer * coords = new wxBoxSizer(wxHORIZONTAL);
[5627cbb]148        coords->Add(new wxStaticText(this, 610, wxT("(")), 0, wxALIGN_CENTRE_VERTICAL);
[9521a42]149        coords->Add(easting, 1);
[5627cbb]150        coords->Add(new wxStaticText(this, 611, wxT(",")), 0, wxALIGN_CENTRE_VERTICAL);
[9521a42]151        coords->Add(northing, 1);
[5627cbb]152        coords->Add(new wxStaticText(this, 612, wxT(",")), 0, wxALIGN_CENTRE_VERTICAL);
[9521a42]153        coords->Add(altitude, 1);
[5627cbb]154        coords->Add(new wxStaticText(this, 613, wxT(")")), 0, wxALIGN_CENTRE_VERTICAL);
[9521a42]155        wxBoxSizer* vert = new wxBoxSizer(wxVERTICAL);
156        vert->Add(coords, 0, wxALL, 8);
157        wxBoxSizer * r2 = new wxBoxSizer(wxHORIZONTAL);
[fbc1d32]158        r2->Add(new wxStaticText(this, 614, wmsg(/*Bearing*/259) + wxT(": ")), 0, wxALIGN_CENTRE_VERTICAL);
[9521a42]159        r2->Add(angle);
160        vert->Add(r2, 0, wxALL, 8);
161        wxBoxSizer * r3 = new wxBoxSizer(wxHORIZONTAL);
[fbc1d32]162        r3->Add(new wxStaticText(this, 615, wmsg(/*Elevation*/118) + wxT(": ")), 0, wxALIGN_CENTRE_VERTICAL);
[9521a42]163        r3->Add(tilt_angle);
164        vert->Add(r3, 0, wxALL, 8);
165        wxBoxSizer * r4 = new wxBoxSizer(wxHORIZONTAL);
[fbc1d32]166        r4->Add(new wxStaticText(this, 616, wmsg(/*Scale*/154) + wxT(": ")), 0, wxALIGN_CENTRE_VERTICAL);
[9521a42]167        r4->Add(scale);
[736f7df]168        /* TRANSLATORS: Note after "Scale" field in dialog to edit a waypoint
169         * in a presentation. */
[857408e]170        r4->Add(new wxStaticText(this, 617, wmsg(/* (unused in perspective view)*/278)),
[9521a42]171                0, wxALIGN_CENTRE_VERTICAL);
172        vert->Add(r4, 0, wxALL, 8);
173
174        wxBoxSizer * r5 = new wxBoxSizer(wxHORIZONTAL);
[736f7df]175        /* TRANSLATORS: Field label in dialog to edit a waypoint in a
176         * presentation. */
[857408e]177        r5->Add(new wxStaticText(this, 616, wmsg(/*Time: */279)), 0, wxALIGN_CENTRE_VERTICAL);
[49ce5b0]178        r5->Add(time);
[736f7df]179        /* TRANSLATORS: units+info after time field in dialog to edit a
180         * waypoint in a presentation. */
[857408e]181        r5->Add(new wxStaticText(this, 617, wmsg(/* secs (0 = auto; *6 = 6 times auto)*/282)),
[49ce5b0]182                0, wxALIGN_CENTRE_VERTICAL);
183        vert->Add(r5, 0, wxALL, 8);
184
185        wxBoxSizer * buttons = new wxBoxSizer(wxHORIZONTAL);
[73b3388]186        wxButton* cancel = new wxButton(this, wxID_CANCEL);
[49ce5b0]187        buttons->Add(cancel, 0, wxALL, 8);
[73b3388]188        wxButton* ok = new wxButton(this, wxID_OK);
[9521a42]189        ok->SetDefault();
[49ce5b0]190        buttons->Add(ok, 0, wxALL, 8);
191        vert->Add(buttons, 0, wxALL|wxALIGN_RIGHT);
[9521a42]192
193        SetAutoLayout(true);
194        SetSizer(vert);
195
196        vert->SetSizeHints(this);
[128fac4]197    }
[9521a42]198    PresentationMark GetMark() const {
[d67450e]199        double a, t, s, T;
[430f5e0]200        Vector3 v(wxAtof(easting->GetValue()),
201                  wxAtof(northing->GetValue()),
202                  wxAtof(altitude->GetValue()));
203        a = wxAtof(angle->GetValue());
204        t = wxAtof(tilt_angle->GetValue());
205        s = wxAtof(scale->GetValue());
[49ce5b0]206        wxString str = time->GetValue();
[e60254e]207        if (!str.empty() && str[0u] == '*') str[0u] = '-';
[430f5e0]208        T = wxAtof(str);
[d67450e]209        return PresentationMark(v, a, t, s, T);
[9521a42]210    }
211
212private:
213    DECLARE_EVENT_TABLE()
214};
215
[3fdeb44d]216// Write a value without trailing zeros after the decimal point.
217static void write_double(double d, FILE * fh) {
218    char buf[64];
219    sprintf(buf, "%.21f", d);
[c988ae4]220    char * p = strchr(buf, ',');
221    if (p) *p = '.';
[3fdeb44d]222    size_t l = strlen(buf);
223    while (l > 1 && buf[l - 1] == '0') --l;
224    if (l > 1 && buf[l - 1] == '.') --l;
225    fwrite(buf, l, 1, fh);
226}
227
[1c6b20d7]228class AvenPresList : public wxListCtrl {
229    MainFrm * mainfrm;
[1690fa9]230    GfxCore * gfx;
[9521a42]231    vector<PresentationMark> entries;
[1690fa9]232    long current_item;
233    bool modified;
[bd7607c]234    bool force_save_as;
[1690fa9]235    wxString filename;
[f433fda]236
[1690fa9]237    public:
[1c6b20d7]238        AvenPresList(MainFrm * mainfrm_, wxWindow * parent, GfxCore * gfx_)
[1690fa9]239            : wxListCtrl(parent, listctrl_PRES, wxDefaultPosition, wxDefaultSize,
[9521a42]240                         wxLC_REPORT|wxLC_VIRTUAL),
[bd7607c]241              mainfrm(mainfrm_), gfx(gfx_), current_item(-1), modified(false),
242              force_save_as(true)
[1690fa9]243            {
[5627cbb]244                InsertColumn(0, wmsg(/*Easting*/378));
245                InsertColumn(1, wmsg(/*Northing*/379));
246                InsertColumn(2, wmsg(/*Altitude*/335));
[1690fa9]247            }
248
249        void OnBeginLabelEdit(wxListEvent& event) {
250            event.Veto(); // No editting allowed
251        }
252        void OnDeleteItem(wxListEvent& event) {
253            long item = event.GetIndex();
254            if (current_item == item) {
255                current_item = -1;
256            } else if (current_item > item) {
257                --current_item;
258            }
[9521a42]259            entries.erase(entries.begin() + item);
260            SetItemCount(entries.size());
[1690fa9]261            modified = true;
262        }
[41f7a27]263        void OnDeleteAllItems(wxListEvent&) {
[1690fa9]264            entries.clear();
[9521a42]265            SetItemCount(entries.size());
[5627cbb]266            filename = wxString();
[1690fa9]267            modified = false;
[bd7607c]268            force_save_as = true;
[1690fa9]269        }
270        void OnListKeyDown(wxListEvent& event) {
271            switch (event.GetKeyCode()) {
272                case WXK_DELETE: {
273                    long item = GetNextItem(-1, wxLIST_NEXT_ALL,
274                                            wxLIST_STATE_SELECTED);
275                    while (item != -1) {
276                        DeleteItem(item);
277                        // - 1 because the indices were shifted by DeleteItem()
278                        item = GetNextItem(item - 1, wxLIST_NEXT_ALL,
279                                           wxLIST_STATE_SELECTED);
280                    }
281                    break;
282                }
283                default:
[c8f929b]284                    //printf("event.GetIndex() = %ld %d\n", event.GetIndex(), event.GetKeyCode());
[1690fa9]285                    event.Skip();
286            }
287        }
288        void OnActivated(wxListEvent& event) {
289            // Jump to this view.
290            long item = event.GetIndex();
[9521a42]291            gfx->SetView(entries[item]);
[1690fa9]292        }
293        void OnFocused(wxListEvent& event) {
294            current_item = event.GetIndex();
295        }
[9521a42]296        void OnRightClick(wxListEvent& event) {
297            long item = event.GetIndex();
[f7d52a1]298            if (item < 0) {
299                AddMark(item, gfx->GetView());
300                item = 0;
301            }
[9521a42]302            EditMarkDlg edit(mainfrm, entries[item]);
303            if (edit.ShowModal() == wxID_OK) {
304                entries[item] = edit.GetMark();
305            }
306        }
[1690fa9]307        void OnChar(wxKeyEvent& event) {
[c8f929b]308            switch (event.GetKeyCode()) {
309                case WXK_INSERT:
[a6e8d45]310                    if (event.GetModifiers() == wxMOD_CONTROL) {
[c8f929b]311                        if (current_item != -1 &&
312                            size_t(current_item) < entries.size()) {
313                            AddMark(current_item, entries[current_item]);
314                        }
315                    } else {
316                        AddMark(current_item);
317                    }
318                    break;
319                case WXK_DELETE:
320                    // Already handled in OnListKeyDown.
321                    break;
322                case WXK_UP: case WXK_DOWN:
323                    event.Skip();
324                    break;
325                default:
326                    gfx->OnKeyPress(event);
[5e31bd2]327            }
[1690fa9]328        }
329        void AddMark(long item = -1) {
330            AddMark(item, gfx->GetView());
331        }
332        void AddMark(long item, const PresentationMark & mark) {
[9521a42]333            if (item == -1) item = entries.size();
334            entries.insert(entries.begin() + item, mark);
335            SetItemCount(entries.size());
[1690fa9]336            modified = true;
337        }
[9521a42]338        virtual wxString OnGetItemText(long item, long column) const {
[5627cbb]339            if (item < 0 || item >= (long)entries.size()) return wxString();
[9521a42]340            const PresentationMark & p = entries[item];
341            double v;
342            switch (column) {
[d67450e]343                case 0: v = p.GetX(); break;
344                case 1: v = p.GetY(); break;
345                case 2: v = p.GetZ(); break;
[9521a42]346#if 0
347                case 3: v = p.angle; break;
348                case 4: v = p.tilt_angle; break;
349                case 5: v = p.scale; break;
[49ce5b0]350                case 6: v = p.time; break;
[9521a42]351#endif
[5627cbb]352                default: return wxString();
[9521a42]353            }
[5627cbb]354            return wxString::Format(wxT("%ld"), (long)v);
[9521a42]355        }
[1690fa9]356        void Save(bool use_default_name) {
357            wxString fnm = filename;
[bd7607c]358            if (!use_default_name || force_save_as) {
[1690fa9]359#ifdef __WXMOTIF__
[5627cbb]360                wxString ext(wxT("*.fly"));
[1690fa9]361#else
[5627cbb]362                wxString ext = wmsg(/*Aven presentations*/320);
[52f67931]363                ext += wxT("|*.fly");
[1690fa9]364#endif
[5627cbb]365                wxFileDialog dlg(this, wmsg(/*Select an output filename*/319),
366                                 wxString(), fnm, ext,
367                                 wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
[1690fa9]368                if (dlg.ShowModal() != wxID_OK) return;
369                fnm = dlg.GetPath();
370            }
371
[3206c12]372            FILE * fh_pres = wxFopen(fnm, wxT("w"));
[1690fa9]373            if (!fh_pres) {
[0804fbe]374                wxGetApp().ReportError(wxString::Format(wmsg(/*Error writing to file “%s”*/110), fnm.c_str()));
[1690fa9]375                return;
376            }
[9521a42]377            vector<PresentationMark>::const_iterator i;
[1690fa9]378            for (i = entries.begin(); i != entries.end(); ++i) {
379                const PresentationMark &p = *i;
[d67450e]380                write_double(p.GetX(), fh_pres);
[e02a6a6]381                PUTC(' ', fh_pres);
[d67450e]382                write_double(p.GetY(), fh_pres);
[e02a6a6]383                PUTC(' ', fh_pres);
[d67450e]384                write_double(p.GetZ(), fh_pres);
[e02a6a6]385                PUTC(' ', fh_pres);
[3fdeb44d]386                write_double(p.angle, fh_pres);
[e02a6a6]387                PUTC(' ', fh_pres);
[3fdeb44d]388                write_double(p.tilt_angle, fh_pres);
[e02a6a6]389                PUTC(' ', fh_pres);
[3fdeb44d]390                write_double(p.scale, fh_pres);
[49ce5b0]391                if (p.time != 0.0) {
[e02a6a6]392                    PUTC(' ', fh_pres);
[49ce5b0]393                    write_double(p.time, fh_pres);
394                }
[e02a6a6]395                PUTC('\n', fh_pres);
[1690fa9]396            }
397            fclose(fh_pres);
398            filename = fnm;
399            modified = false;
[bd7607c]400            force_save_as = false;
401        }
402        void New(const wxString &fnm) {
403            DeleteAllItems();
[d3172cc]404            wxFileName::SplitPath(fnm, NULL, NULL, &filename, NULL, wxPATH_NATIVE);
[5627cbb]405            filename += wxT(".fly");
[bd7607c]406            force_save_as = true;
[1690fa9]407        }
408        bool Load(const wxString &fnm) {
[3206c12]409            FILE * fh_pres = wxFopen(fnm, wxT("r"));
[9b540e6]410            if (!fh_pres) {
411                wxString m;
[ffee37e]412                m.Printf(wmsg(/*Couldn’t open file “%s”*/24), fnm.c_str());
[9b540e6]413                wxGetApp().ReportError(m);
414                return false;
415            }
[1690fa9]416            DeleteAllItems();
417            long item = 0;
418            while (!feof(fh_pres)) {
419                char buf[4096];
420                size_t i = 0;
421                while (i < sizeof(buf) - 1) {
[e02a6a6]422                    int ch = GETC(fh_pres);
[1690fa9]423                    if (ch == EOF || ch == '\n' || ch == '\r') break;
424                    buf[i++] = ch;
425                }
426                if (i) {
427                    buf[i] = 0;
[49ce5b0]428                    double x, y, z, a, t, s, T;
429                    int c = sscanf(buf, "%lf %lf %lf %lf %lf %lf %lf", &x, &y, &z, &a, &t, &s, &T);
430                    if (c < 6) {
[c988ae4]431                        char *p = buf;
432                        while ((p = strchr(p, '.'))) *p++ = ',';
433                        c = sscanf(buf, "%lf %lf %lf %lf %lf %lf %lf", &x, &y, &z, &a, &t, &s, &T);
434                        if (c < 6) {
435                            DeleteAllItems();
[0804fbe]436                            wxGetApp().ReportError(wxString::Format(wmsg(/*Error in format of presentation file “%s”*/323), fnm.c_str()));
[c988ae4]437                            return false;
438                        }
[1690fa9]439                    }
[49ce5b0]440                    if (c == 6) T = 0;
[d67450e]441                    AddMark(item, PresentationMark(Vector3(x, y, z), a, t, s, T));
[9b540e6]442                    ++item;
[1690fa9]443                }
444            }
445            fclose(fh_pres);
446            filename = fnm;
447            modified = false;
[bd7607c]448            force_save_as = false;
[1690fa9]449            return true;
450        }
451        bool Modified() const { return modified; }
452        bool Empty() const { return entries.empty(); }
453        PresentationMark GetPresMark(int which) {
454            long item = current_item;
455            if (which == MARK_FIRST) {
456                item = 0;
457            } else if (which == MARK_NEXT) {
[9521a42]458                ++item;
[128fac4]459            } else if (which == MARK_PREV) {
460                --item;
[1690fa9]461            }
[128fac4]462            if (item == -1 || item == (long)entries.size())
463                return PresentationMark();
[1690fa9]464            if (item != current_item) {
465                // Move the focus
466                if (current_item != -1) {
467                    wxListCtrl::SetItemState(current_item, wxLIST_STATE_FOCUSED,
468                                             0);
469                }
470                wxListCtrl::SetItemState(item, wxLIST_STATE_FOCUSED,
471                                         wxLIST_STATE_FOCUSED);
472            }
[9521a42]473            return entries[item];
[1690fa9]474        }
475
476    private:
477
[1c6b20d7]478        DECLARE_NO_COPY_CLASS(AvenPresList)
[1690fa9]479        DECLARE_EVENT_TABLE()
480};
[f433fda]481
[9521a42]482BEGIN_EVENT_TABLE(EditMarkDlg, wxDialog)
483END_EVENT_TABLE()
484
[1c6b20d7]485BEGIN_EVENT_TABLE(AvenPresList, wxListCtrl)
486    EVT_LIST_BEGIN_LABEL_EDIT(listctrl_PRES, AvenPresList::OnBeginLabelEdit)
487    EVT_LIST_DELETE_ITEM(listctrl_PRES, AvenPresList::OnDeleteItem)
488    EVT_LIST_DELETE_ALL_ITEMS(listctrl_PRES, AvenPresList::OnDeleteAllItems)
489    EVT_LIST_KEY_DOWN(listctrl_PRES, AvenPresList::OnListKeyDown)
490    EVT_LIST_ITEM_ACTIVATED(listctrl_PRES, AvenPresList::OnActivated)
491    EVT_LIST_ITEM_FOCUSED(listctrl_PRES, AvenPresList::OnFocused)
[9521a42]492    EVT_LIST_ITEM_RIGHT_CLICK(listctrl_PRES, AvenPresList::OnRightClick)
[1c6b20d7]493    EVT_CHAR(AvenPresList::OnChar)
[1690fa9]494END_EVENT_TABLE()
495
[137bf99]496BEGIN_EVENT_TABLE(MainFrm, wxFrame)
[d1628e8e]497    EVT_TEXT(textctrl_FIND, MainFrm::OnFind)
498    EVT_TEXT_ENTER(textctrl_FIND, MainFrm::OnGotoFound)
[42c7efe]499    EVT_MENU(wxID_FIND, MainFrm::OnGotoFound)
[8e1a10e]500    EVT_MENU(button_HIDE, MainFrm::OnHide)
[429465a]501    EVT_UPDATE_UI(button_HIDE, MainFrm::OnHideUpdate)
[bc60689]502    EVT_IDLE(MainFrm::OnIdle)
[2a02de2]503
[42c7efe]504    EVT_MENU(wxID_OPEN, MainFrm::OnOpen)
[622460e]505    EVT_MENU(menu_FILE_OPEN_TERRAIN, MainFrm::OnOpenTerrain)
[d7b53e3]506    EVT_MENU(menu_FILE_LOG, MainFrm::OnShowLog)
[42c7efe]507    EVT_MENU(wxID_PRINT, MainFrm::OnPrint)
[ce403f1]508    EVT_MENU(menu_FILE_PAGE_SETUP, MainFrm::OnPageSetup)
[045e2af]509    EVT_MENU(menu_FILE_SCREENSHOT, MainFrm::OnScreenshot)
[42c7efe]510//    EVT_MENU(wxID_PREFERENCES, MainFrm::OnFilePreferences)
[223f1ad]511    EVT_MENU(menu_FILE_EXPORT, MainFrm::OnExport)
[549eb37]512    EVT_MENU(menu_FILE_EXTEND, MainFrm::OnExtend)
[42c7efe]513    EVT_MENU(wxID_EXIT, MainFrm::OnQuit)
[732b9b0]514    EVT_MENU_RANGE(wxID_FILE1, wxID_FILE9, MainFrm::OnMRUFile)
[137bf99]515
[1690fa9]516    EVT_MENU(menu_PRES_NEW, MainFrm::OnPresNew)
517    EVT_MENU(menu_PRES_OPEN, MainFrm::OnPresOpen)
518    EVT_MENU(menu_PRES_SAVE, MainFrm::OnPresSave)
519    EVT_MENU(menu_PRES_SAVE_AS, MainFrm::OnPresSaveAs)
520    EVT_MENU(menu_PRES_MARK, MainFrm::OnPresMark)
[128fac4]521    EVT_MENU(menu_PRES_FREWIND, MainFrm::OnPresFRewind)
522    EVT_MENU(menu_PRES_REWIND, MainFrm::OnPresRewind)
523    EVT_MENU(menu_PRES_REVERSE, MainFrm::OnPresReverse)
524    EVT_MENU(menu_PRES_PLAY, MainFrm::OnPresPlay)
525    EVT_MENU(menu_PRES_FF, MainFrm::OnPresFF)
526    EVT_MENU(menu_PRES_FFF, MainFrm::OnPresFFF)
527    EVT_MENU(menu_PRES_PAUSE, MainFrm::OnPresPause)
[42c7efe]528    EVT_MENU(wxID_STOP, MainFrm::OnPresStop)
[6a4cdcb6]529    EVT_MENU(menu_PRES_EXPORT_MOVIE, MainFrm::OnPresExportMovie)
[1690fa9]530
531    EVT_UPDATE_UI(menu_PRES_NEW, MainFrm::OnPresNewUpdate)
532    EVT_UPDATE_UI(menu_PRES_OPEN, MainFrm::OnPresOpenUpdate)
533    EVT_UPDATE_UI(menu_PRES_SAVE, MainFrm::OnPresSaveUpdate)
534    EVT_UPDATE_UI(menu_PRES_SAVE_AS, MainFrm::OnPresSaveAsUpdate)
535    EVT_UPDATE_UI(menu_PRES_MARK, MainFrm::OnPresMarkUpdate)
[128fac4]536    EVT_UPDATE_UI(menu_PRES_FREWIND, MainFrm::OnPresFRewindUpdate)
537    EVT_UPDATE_UI(menu_PRES_REWIND, MainFrm::OnPresRewindUpdate)
538    EVT_UPDATE_UI(menu_PRES_REVERSE, MainFrm::OnPresReverseUpdate)
539    EVT_UPDATE_UI(menu_PRES_PLAY, MainFrm::OnPresPlayUpdate)
540    EVT_UPDATE_UI(menu_PRES_FF, MainFrm::OnPresFFUpdate)
541    EVT_UPDATE_UI(menu_PRES_FFF, MainFrm::OnPresFFFUpdate)
542    EVT_UPDATE_UI(menu_PRES_PAUSE, MainFrm::OnPresPauseUpdate)
[42c7efe]543    EVT_UPDATE_UI(wxID_STOP, MainFrm::OnPresStopUpdate)
[6a4cdcb6]544    EVT_UPDATE_UI(menu_PRES_EXPORT_MOVIE, MainFrm::OnPresExportMovieUpdate)
[5ffa439]545
[137bf99]546    EVT_CLOSE(MainFrm::OnClose)
[4b1fc48]547    EVT_SET_FOCUS(MainFrm::OnSetFocus)
[137bf99]548
[7ebc3d1]549    EVT_MENU(menu_ROTATION_TOGGLE, MainFrm::OnToggleRotation)
[137bf99]550    EVT_MENU(menu_ROTATION_REVERSE, MainFrm::OnReverseDirectionOfRotation)
551    EVT_MENU(menu_ORIENT_MOVE_NORTH, MainFrm::OnMoveNorth)
552    EVT_MENU(menu_ORIENT_MOVE_EAST, MainFrm::OnMoveEast)
553    EVT_MENU(menu_ORIENT_MOVE_SOUTH, MainFrm::OnMoveSouth)
554    EVT_MENU(menu_ORIENT_MOVE_WEST, MainFrm::OnMoveWest)
555    EVT_MENU(menu_ORIENT_PLAN, MainFrm::OnPlan)
556    EVT_MENU(menu_ORIENT_ELEVATION, MainFrm::OnElevation)
557    EVT_MENU(menu_ORIENT_DEFAULTS, MainFrm::OnDefaults)
558    EVT_MENU(menu_VIEW_SHOW_LEGS, MainFrm::OnShowSurveyLegs)
[8666fc7]559    EVT_MENU(menu_SPLAYS_HIDE, MainFrm::OnHideSplays)
[b96edeb]560    EVT_MENU(menu_SPLAYS_SHOW_DASHED, MainFrm::OnShowSplaysDashed)
[8666fc7]561    EVT_MENU(menu_SPLAYS_SHOW_FADED, MainFrm::OnShowSplaysFaded)
[b96edeb]562    EVT_MENU(menu_SPLAYS_SHOW_NORMAL, MainFrm::OnShowSplaysNormal)
[e5c5f3c]563    EVT_MENU(menu_DUPES_HIDE, MainFrm::OnHideDupes)
564    EVT_MENU(menu_DUPES_SHOW_DASHED, MainFrm::OnShowDupesDashed)
[b96edeb]565    EVT_MENU(menu_DUPES_SHOW_FADED, MainFrm::OnShowDupesFaded)
566    EVT_MENU(menu_DUPES_SHOW_NORMAL, MainFrm::OnShowDupesNormal)
[137bf99]567    EVT_MENU(menu_VIEW_SHOW_CROSSES, MainFrm::OnShowCrosses)
[fe444b8]568    EVT_MENU(menu_VIEW_SHOW_ENTRANCES, MainFrm::OnShowEntrances)
569    EVT_MENU(menu_VIEW_SHOW_FIXED_PTS, MainFrm::OnShowFixedPts)
570    EVT_MENU(menu_VIEW_SHOW_EXPORTED_PTS, MainFrm::OnShowExportedPts)
[137bf99]571    EVT_MENU(menu_VIEW_SHOW_NAMES, MainFrm::OnShowStationNames)
572    EVT_MENU(menu_VIEW_SHOW_OVERLAPPING_NAMES, MainFrm::OnDisplayOverlappingNames)
[46beda0]573    EVT_MENU(menu_COLOUR_BY_DEPTH, MainFrm::OnColourByDepth)
574    EVT_MENU(menu_COLOUR_BY_DATE, MainFrm::OnColourByDate)
575    EVT_MENU(menu_COLOUR_BY_ERROR, MainFrm::OnColourByError)
[fc43dda]576    EVT_MENU(menu_COLOUR_BY_H_ERROR, MainFrm::OnColourByHError)
577    EVT_MENU(menu_COLOUR_BY_V_ERROR, MainFrm::OnColourByVError)
[46beda0]578    EVT_MENU(menu_COLOUR_BY_GRADIENT, MainFrm::OnColourByGradient)
579    EVT_MENU(menu_COLOUR_BY_LENGTH, MainFrm::OnColourByLength)
[68fb07a]580    EVT_MENU(menu_COLOUR_BY_SURVEY, MainFrm::OnColourBySurvey)
[36f0d86]581    EVT_MENU(menu_COLOUR_BY_STYLE, MainFrm::OnColourByStyle)
[137bf99]582    EVT_MENU(menu_VIEW_SHOW_SURFACE, MainFrm::OnShowSurface)
[c1cf79d]583    EVT_MENU(menu_VIEW_GRID, MainFrm::OnViewGrid)
[f4c5932]584    EVT_MENU(menu_VIEW_BOUNDING_BOX, MainFrm::OnViewBoundingBox)
[6abab84]585    EVT_MENU(menu_VIEW_PERSPECTIVE, MainFrm::OnViewPerspective)
[d67450e]586    EVT_MENU(menu_VIEW_SMOOTH_SHADING, MainFrm::OnViewSmoothShading)
[a517825]587    EVT_MENU(menu_VIEW_TEXTURED, MainFrm::OnViewTextured)
[c60062d]588    EVT_MENU(menu_VIEW_FOG, MainFrm::OnViewFog)
[db452ae]589    EVT_MENU(menu_VIEW_SMOOTH_LINES, MainFrm::OnViewSmoothLines)
[b13aee4]590    EVT_MENU(menu_VIEW_FULLSCREEN, MainFrm::OnViewFullScreen)
[33b2094]591    EVT_MENU(menu_VIEW_SHOW_TUBES, MainFrm::OnToggleTubes)
[4938bcd]592    EVT_MENU(menu_VIEW_TERRAIN, MainFrm::OnViewTerrain)
[7a36b67]593    EVT_MENU(menu_IND_COMPASS, MainFrm::OnViewCompass)
594    EVT_MENU(menu_IND_CLINO, MainFrm::OnViewClino)
[97ea48d]595    EVT_MENU(menu_IND_COLOUR_KEY, MainFrm::OnToggleColourKey)
[7a36b67]596    EVT_MENU(menu_IND_SCALE_BAR, MainFrm::OnToggleScalebar)
597    EVT_MENU(menu_CTL_SIDE_PANEL, MainFrm::OnViewSidePanel)
598    EVT_MENU(menu_CTL_METRIC, MainFrm::OnToggleMetric)
599    EVT_MENU(menu_CTL_DEGREES, MainFrm::OnToggleDegrees)
[d171c0c]600    EVT_MENU(menu_CTL_PERCENT, MainFrm::OnTogglePercent)
[137bf99]601    EVT_MENU(menu_CTL_REVERSE, MainFrm::OnReverseControls)
[1fd2edb]602    EVT_MENU(menu_CTL_CANCEL_DIST_LINE, MainFrm::OnCancelDistLine)
[42c7efe]603    EVT_MENU(wxID_ABOUT, MainFrm::OnAbout)
[137bf99]604
[622460e]605    EVT_UPDATE_UI(menu_FILE_OPEN_TERRAIN, MainFrm::OnOpenTerrainUpdate)
[d7b53e3]606    EVT_UPDATE_UI(menu_FILE_LOG, MainFrm::OnShowLogUpdate)
[42c7efe]607    EVT_UPDATE_UI(wxID_PRINT, MainFrm::OnPrintUpdate)
[045e2af]608    EVT_UPDATE_UI(menu_FILE_SCREENSHOT, MainFrm::OnScreenshotUpdate)
[223f1ad]609    EVT_UPDATE_UI(menu_FILE_EXPORT, MainFrm::OnExportUpdate)
[549eb37]610    EVT_UPDATE_UI(menu_FILE_EXTEND, MainFrm::OnExtendUpdate)
[546a6f3]611    EVT_UPDATE_UI(menu_ROTATION_TOGGLE, MainFrm::OnToggleRotationUpdate)
[137bf99]612    EVT_UPDATE_UI(menu_ROTATION_REVERSE, MainFrm::OnReverseDirectionOfRotationUpdate)
613    EVT_UPDATE_UI(menu_ORIENT_MOVE_NORTH, MainFrm::OnMoveNorthUpdate)
614    EVT_UPDATE_UI(menu_ORIENT_MOVE_EAST, MainFrm::OnMoveEastUpdate)
615    EVT_UPDATE_UI(menu_ORIENT_MOVE_SOUTH, MainFrm::OnMoveSouthUpdate)
616    EVT_UPDATE_UI(menu_ORIENT_MOVE_WEST, MainFrm::OnMoveWestUpdate)
617    EVT_UPDATE_UI(menu_ORIENT_PLAN, MainFrm::OnPlanUpdate)
618    EVT_UPDATE_UI(menu_ORIENT_ELEVATION, MainFrm::OnElevationUpdate)
619    EVT_UPDATE_UI(menu_ORIENT_DEFAULTS, MainFrm::OnDefaultsUpdate)
620    EVT_UPDATE_UI(menu_VIEW_SHOW_LEGS, MainFrm::OnShowSurveyLegsUpdate)
[9cb97b7]621    EVT_UPDATE_UI(menu_VIEW_SPLAYS, MainFrm::OnSplaysUpdate)
[8666fc7]622    EVT_UPDATE_UI(menu_SPLAYS_HIDE, MainFrm::OnHideSplaysUpdate)
[b96edeb]623    EVT_UPDATE_UI(menu_SPLAYS_SHOW_DASHED, MainFrm::OnShowSplaysDashedUpdate)
[8666fc7]624    EVT_UPDATE_UI(menu_SPLAYS_SHOW_FADED, MainFrm::OnShowSplaysFadedUpdate)
[b96edeb]625    EVT_UPDATE_UI(menu_SPLAYS_SHOW_NORMAL, MainFrm::OnShowSplaysNormalUpdate)
[e5c5f3c]626    EVT_UPDATE_UI(menu_VIEW_DUPES, MainFrm::OnDupesUpdate)
627    EVT_UPDATE_UI(menu_DUPES_HIDE, MainFrm::OnHideDupesUpdate)
628    EVT_UPDATE_UI(menu_DUPES_SHOW_DASHED, MainFrm::OnShowDupesDashedUpdate)
[b96edeb]629    EVT_UPDATE_UI(menu_DUPES_SHOW_FADED, MainFrm::OnShowDupesFadedUpdate)
630    EVT_UPDATE_UI(menu_DUPES_SHOW_NORMAL, MainFrm::OnShowDupesNormalUpdate)
[137bf99]631    EVT_UPDATE_UI(menu_VIEW_SHOW_CROSSES, MainFrm::OnShowCrossesUpdate)
[fe444b8]632    EVT_UPDATE_UI(menu_VIEW_SHOW_ENTRANCES, MainFrm::OnShowEntrancesUpdate)
633    EVT_UPDATE_UI(menu_VIEW_SHOW_FIXED_PTS, MainFrm::OnShowFixedPtsUpdate)
634    EVT_UPDATE_UI(menu_VIEW_SHOW_EXPORTED_PTS, MainFrm::OnShowExportedPtsUpdate)
[137bf99]635    EVT_UPDATE_UI(menu_VIEW_SHOW_NAMES, MainFrm::OnShowStationNamesUpdate)
636    EVT_UPDATE_UI(menu_VIEW_SHOW_SURFACE, MainFrm::OnShowSurfaceUpdate)
637    EVT_UPDATE_UI(menu_VIEW_SHOW_OVERLAPPING_NAMES, MainFrm::OnDisplayOverlappingNamesUpdate)
[46beda0]638    EVT_UPDATE_UI(menu_VIEW_COLOUR_BY, MainFrm::OnColourByUpdate)
639    EVT_UPDATE_UI(menu_COLOUR_BY_DEPTH, MainFrm::OnColourByDepthUpdate)
640    EVT_UPDATE_UI(menu_COLOUR_BY_DATE, MainFrm::OnColourByDateUpdate)
641    EVT_UPDATE_UI(menu_COLOUR_BY_ERROR, MainFrm::OnColourByErrorUpdate)
[fc43dda]642    EVT_UPDATE_UI(menu_COLOUR_BY_H_ERROR, MainFrm::OnColourByHErrorUpdate)
643    EVT_UPDATE_UI(menu_COLOUR_BY_V_ERROR, MainFrm::OnColourByVErrorUpdate)
[46beda0]644    EVT_UPDATE_UI(menu_COLOUR_BY_GRADIENT, MainFrm::OnColourByGradientUpdate)
645    EVT_UPDATE_UI(menu_COLOUR_BY_LENGTH, MainFrm::OnColourByLengthUpdate)
[68fb07a]646    EVT_UPDATE_UI(menu_COLOUR_BY_SURVEY, MainFrm::OnColourBySurveyUpdate)
[36f0d86]647    EVT_UPDATE_UI(menu_COLOUR_BY_STYLE, MainFrm::OnColourByStyleUpdate)
[c1cf79d]648    EVT_UPDATE_UI(menu_VIEW_GRID, MainFrm::OnViewGridUpdate)
[f4c5932]649    EVT_UPDATE_UI(menu_VIEW_BOUNDING_BOX, MainFrm::OnViewBoundingBoxUpdate)
[6abab84]650    EVT_UPDATE_UI(menu_VIEW_PERSPECTIVE, MainFrm::OnViewPerspectiveUpdate)
[d67450e]651    EVT_UPDATE_UI(menu_VIEW_SMOOTH_SHADING, MainFrm::OnViewSmoothShadingUpdate)
[a517825]652    EVT_UPDATE_UI(menu_VIEW_TEXTURED, MainFrm::OnViewTexturedUpdate)
[c60062d]653    EVT_UPDATE_UI(menu_VIEW_FOG, MainFrm::OnViewFogUpdate)
[db452ae]654    EVT_UPDATE_UI(menu_VIEW_SMOOTH_LINES, MainFrm::OnViewSmoothLinesUpdate)
[b13aee4]655    EVT_UPDATE_UI(menu_VIEW_FULLSCREEN, MainFrm::OnViewFullScreenUpdate)
[33b2094]656    EVT_UPDATE_UI(menu_VIEW_SHOW_TUBES, MainFrm::OnToggleTubesUpdate)
[4938bcd]657    EVT_UPDATE_UI(menu_VIEW_TERRAIN, MainFrm::OnViewTerrainUpdate)
[7a36b67]658    EVT_UPDATE_UI(menu_IND_COMPASS, MainFrm::OnViewCompassUpdate)
659    EVT_UPDATE_UI(menu_IND_CLINO, MainFrm::OnViewClinoUpdate)
[97ea48d]660    EVT_UPDATE_UI(menu_IND_COLOUR_KEY, MainFrm::OnToggleColourKeyUpdate)
[7a36b67]661    EVT_UPDATE_UI(menu_IND_SCALE_BAR, MainFrm::OnToggleScalebarUpdate)
662    EVT_UPDATE_UI(menu_CTL_INDICATORS, MainFrm::OnIndicatorsUpdate)
663    EVT_UPDATE_UI(menu_CTL_SIDE_PANEL, MainFrm::OnViewSidePanelUpdate)
664    EVT_UPDATE_UI(menu_CTL_REVERSE, MainFrm::OnReverseControlsUpdate)
665    EVT_UPDATE_UI(menu_CTL_CANCEL_DIST_LINE, MainFrm::OnCancelDistLineUpdate)
666    EVT_UPDATE_UI(menu_CTL_METRIC, MainFrm::OnToggleMetricUpdate)
667    EVT_UPDATE_UI(menu_CTL_DEGREES, MainFrm::OnToggleDegreesUpdate)
[d171c0c]668    EVT_UPDATE_UI(menu_CTL_PERCENT, MainFrm::OnTogglePercentUpdate)
[5809313]669END_EVENT_TABLE()
670
[63dc4eb]671class LabelCmp : public greater<const LabelInfo*> {
[ff9f695]672    wxChar separator;
[156dc16]673public:
[fd4f6ff]674    explicit LabelCmp(wxChar separator_) : separator(separator_) {}
[156dc16]675    bool operator()(const LabelInfo* pt1, const LabelInfo* pt2) {
[2f36993]676        return name_cmp(pt1->GetText(), pt2->GetText(), separator) < 0;
[156dc16]677    }
678};
679
[63dc4eb]680class LabelPlotCmp : public greater<const LabelInfo*> {
[ff9f695]681    wxChar separator;
[291ca5d]682public:
[fd4f6ff]683    explicit LabelPlotCmp(wxChar separator_) : separator(separator_) {}
[291ca5d]684    bool operator()(const LabelInfo* pt1, const LabelInfo* pt2) {
[5a24583]685        int n = pt1->get_flags() - pt2->get_flags();
[291ca5d]686        if (n) return n > 0;
[5a24583]687        wxString l1 = pt1->GetText().AfterLast(separator);
688        wxString l2 = pt2->GetText().AfterLast(separator);
[f11f2af]689        n = name_cmp(l1, l2, separator);
690        if (n) return n < 0;
[2a94924]691        // Prefer non-2-nodes...
692        // FIXME; implement
[f11f2af]693        // if leaf names are the same, prefer shorter labels as we can
694        // display more of them
[5a24583]695        n = pt1->GetText().length() - pt2->GetText().length();
[f11f2af]696        if (n) return n < 0;
[2a94924]697        // make sure that we don't ever compare different labels as equal
[5a24583]698        return name_cmp(pt1->GetText(), pt2->GetText(), separator) < 0;
[291ca5d]699    }
700};
701
[f6fe808]702#if wxUSE_DRAG_AND_DROP
[5901b62]703class DnDFile : public wxFileDropTarget {
704    public:
[fd4f6ff]705        explicit DnDFile(MainFrm *parent) : m_Parent(parent) { }
[5901b62]706        virtual bool OnDropFiles(wxCoord, wxCoord,
707                        const wxArrayString &filenames);
708
709    private:
710        MainFrm * m_Parent;
711};
712
713bool
714DnDFile::OnDropFiles(wxCoord, wxCoord, const wxArrayString &filenames)
715{
716    // Load a survey file by drag-and-drop.
717    assert(filenames.GetCount() > 0);
718
719    if (filenames.GetCount() != 1) {
[736f7df]720        /* TRANSLATORS: error if you try to drag multiple files to the aven
721         * window */
[5627cbb]722        wxGetApp().ReportError(wmsg(/*You may only view one 3d file at a time.*/336));
[6d1bc83]723        return false;
[5901b62]724    }
[421b7d2]725
[5901b62]726    m_Parent->OpenFile(filenames[0]);
[6d1bc83]727    return true;
[5901b62]728}
[f6fe808]729#endif
[5901b62]730
[137bf99]731MainFrm::MainFrm(const wxString& title, const wxPoint& pos, const wxSize& size) :
[ad3d0a2]732    wxFrame(NULL, 101, title, pos, size, wxDEFAULT_FRAME_STYLE),
[486c619]733    m_SashPosition(-1),
[d7b53e3]734    m_Gfx(NULL), m_Log(NULL),
[b75a37d]735    pending_find(false), fullscreen_showing_menus(false)
[9c3d91e]736#ifdef PREFDLG
737    , m_PrefsDlg(NULL)
738#endif
[5809313]739{
[cfd6c44]740#ifdef _WIN32
[003d953]741    // The peculiar name is so that the icon is the first in the file
[b1de3e0]742    // (required by Microsoft Windows for this type of icon)
[ea1ea51]743    SetIcon(wxICON(AAA_aven));
[95fa391]744#else
[ea1ea51]745    SetIcon(wxICON(aven));
[cfd6c44]746#endif
747
[83478f5]748#if wxCHECK_VERSION(3,1,0)
749    // Add a full screen button to the right upper corner of title bar under OS
750    // X 10.7 and later.
751    EnableFullScreenView();
752#endif
[9d3d8cc]753    CreateMenuBar();
[242cb07]754    MakeToolBar();
[7c29c976]755    CreateStatusBar(2, wxST_SIZEGRIP);
[9d3d8cc]756    CreateSidePanel();
[f433fda]757
[7c29c976]758    int widths[2] = { -1 /* variable width */, -1 };
759    GetStatusBar()->SetStatusWidths(2, widths);
[9d3d8cc]760
[0580c6a]761#ifdef __X__ // wxMotif or wxX11
[9d3d8cc]762    int x;
763    int y;
764    GetSize(&x, &y);
765    // X seems to require a forced resize.
766    SetSize(-1, -1, x, y);
767#endif
768
[0edb0d0]769#if wxUSE_DRAG_AND_DROP
[5901b62]770    SetDropTarget(new DnDFile(this));
[f6fe808]771#endif
[9d3d8cc]772}
773
774void MainFrm::CreateMenuBar()
775{
776    // Create the menus and the menu bar.
[137bf99]777
778    wxMenu* filemenu = new wxMenu;
[42c7efe]779    // wxID_OPEN stock label lacks the ellipses
[736f7df]780    /* TRANSLATORS: Aven menu items.  An “&” goes before the letter of any
781     * accelerator key.
782     *
783     * The string "\t" separates the menu text and any accelerator key.
784     *
785     * "File" menu.  The accelerators must be different within this group.
786     * c.f. 201, 380, 381. */
[7f928d3]787    filemenu->Append(wxID_OPEN, wmsg(/*&Open...\tCtrl+O*/220));
[51755e1]788    /* TRANSLATORS: Open a "Terrain file" - i.e. a digital model of the
789     * terrain. */
[7f928d3]790    filemenu->Append(menu_FILE_OPEN_TERRAIN, wmsg(/*Open &Terrain...*/453));
[4b2d207]791    filemenu->AppendCheckItem(menu_FILE_LOG, wmsg(/*Show &Log*/144));
[137bf99]792    filemenu->AppendSeparator();
[42c7efe]793    // wxID_PRINT stock label lacks the ellipses
[7f928d3]794    filemenu->Append(wxID_PRINT, wmsg(/*&Print...\tCtrl+P*/380));
795    filemenu->Append(menu_FILE_PAGE_SETUP, wmsg(/*P&age Setup...*/381));
[ce403f1]796    filemenu->AppendSeparator();
[736f7df]797    /* TRANSLATORS: In the "File" menu */
[7f928d3]798    filemenu->Append(menu_FILE_SCREENSHOT, wmsg(/*&Screenshot...*/201));
799    filemenu->Append(menu_FILE_EXPORT, wmsg(/*&Export as...*/382));
[549eb37]800    /* TRANSLATORS: In the "File" menu - c.f. n:191 */
801    filemenu->Append(menu_FILE_EXTEND, wmsg(/*E&xtended Elevation...*/247));
[b72f4b5]802#ifndef __WXMAC__
803    // On wxMac the "Quit" menu item will be moved elsewhere, so we suppress
804    // this separator.
[223f1ad]805    filemenu->AppendSeparator();
[f930738]806#else
[559cd60]807    // We suppress the "Help" menu under macOS as it would otherwise end up as
[f930738]808    // an empty menu, but we need to add the "About" menu item somewhere.  It
809    // really doesn't matter where as wxWidgets will move it to the "Apple"
810    // menu.
811    filemenu->Append(wxID_ABOUT);
[b72f4b5]812#endif
[42c7efe]813    filemenu->Append(wxID_EXIT);
[137bf99]814
[cf8c84b]815    m_history.UseMenu(filemenu);
816    m_history.Load(*wxConfigBase::Get());
817
[137bf99]818    wxMenu* rotmenu = new wxMenu;
[736f7df]819    /* TRANSLATORS: "Rotation" menu.  The accelerators must be different within
[de6d5e3]820     * this group.  Tickable menu item which toggles auto rotation.
821     * Please don't translate "Space" - that's the shortcut key to use which
822     * wxWidgets needs to parse and it should then handle translating.
823     */
[ee7511a]824    rotmenu->AppendCheckItem(menu_ROTATION_TOGGLE, wmsg(/*Au&to-Rotate\tSpace*/231));
[137bf99]825    rotmenu->AppendSeparator();
[d86459c]826    rotmenu->Append(menu_ROTATION_REVERSE, wmsg(/*&Reverse Direction*/234));
[137bf99]827
828    wxMenu* orientmenu = new wxMenu;
[d86459c]829    orientmenu->Append(menu_ORIENT_MOVE_NORTH, wmsg(/*View &North*/240));
830    orientmenu->Append(menu_ORIENT_MOVE_EAST, wmsg(/*View &East*/241));
831    orientmenu->Append(menu_ORIENT_MOVE_SOUTH, wmsg(/*View &South*/242));
832    orientmenu->Append(menu_ORIENT_MOVE_WEST, wmsg(/*View &West*/243));
[137bf99]833    orientmenu->AppendSeparator();
[d86459c]834    orientmenu->Append(menu_ORIENT_PLAN, wmsg(/*&Plan View*/248));
835    orientmenu->Append(menu_ORIENT_ELEVATION, wmsg(/*Ele&vation*/249));
[137bf99]836    orientmenu->AppendSeparator();
[d86459c]837    orientmenu->Append(menu_ORIENT_DEFAULTS, wmsg(/*Restore De&fault View*/254));
[1690fa9]838
[203d2a7]839    wxMenu* presmenu = new wxMenu;
[d86459c]840    presmenu->Append(menu_PRES_NEW, wmsg(/*&New Presentation*/311));
[7f928d3]841    presmenu->Append(menu_PRES_OPEN, wmsg(/*&Open Presentation...*/312));
[d86459c]842    presmenu->Append(menu_PRES_SAVE, wmsg(/*&Save Presentation*/313));
[7f928d3]843    presmenu->Append(menu_PRES_SAVE_AS, wmsg(/*Sa&ve Presentation As...*/314));
[203d2a7]844    presmenu->AppendSeparator();
[736f7df]845    /* TRANSLATORS: "Mark" as in "Mark this position" */
[d86459c]846    presmenu->Append(menu_PRES_MARK, wmsg(/*&Mark*/315));
[736f7df]847    /* TRANSLATORS: "Play" as in "Play back a recording" */
[a2a8d23]848    presmenu->AppendCheckItem(menu_PRES_PLAY, wmsg(/*Pla&y*/316));
[7f928d3]849    presmenu->Append(menu_PRES_EXPORT_MOVIE, wmsg(/*&Export as Movie...*/317));
[1690fa9]850
[203d2a7]851    wxMenu* viewmenu = new wxMenu;
[edb6576]852#ifndef PREFDLG
[736f7df]853    /* TRANSLATORS: Items in the "View" menu: */
[d86459c]854    viewmenu->AppendCheckItem(menu_VIEW_SHOW_NAMES, wmsg(/*Station &Names\tCtrl+N*/270));
[736f7df]855    /* TRANSLATORS: Toggles drawing of 3D passages */
[ee7511a]856    viewmenu->AppendCheckItem(menu_VIEW_SHOW_TUBES, wmsg(/*Passage &Tubes\tCtrl+T*/346));
[4938bcd]857    /* TRANSLATORS: Toggles drawing the surface of the Earth */
[90c628d]858    viewmenu->AppendCheckItem(menu_VIEW_TERRAIN, wmsg(/*Terr&ain*/449));
[d86459c]859    viewmenu->AppendCheckItem(menu_VIEW_SHOW_CROSSES, wmsg(/*&Crosses\tCtrl+X*/271));
860    viewmenu->AppendCheckItem(menu_VIEW_GRID, wmsg(/*&Grid\tCtrl+G*/297));
861    viewmenu->AppendCheckItem(menu_VIEW_BOUNDING_BOX, wmsg(/*&Bounding Box\tCtrl+B*/318));
[edb6576]862    viewmenu->AppendSeparator();
[736f7df]863    /* TRANSLATORS: Here a "survey leg" is a set of measurements between two
864     * "survey stations". */
[d86459c]865    viewmenu->AppendCheckItem(menu_VIEW_SHOW_LEGS, wmsg(/*&Underground Survey Legs\tCtrl+L*/272));
[736f7df]866    /* TRANSLATORS: Here a "survey leg" is a set of measurements between two
867     * "survey stations". */
[d86459c]868    viewmenu->AppendCheckItem(menu_VIEW_SHOW_SURFACE, wmsg(/*&Surface Survey Legs\tCtrl+F*/291));
[8666fc7]869
870    wxMenu* splaymenu = new wxMenu;
[b96edeb]871    /* TRANSLATORS: Item in the "Splay Legs" and "Duplicate Legs" submenus - if
872     * this is selected, such legs are not shown. */
[82ae44a]873    splaymenu->AppendCheckItem(menu_SPLAYS_HIDE, wmsg(/*&Hide*/407));
[b96edeb]874    /* TRANSLATORS: Item in the "Splay Legs" and "Duplicate Legs" submenus - if
875     * this is selected, aven will show such legs with dashed lines. */
876    splaymenu->AppendCheckItem(menu_SPLAYS_SHOW_DASHED, wmsg(/*&Dashed*/250));
877    /* TRANSLATORS: Item in the "Splay Legs" and "Duplicate Legs" submenus - if
878     * this is selected, aven will show such legs with less bright colours. */
[82ae44a]879    splaymenu->AppendCheckItem(menu_SPLAYS_SHOW_FADED, wmsg(/*&Fade*/408));
[b96edeb]880    /* TRANSLATORS: Item in the "Splay Legs" and "Duplicate Legs" submenus - if
881     * this is selected, such legs are shown the same as other legs. */
[82ae44a]882    splaymenu->AppendCheckItem(menu_SPLAYS_SHOW_NORMAL, wmsg(/*&Show*/409));
[9cb97b7]883    viewmenu->Append(menu_VIEW_SPLAYS, wmsg(/*Spla&y Legs*/406), splaymenu);
[8666fc7]884
[e5c5f3c]885    wxMenu* dupemenu = new wxMenu;
[2299161]886    dupemenu->AppendCheckItem(menu_DUPES_HIDE, wmsg(/*&Hide*/407));
887    dupemenu->AppendCheckItem(menu_DUPES_SHOW_DASHED, wmsg(/*&Dashed*/250));
[b96edeb]888    dupemenu->AppendCheckItem(menu_DUPES_SHOW_FADED, wmsg(/*&Fade*/408));
[2299161]889    dupemenu->AppendCheckItem(menu_DUPES_SHOW_NORMAL, wmsg(/*&Show*/409));
890    viewmenu->Append(menu_VIEW_DUPES, wmsg(/*&Duplicate Legs*/251), dupemenu);
[e5c5f3c]891
[edb6576]892    viewmenu->AppendSeparator();
[d86459c]893    viewmenu->AppendCheckItem(menu_VIEW_SHOW_OVERLAPPING_NAMES, wmsg(/*&Overlapping Names*/273));
[46beda0]894
895    wxMenu* colourbymenu = new wxMenu;
896    colourbymenu->AppendCheckItem(menu_COLOUR_BY_DEPTH, wmsg(/*Colour by &Depth*/292));
897    colourbymenu->AppendCheckItem(menu_COLOUR_BY_DATE, wmsg(/*Colour by D&ate*/293));
898    colourbymenu->AppendCheckItem(menu_COLOUR_BY_ERROR, wmsg(/*Colour by &Error*/289));
[fc43dda]899    colourbymenu->AppendCheckItem(menu_COLOUR_BY_H_ERROR, wmsg(/*Colour by &Horizontal Error*/480));
900    colourbymenu->AppendCheckItem(menu_COLOUR_BY_V_ERROR, wmsg(/*Colour by &Vertical Error*/481));
[46beda0]901    colourbymenu->AppendCheckItem(menu_COLOUR_BY_GRADIENT, wmsg(/*Colour by &Gradient*/85));
902    colourbymenu->AppendCheckItem(menu_COLOUR_BY_LENGTH, wmsg(/*Colour by &Length*/82));
[68fb07a]903    colourbymenu->AppendCheckItem(menu_COLOUR_BY_SURVEY, wmsg(/*Colour by &Survey*/448));
[36f0d86]904    colourbymenu->AppendCheckItem(menu_COLOUR_BY_STYLE, wmsg(/*Colour by St&yle*/482));
[46beda0]905
[90c628d]906    viewmenu->Append(menu_VIEW_COLOUR_BY, wmsg(/*Co&lour by*/450), colourbymenu);
[46beda0]907
[edb6576]908    viewmenu->AppendSeparator();
[d86459c]909    viewmenu->AppendCheckItem(menu_VIEW_SHOW_ENTRANCES, wmsg(/*Highlight &Entrances*/294));
910    viewmenu->AppendCheckItem(menu_VIEW_SHOW_FIXED_PTS, wmsg(/*Highlight &Fixed Points*/295));
911    viewmenu->AppendCheckItem(menu_VIEW_SHOW_EXPORTED_PTS, wmsg(/*Highlight E&xported Points*/296));
[edb6576]912    viewmenu->AppendSeparator();
913#else
[de6d5e3]914    /* TRANSLATORS: Please don't translate "Escape" - that's the shortcut key
915     * to use which wxWidgets needs to parse and it should then handle
916     * translating.
917     */
[d86459c]918    viewmenu-> Append(menu_VIEW_CANCEL_DIST_LINE, wmsg(/*&Cancel Measuring Line\tEscape*/281));
[edb6576]919#endif
[d86459c]920    viewmenu->AppendCheckItem(menu_VIEW_PERSPECTIVE, wmsg(/*&Perspective*/237));
921// FIXME: enable this    viewmenu->AppendCheckItem(menu_VIEW_SMOOTH_SHADING, wmsg(/*&Smooth Shading*/?!?);
922    viewmenu->AppendCheckItem(menu_VIEW_TEXTURED, wmsg(/*Textured &Walls*/238));
[736f7df]923    /* TRANSLATORS: Toggles OpenGL "Depth Fogging" - feel free to translate
924     * using that term instead if it gives a better translation which most
925     * users will understand. */
[ee7511a]926    viewmenu->AppendCheckItem(menu_VIEW_FOG, wmsg(/*Fade Distant Ob&jects*/239));
[736f7df]927    /* TRANSLATORS: Here a "survey leg" is a set of measurements between two
928     * "survey stations". */
[5c2bff7]929    viewmenu->AppendCheckItem(menu_VIEW_SMOOTH_LINES, wmsg(/*Smoot&hed Survey Legs*/298));
[6abab84]930    viewmenu->AppendSeparator();
[85c83ac5]931#ifdef __WXMAC__
[559cd60]932    // F11 on macOS is used by the desktop (for speaker volume and/or window
933    // navigation).  The standard macOS shortcut for full screen mode is
[8962fc9]934    // Ctrl-Command-F which in wxWidgets terms is RawCtrl+Ctrl+F.
[85c83ac5]935    wxString wxmac_fullscreen = wmsg(/*Full Screen &Mode\tF11*/356);
[8962fc9]936    wxmac_fullscreen.Replace(wxT("\tF11"), wxT("\tRawCtrl+Ctrl+F"), false);
[85c83ac5]937    viewmenu->AppendCheckItem(menu_VIEW_FULLSCREEN, wxmac_fullscreen);
[559cd60]938    // FIXME: On macOS, the standard wording here is "Enter Full Screen" and
[98bd0a0]939    // "Exit Full Screen", depending whether we are in full screen mode or not,
940    // and this isn't a checked menu item.
[85c83ac5]941#else
[ee7511a]942    viewmenu->AppendCheckItem(menu_VIEW_FULLSCREEN, wmsg(/*Full Screen &Mode\tF11*/356));
[85c83ac5]943#endif
[edb6576]944#ifdef PREFDLG
[203d2a7]945    viewmenu->AppendSeparator();
[7f928d3]946    viewmenu-> Append(wxID_PREFERENCES, wmsg(/*&Preferences...*/347));
[edb6576]947#endif
948
949#ifndef PREFDLG
950    wxMenu* ctlmenu = new wxMenu;
[d86459c]951    ctlmenu->AppendCheckItem(menu_CTL_REVERSE, wmsg(/*&Reverse Sense\tCtrl+R*/280));
[edb6576]952    ctlmenu->AppendSeparator();
[bf2d0ba]953#ifdef __WXGTK__
954    // wxGTK (at least with GTK+ v2.24), if we specify a short-cut here then
955    // the key handler isn't called, so we can't exit full screen mode on
956    // Escape.  wxGTK doesn't actually show the "Escape" shortcut text in the
957    // menu item, so removing it doesn't make any visual difference, and doing
958    // so allows Escape to still cancel the measuring line, but also serve to
959    // exit full screen mode if no measuring line is shown.
960    wxString wxgtk_cancelline = wmsg(/*&Cancel Measuring Line\tEscape*/281);
961    wxgtk_cancelline.Replace(wxT("\tEscape"), wxT(""), false);
962    ctlmenu->Append(menu_CTL_CANCEL_DIST_LINE, wxgtk_cancelline);
963#else
964    // With wxMac and wxMSW, we can have the short-cut on the menu and still
965    // have Escape handled by the key handler to exit full screen mode.
[d86459c]966    ctlmenu->Append(menu_CTL_CANCEL_DIST_LINE, wmsg(/*&Cancel Measuring Line\tEscape*/281));
[bf2d0ba]967#endif
[edb6576]968    ctlmenu->AppendSeparator();
969    wxMenu* indmenu = new wxMenu;
[d86459c]970    indmenu->AppendCheckItem(menu_IND_COMPASS, wmsg(/*&Compass*/274));
971    indmenu->AppendCheckItem(menu_IND_CLINO, wmsg(/*C&linometer*/275));
[736f7df]972    /* TRANSLATORS: The "Colour Key" is the thing in aven showing which colour
973     * corresponds to which depth, date, survey closure error, etc. */
[97ea48d]974    indmenu->AppendCheckItem(menu_IND_COLOUR_KEY, wmsg(/*Colour &Key*/276));
[d86459c]975    indmenu->AppendCheckItem(menu_IND_SCALE_BAR, wmsg(/*&Scale Bar*/277));
976    ctlmenu->Append(menu_CTL_INDICATORS, wmsg(/*&Indicators*/299), indmenu);
977    ctlmenu->AppendCheckItem(menu_CTL_SIDE_PANEL, wmsg(/*&Side Panel*/337));
[edb6576]978    ctlmenu->AppendSeparator();
[d86459c]979    ctlmenu->AppendCheckItem(menu_CTL_METRIC, wmsg(/*&Metric*/342));
980    ctlmenu->AppendCheckItem(menu_CTL_DEGREES, wmsg(/*&Degrees*/343));
[d171c0c]981    ctlmenu->AppendCheckItem(menu_CTL_PERCENT, wmsg(/*&Percent*/430));
[edb6576]982#endif
[137bf99]983
[c988ae4]984    wxMenuBar* menubar = new wxMenuBar();
[736f7df]985    /* TRANSLATORS: Aven menu titles.  An “&” goes before the letter of any
986     * accelerator key.  The accelerators must be different within this group
987     */
[d86459c]988    menubar->Append(filemenu, wmsg(/*&File*/210));
989    menubar->Append(rotmenu, wmsg(/*&Rotation*/211));
990    menubar->Append(orientmenu, wmsg(/*&Orientation*/212));
991    menubar->Append(viewmenu, wmsg(/*&View*/213));
[5de0cac]992#ifndef PREFDLG
[d86459c]993    menubar->Append(ctlmenu, wmsg(/*&Controls*/214));
[5de0cac]994#endif
[adc7f92]995    // TRANSLATORS: "Presentation" in the sense of a talk with a slideshow -
996    // the items in this menu allow the user to animate between preset
997    // views.
[d86459c]998    menubar->Append(presmenu, wmsg(/*&Presentation*/216));
[b72f4b5]999#ifndef __WXMAC__
1000    // On wxMac the "About" menu item will be moved elsewhere, so we suppress
1001    // this menu since it will then be empty.
[c5dd692]1002    wxMenu* helpmenu = new wxMenu;
1003    helpmenu->Append(wxID_ABOUT);
1004
[d86459c]1005    menubar->Append(helpmenu, wmsg(/*&Help*/215));
[b72f4b5]1006#endif
[137bf99]1007    SetMenuBar(menubar);
[9d3d8cc]1008}
[137bf99]1009
[242cb07]1010void MainFrm::MakeToolBar()
[9d3d8cc]1011{
[242cb07]1012    // Make the toolbar.
[137bf99]1013
[562ca6a]1014#ifdef USING_GENERIC_TOOLBAR
[2737db5]1015    // This OS-X-specific code is only needed to stop the toolbar icons getting
1016    // scaled up, which just makes them look nasty and fuzzy.  Once we have
1017    // larger versions of the icons, we can drop this code.
1018    wxSystemOptions::SetOption(wxT("mac.toolbar.no-native"), 1);
1019    wxToolBar* toolbar = new wxToolBar(this, wxID_ANY, wxDefaultPosition,
1020                                       wxDefaultSize, wxNO_BORDER|wxTB_FLAT|wxTB_NODIVIDER|wxTB_NOALIGN);
[562ca6a]1021    wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL);
[2737db5]1022    sizer->Add(toolbar, 0, wxEXPAND);
[562ca6a]1023    SetSizer(sizer);
[2737db5]1024#else
[9d3d8cc]1025    wxToolBar* toolbar = wxFrame::CreateToolBar();
[2737db5]1026#endif
[137bf99]1027
[b65c13f]1028#ifndef __WXGTK20__
[d94f5db]1029    toolbar->SetMargins(5, 5);
1030#endif
1031
[9b540e6]1032    // FIXME: TRANSLATE tooltips
[b4f28e0]1033    toolbar->AddTool(wxID_OPEN, wxT("Open"), TOOL(open), wxT("Open a survey file for viewing"));
1034    toolbar->AddTool(menu_PRES_OPEN, wxT("Open presentation"), TOOL(open_pres), wxT("Open a presentation"));
[4b2d207]1035    toolbar->AddCheckTool(menu_FILE_LOG, wxT("View log"), TOOL(log), wxNullBitmap, wxT("View log from processing survey data"));
[2d9ed8ad]1036    toolbar->AddSeparator();
[b4f28e0]1037    toolbar->AddCheckTool(menu_ROTATION_TOGGLE, wxT("Toggle rotation"), TOOL(rotation), wxNullBitmap, wxT("Toggle rotation"));
1038    toolbar->AddTool(menu_ORIENT_PLAN, wxT("Plan"), TOOL(plan), wxT("Switch to plan view"));
1039    toolbar->AddTool(menu_ORIENT_ELEVATION, wxT("Elevation"), TOOL(elevation), wxT("Switch to elevation view"));
1040    toolbar->AddTool(menu_ORIENT_DEFAULTS, wxT("Default view"), TOOL(defaults), wxT("Restore default view"));
[2d9ed8ad]1041    toolbar->AddSeparator();
[b4f28e0]1042    toolbar->AddCheckTool(menu_VIEW_SHOW_NAMES, wxT("Names"), TOOL(names), wxNullBitmap, wxT("Show station names"));
1043    toolbar->AddCheckTool(menu_VIEW_SHOW_CROSSES, wxT("Crosses"), TOOL(crosses), wxNullBitmap, wxT("Show crosses on stations"));
1044    toolbar->AddCheckTool(menu_VIEW_SHOW_ENTRANCES, wxT("Entrances"), TOOL(entrances), wxNullBitmap, wxT("Highlight entrances"));
1045    toolbar->AddCheckTool(menu_VIEW_SHOW_FIXED_PTS, wxT("Fixed points"), TOOL(fixed_pts), wxNullBitmap, wxT("Highlight fixed points"));
1046    toolbar->AddCheckTool(menu_VIEW_SHOW_EXPORTED_PTS, wxT("Exported points"), TOOL(exported_pts), wxNullBitmap, wxT("Highlight exported stations"));
[2d9ed8ad]1047    toolbar->AddSeparator();
[b4f28e0]1048    toolbar->AddCheckTool(menu_VIEW_SHOW_LEGS, wxT("Underground legs"), TOOL(ug_legs), wxNullBitmap, wxT("Show underground surveys"));
1049    toolbar->AddCheckTool(menu_VIEW_SHOW_SURFACE, wxT("Surface legs"), TOOL(surface_legs), wxNullBitmap, wxT("Show surface surveys"));
1050    toolbar->AddCheckTool(menu_VIEW_SHOW_TUBES, wxT("Tubes"), TOOL(tubes), wxNullBitmap, wxT("Show passage tubes"));
[4938bcd]1051    toolbar->AddCheckTool(menu_VIEW_TERRAIN, wxT("Terrain"), TOOL(solid_surface), wxNullBitmap, wxT("Show terrain"));
[128fac4]1052    toolbar->AddSeparator();
[b4f28e0]1053    toolbar->AddCheckTool(menu_PRES_FREWIND, wxT("Fast Rewind"), TOOL(pres_frew), wxNullBitmap, wxT("Very Fast Rewind"));
1054    toolbar->AddCheckTool(menu_PRES_REWIND, wxT("Rewind"), TOOL(pres_rew), wxNullBitmap, wxT("Fast Rewind"));
1055    toolbar->AddCheckTool(menu_PRES_REVERSE, wxT("Backwards"), TOOL(pres_go_back), wxNullBitmap, wxT("Play Backwards"));
1056    toolbar->AddCheckTool(menu_PRES_PAUSE, wxT("Pause"), TOOL(pres_pause), wxNullBitmap, wxT("Pause"));
1057    toolbar->AddCheckTool(menu_PRES_PLAY, wxT("Go"), TOOL(pres_go), wxNullBitmap, wxT("Play"));
1058    toolbar->AddCheckTool(menu_PRES_FF, wxT("FF"), TOOL(pres_ff), wxNullBitmap, wxT("Fast Forward"));
1059    toolbar->AddCheckTool(menu_PRES_FFF, wxT("Very FF"), TOOL(pres_fff), wxNullBitmap, wxT("Very Fast Forward"));
1060    toolbar->AddTool(wxID_STOP, wxT("Stop"), TOOL(pres_stop), wxT("Stop"));
[fd6e0d5]1061
[203d2a7]1062    toolbar->AddSeparator();
[5627cbb]1063    m_FindBox = new wxTextCtrl(toolbar, textctrl_FIND, wxString(), wxDefaultPosition,
[429465a]1064                               wxDefaultSize, wxTE_PROCESS_ENTER);
[fd6e0d5]1065    toolbar->AddControl(m_FindBox);
[736f7df]1066    /* TRANSLATORS: "Find stations" button tooltip */
[b4f28e0]1067    toolbar->AddTool(wxID_FIND, wmsg(/*Find*/332), TOOL(find)/*, "Search for station name"*/);
[736f7df]1068    /* TRANSLATORS: "Hide stations" button default tooltip */
[b4f28e0]1069    toolbar->AddTool(button_HIDE, wmsg(/*Hide*/333), TOOL(hideresults)/*, "Hide search results"*/);
[fd6e0d5]1070
[2d9ed8ad]1071    toolbar->Realize();
[9d3d8cc]1072}
[2d9ed8ad]1073
[9d3d8cc]1074void MainFrm::CreateSidePanel()
1075{
[b1de3e0]1076    m_Splitter = new AvenSplitterWindow(this);
[562ca6a]1077#ifdef USING_GENERIC_TOOLBAR
[2737db5]1078    // This OS-X-specific code is only needed to stop the toolbar icons getting
1079    // scaled up, which just makes them look nasty and fuzzy.  Once we have
1080    // larger versions of the icons, we can drop this code.
1081    GetSizer()->Add(m_Splitter, 1, wxEXPAND);
1082    Layout();
1083#endif
[421b7d2]1084
[203d2a7]1085    m_Notebook = new wxNotebook(m_Splitter, 400, wxDefaultPosition,
[b63cf6cc]1086                                wxDefaultSize,
[e83fa9fc]1087                                wxBK_BOTTOM);
[203d2a7]1088    m_Notebook->Show(false);
[f433fda]1089
[1be3a88]1090    wxPanel * panel = new wxPanel(m_Notebook);
1091    m_Tree = new AvenTreeCtrl(this, panel);
[156dc16]1092
[429465a]1093//    m_RegexpCheckBox = new wxCheckBox(find_panel, -1,
[ee7511a]1094//                                    msg(/*Regular expression*/));
[2c30188]1095
1096    wxBoxSizer *panel_sizer = new wxBoxSizer(wxVERTICAL);
1097    panel_sizer->Add(m_Tree, 1, wxALL | wxEXPAND, 2);
[1be3a88]1098    panel->SetAutoLayout(true);
1099    panel->SetSizer(panel_sizer);
1100//    panel_sizer->SetSizeHints(panel);
[156dc16]1101
[5876fcb]1102    m_Control = new GUIControl();
1103    m_Gfx = new GfxCore(this, m_Splitter, m_Control);
1104    m_Control->SetView(m_Gfx);
[156dc16]1105
[203d2a7]1106    // Presentation panel:
[1be3a88]1107    wxPanel * prespanel = new wxPanel(m_Notebook);
[203d2a7]1108
[1be3a88]1109    m_PresList = new AvenPresList(this, prespanel, m_Gfx);
[f433fda]1110
[203d2a7]1111    wxBoxSizer *pres_panel_sizer = new wxBoxSizer(wxVERTICAL);
1112    pres_panel_sizer->Add(m_PresList, 1, wxALL | wxEXPAND, 2);
[1be3a88]1113    prespanel->SetAutoLayout(true);
1114    prespanel->SetSizer(pres_panel_sizer);
[1690fa9]1115
[203d2a7]1116    // Overall tabbed structure:
[c5032bb0]1117    // FIXME: this assumes images are 15x15
1118    wxImageList* image_list = new wxImageList(15, 15);
[b4f28e0]1119    image_list->Add(TOOL(survey_tree));
1120    image_list->Add(TOOL(pres_tree));
[203d2a7]1121    m_Notebook->SetImageList(image_list);
[736f7df]1122    /* TRANSLATORS: labels for tabbed side panel this is for the tab with the
1123     * tree hierarchy of survey station names */
[5627cbb]1124    m_Notebook->AddPage(panel, wmsg(/*Surveys*/376), true, 0);
1125    m_Notebook->AddPage(prespanel, wmsg(/*Presentation*/377), false, 1);
[203d2a7]1126
[e9b97eb]1127    m_Splitter->Initialize(m_Gfx);
[068b4f2]1128}
[137bf99]1129
[373b738]1130bool MainFrm::LoadData(const wxString& file, const wxString& prefix)
[b88b171]1131{
[137bf99]1132    // Load survey data from file, centre the dataset around the origin,
[f4fae12]1133    // and prepare the data for drawing.
[137bf99]1134
[c9427d2]1135#if 0
1136    wxStopWatch timer;
1137    timer.Start();
1138#endif
[b88b171]1139
[373b738]1140    int err_msg_code = Model::Load(file, prefix);
1141    if (err_msg_code) {
1142        wxString m = wxString::Format(wmsg(err_msg_code), file.c_str());
1143        wxGetApp().ReportError(m);
1144        return false;
1145    }
1146
1147    // Update window title.
1148    SetTitle(GetSurveyTitle() + " - " APP_NAME);
1149
1150    // Sort the labels ready for filling the tree.
1151    m_Labels.sort(LabelCmp(GetSeparator()));
1152
1153    // Fill the tree of stations and prefixes.
1154    wxString root_name = wxFileNameFromPath(file);
1155    if (!prefix.empty()) {
1156        root_name += " (";
1157        root_name += prefix;
1158        root_name += ")";
1159    }
[17a38ded]1160    m_Tree->FillTree(root_name);
[373b738]1161
1162    // Sort labels so that entrances are displayed in preference,
1163    // then fixed points, then exported points, then other points.
1164    //
1165    // Also sort by leaf name so that we'll tend to choose labels
1166    // from different surveys, rather than labels from surveys which
1167    // are earlier in the list.
1168    m_Labels.sort(LabelPlotCmp(GetSeparator()));
1169
1170    if (!m_FindBox->GetValue().empty()) {
1171        // Highlight any stations matching the current search.
1172        DoFind();
1173    }
1174
1175    m_FileProcessed = file;
1176
1177    return true;
1178}
1179
[d4650b3]1180#if 0
[57a3cd4]1181// Run along a newly read in traverse and make up plausible LRUD where
1182// it is missing.
1183void
[c61aa79]1184MainFrm::FixLRUD(traverse & centreline)
[57a3cd4]1185{
1186    assert(centreline.size() > 1);
1187
1188    Double last_size = 0;
[d4650b3]1189    vector<PointInfo>::iterator i = centreline.begin();
[57a3cd4]1190    while (i != centreline.end()) {
[4c9e87b]1191        // Get the coordinates of this vertex.
[db36155]1192        Point & pt_v = *i++;
[57a3cd4]1193        Double size;
1194
1195        if (i != centreline.end()) {
1196            Double h = sqrd(i->GetX() - pt_v.GetX()) +
1197                       sqrd(i->GetY() - pt_v.GetY());
1198            Double v = sqrd(i->GetZ() - pt_v.GetZ());
1199            if (h + v > 30.0 * 30.0) {
1200                Double scale = 30.0 / sqrt(h + v);
1201                h *= scale;
1202                v *= scale;
1203            }
1204            size = sqrt(h + v / 9);
1205            size /= 4;
1206            if (i == centreline.begin() + 1) {
1207                // First segment.
1208                last_size = size;
1209            } else {
1210                // Intermediate segment.
1211                swap(size, last_size);
1212                size += last_size;
1213                size /= 2;
1214            }
1215        } else {
1216            // Last segment.
1217            size = last_size;
1218        }
1219
1220        Double & l = pt_v.l;
1221        Double & r = pt_v.r;
1222        Double & u = pt_v.u;
1223        Double & d = pt_v.d;
1224
1225        if (l == 0 && r == 0 && u == 0 && d == 0) {
1226            l = r = u = d = -size;
1227        } else {
1228            if (l < 0 && r < 0) {
1229                l = r = -size;
1230            } else if (l < 0) {
1231                l = -(2 * size - r);
1232                if (l >= 0) l = -0.01;
1233            } else if (r < 0) {
1234                r = -(2 * size - l);
1235                if (r >= 0) r = -0.01;
1236            }
1237            if (u < 0 && d < 0) {
1238                u = d = -size;
1239            } else if (u < 0) {
1240                u = -(2 * size - d);
1241                if (u >= 0) u = -0.01;
1242            } else if (d < 0) {
1243                d = -(2 * size - u);
1244                if (d >= 0) d = -0.01;
1245            }
1246        }
1247    }
1248}
[d4650b3]1249#endif
[57a3cd4]1250
[732b9b0]1251void MainFrm::OnMRUFile(wxCommandEvent& event)
1252{
1253    wxString f(m_history.GetHistoryFile(event.GetId() - wxID_FILE1));
1254    if (!f.empty()) OpenFile(f);
1255}
1256
[bc73093]1257void MainFrm::AddToFileHistory(const wxString & file)
1258{
1259    if (wxIsAbsolutePath(file)) {
1260        m_history.AddFileToHistory(file);
1261    } else {
1262        wxString abs = wxGetCwd();
1263        abs += wxCONFIG_PATH_SEPARATOR;
1264        abs += file;
1265        m_history.AddFileToHistory(abs);
1266    }
1267    wxConfigBase *b = wxConfigBase::Get();
1268    m_history.Save(*b);
1269    b->Flush();
1270}
1271
[5f06d2c]1272void MainFrm::OpenFile(const wxString& file, const wxString& survey)
[137bf99]1273{
[4b1fc48]1274    wxBusyCursor hourglass;
[bc73093]1275
1276    // Check if this is an unprocessed survey data file.
1277    if (file.length() > 4 && file[file.length() - 4] == '.') {
1278        wxString ext(file, file.length() - 3, 3);
1279        ext.MakeLower();
1280        if (ext == wxT("svx") || ext == wxT("dat") || ext == wxT("mak")) {
[d7b53e3]1281            CavernLogWindow * log = new CavernLogWindow(this, survey, m_Splitter);
[fb5887c]1282            wxWindow * win = m_Splitter->GetWindow1();
1283            m_Splitter->ReplaceWindow(win, log);
[fd96020]1284            win->Show(false);
[fb5887c]1285            if (m_Splitter->GetWindow2() == NULL) {
1286                if (win != m_Gfx) win->Destroy();
1287            } else {
1288                if (m_Splitter->IsSplit()) m_Splitter->Unsplit();
1289            }
1290
[8991d7f]1291            if (wxFileExists(file)) AddToFileHistory(file);
1292            log->process(file);
1293            // Log window will tell us to load file if it successfully completes.
[bc73093]1294            return;
[eb5b48df]1295        }
[137bf99]1296    }
[bc73093]1297
1298    if (!LoadData(file, survey))
1299        return;
1300    AddToFileHistory(file);
[5e0b9f9d]1301    InitialiseAfterLoad(file, survey);
[d7b53e3]1302
1303    // If aven is showing the log for a .svx file and you load a .3d file, then
1304    // at this point m_Log will be the log window for the .svx file, so destroy
1305    // it - it should never legitimately be set if we get here.
1306    if (m_Log) {
1307        m_Log->Destroy();
1308        m_Log = NULL;
1309    }
[bc73093]1310}
1311
[5e0b9f9d]1312void MainFrm::InitialiseAfterLoad(const wxString & file, const wxString & prefix)
[bc73093]1313{
[486c619]1314    if (m_SashPosition < 0) {
1315        // Calculate sane default width for side panel.
1316        int x;
1317        int y;
1318        GetClientSize(&x, &y);
1319        if (x < 600)
1320            x /= 3;
1321        else if (x < 1000)
1322            x = 200;
1323        else
1324            x /= 5;
1325        m_SashPosition = x;
1326    }
[bc73093]1327
[fb5887c]1328    // Do this before we potentially delete the log window which may own the
1329    // wxString which parameter file refers to!
[bc73093]1330    bool same_file = (file == m_File);
1331    if (!same_file)
1332        m_File = file;
[5e0b9f9d]1333    m_Survey = prefix;
[bc73093]1334
[fb5887c]1335    wxWindow * win = NULL;
1336    if (m_Splitter->GetWindow2() == NULL) {
1337        win = m_Splitter->GetWindow1();
1338        if (win == m_Gfx) win = NULL;
1339    }
1340
[486c619]1341    if (!IsFullScreen()) {
1342        m_Splitter->SplitVertically(m_Notebook, m_Gfx, m_SashPosition);
1343    } else {
1344        was_showing_sidepanel_before_fullscreen = true;
1345    }
[fb5887c]1346
[bc73093]1347    m_Gfx->Initialise(same_file);
[d7b53e3]1348
1349    if (win) {
1350        // FIXME: check it actually is the log window!
1351        if (m_Log && m_Log != win)
1352            m_Log->Destroy();
1353        m_Log = win;
1354        m_Log->Show(false);
1355    }
1356
[486c619]1357    if (!IsFullScreen()) {
1358        m_Notebook->Show(true);
1359    }
[bc73093]1360
1361    m_Gfx->Show(true);
1362    m_Gfx->SetFocus();
[d7b53e3]1363}
[fb5887c]1364
[d7b53e3]1365void MainFrm::HideLog(wxWindow * log_window)
1366{
1367    if (!IsFullScreen()) {
1368        m_Splitter->SplitVertically(m_Notebook, m_Gfx, m_SashPosition);
1369    }
1370
1371    m_Log = log_window;
1372    m_Log->Show(false);
1373
1374    if (!IsFullScreen()) {
1375        m_Notebook->Show(true);
1376    }
1377
1378    m_Gfx->Show(true);
1379    m_Gfx->SetFocus();
[137bf99]1380}
1381
1382//
1383//  UI event handlers
1384//
1385
[c988ae4]1386// For Unix we want "*.svx;*.SVX" while for Windows we only want "*.svx".
1387#ifdef _WIN32
1388# define CASE(X)
1389#else
[1c55fb5]1390# define CASE(X) ";" X
[496a208]1391#endif
1392
[137bf99]1393void MainFrm::OnOpen(wxCommandEvent&)
1394{
1395#ifdef __WXMOTIF__
[5627cbb]1396    wxString filetypes = wxT("*.3d");
[137bf99]1397#else
[c988ae4]1398    wxString filetypes;
[d9cd8ae]1399    filetypes.Printf(wxT("%s|*.3d;*.svx;*.plt;*.plf;*.dat;*.mak;*.adj;*.sht;*.una;*.xyz"
1400                     CASE("*.3D;*.SVX;*.PLT;*.PLF;*.DAT;*.MAK;*.ADJ;*.SHT;*.UNA;*.XYZ")
[1c55fb5]1401                     "|%s|*.3d" CASE("*.3D")
1402                     "|%s|*.svx" CASE("*.SVX")
1403                     "|%s|*.plt;*.plf" CASE("*.PLT;*.PLF")
1404                     "|%s|*.dat;*.mak" CASE("*.DAT;*.MAK")
1405                     "|%s|*.adj;*.sht;*.una;*.xyz" CASE("*.ADJ;*.SHT;*.UNA;*.XYZ")
[5627cbb]1406                     "|%s|%s"),
[736f7df]1407                     /* TRANSLATORS: Here "survey" is a "cave map" rather than
1408                      * list of questions - it should be translated to the
1409                      * terminology that cavers using the language would use.
1410                      */
[6e63fd3]1411                     wmsg(/*All survey files*/229).c_str(),
[0b8c321]1412                     /* TRANSLATORS: Survex is the name of the software, and "3d" refers to a
1413                      * file extension, so neither should be translated. */
[5627cbb]1414                     wmsg(/*Survex 3d files*/207).c_str(),
[0b8c321]1415                     /* TRANSLATORS: Survex is the name of the software, and "svx" refers to a
1416                      * file extension, so neither should be translated. */
[6e63fd3]1417                     wmsg(/*Survex svx files*/329).c_str(),
[736f7df]1418                     /* TRANSLATORS: "Compass" as in Larry Fish’s cave
1419                      * surveying package, so probably shouldn’t be translated
1420                      */
[5627cbb]1421                     wmsg(/*Compass PLT files*/324).c_str(),
[736f7df]1422                     /* TRANSLATORS: "Compass" as in Larry Fish’s cave
[0b8c321]1423                      * surveying package, so should not be translated
[736f7df]1424                      */
[6e63fd3]1425                     wmsg(/*Compass DAT and MAK files*/330).c_str(),
[736f7df]1426                     /* TRANSLATORS: "CMAP" is Bob Thrun’s cave surveying
1427                      * package, so don’t translate it. */
[5627cbb]1428                     wmsg(/*CMAP XYZ files*/325).c_str(),
1429                     wmsg(/*All files*/208).c_str(),
[c988ae4]1430                     wxFileSelectorDefaultWildcardStr);
[5627cbb]1431#endif
[736f7df]1432    /* TRANSLATORS: Here "survey" is a "cave map" rather than list of questions
1433     * - it should be translated to the terminology that cavers using the
1434     * language would use.
[b49ac56]1435     *
[736f7df]1436     * File->Open dialog: */
[6e63fd3]1437    wxFileDialog dlg(this, wmsg(/*Select a survey file to view*/206),
[5627cbb]1438                     wxString(), wxString(),
[c988ae4]1439                     filetypes, wxFD_OPEN|wxFD_FILE_MUST_EXIST);
[137bf99]1440    if (dlg.ShowModal() == wxID_OK) {
[421b7d2]1441        OpenFile(dlg.GetPath());
[137bf99]1442    }
1443}
1444
[622460e]1445void MainFrm::OnOpenTerrain(wxCommandEvent&)
1446{
1447    if (!m_Gfx) return;
1448
[373b738]1449    if (GetCSProj().empty()) {
[ceb2edb]1450        wxMessageBox(wxT("No coordinate system specified in survey data"));
1451        return;
1452    }
1453
[622460e]1454#ifdef __WXMOTIF__
[112f80c]1455    wxString filetypes = wxT("*.*");
[622460e]1456#else
1457    wxString filetypes;
[112f80c]1458    filetypes.Printf(wxT("%s|*.bil;*.hgt;*.zip" CASE("*.BIL;*.HGT;*.ZIP")
[622460e]1459                     "|%s|%s"),
1460                     wmsg(/*Terrain files*/452).c_str(),
1461                     wmsg(/*All files*/208).c_str(),
1462                     wxFileSelectorDefaultWildcardStr);
1463#endif
[51755e1]1464    /* TRANSLATORS: "Terrain file" being a digital model of the terrain (e.g. a
1465     * grid of height values). */
[622460e]1466    wxFileDialog dlg(this, wmsg(/*Select a terrain file to view*/451),
1467                     wxString(), wxString(),
1468                     filetypes, wxFD_OPEN|wxFD_FILE_MUST_EXIST);
1469    if (dlg.ShowModal() == wxID_OK && m_Gfx->LoadDEM(dlg.GetPath())) {
1470        if (!m_Gfx->DisplayingTerrain()) m_Gfx->ToggleTerrain();
1471    }
1472}
1473
[d7b53e3]1474void MainFrm::OnShowLog(wxCommandEvent&)
1475{
[4b2d207]1476    if (!m_Log) {
1477        HideLog(m_Splitter->GetWindow1());
1478        return;
1479    }
[d7b53e3]1480    wxWindow * win = m_Splitter->GetWindow1();
1481    m_Splitter->ReplaceWindow(win, m_Log);
[fd96020]1482    win->Show(false);
[d7b53e3]1483    if (m_Splitter->IsSplit()) {
1484        m_SashPosition = m_Splitter->GetSashPosition(); // save width of panel
1485        m_Splitter->Unsplit();
1486    }
1487    m_Log->Show(true);
1488    m_Log->SetFocus();
1489    m_Log = NULL;
1490}
1491
[045e2af]1492void MainFrm::OnScreenshot(wxCommandEvent&)
1493{
[f302cbaa]1494    wxString baseleaf;
1495    wxFileName::SplitPath(m_File, NULL, NULL, &baseleaf, NULL, wxPATH_NATIVE);
[736f7df]1496    /* TRANSLATORS: title of the save screenshot dialog */
[5627cbb]1497    wxFileDialog dlg(this, wmsg(/*Save Screenshot*/321), wxString(),
[f302cbaa]1498                     baseleaf + wxT(".png"),
[5627cbb]1499                     wxT("*.png"), wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
[045e2af]1500    if (dlg.ShowModal() == wxID_OK) {
1501        static bool png_handled = false;
1502        if (!png_handled) {
[4a0e6b35]1503#if 0 // FIXME : enable this to allow other export formats...
[ee41e88]1504            ::wxInitAllImageHandlers();
1505#else
[045e2af]1506            wxImage::AddHandler(new wxPNGHandler);
[ee41e88]1507#endif
[045e2af]1508            png_handled = true;
1509        }
1510        if (!m_Gfx->SaveScreenshot(dlg.GetPath(), wxBITMAP_TYPE_PNG)) {
[0804fbe]1511            wxGetApp().ReportError(wxString::Format(wmsg(/*Error writing to file “%s”*/110), dlg.GetPath().c_str()));
[045e2af]1512        }
1513    }
1514}
1515
1516void MainFrm::OnScreenshotUpdate(wxUpdateUIEvent& event)
1517{
1518    event.Enable(!m_File.empty());
1519}
1520
[02c7c1a]1521void MainFrm::OnFilePreferences(wxCommandEvent&)
1522{
[edb6576]1523#ifdef PREFDLG
[203d2a7]1524    m_PrefsDlg = new PrefsDlg(m_Gfx, this);
[02c7c1a]1525    m_PrefsDlg->Show(true);
[edb6576]1526#endif
[02c7c1a]1527}
[8000d8f]1528
[ce403f1]1529void MainFrm::OnPrint(wxCommandEvent&)
1530{
[60d7755]1531    m_Gfx->OnPrint(m_File, GetSurveyTitle(), GetDateString());
[ce403f1]1532}
1533
[4ed8154]1534void MainFrm::PrintAndExit()
1535{
[60d7755]1536    m_Gfx->OnPrint(m_File, GetSurveyTitle(), GetDateString(), true);
[4ed8154]1537}
1538
[ce403f1]1539void MainFrm::OnPageSetup(wxCommandEvent&)
1540{
[e0ffc2c]1541    wxPageSetupDialog dlg(this, wxGetApp().GetPageSetupDialogData());
1542    if (dlg.ShowModal() == wxID_OK) {
1543        wxGetApp().SetPageSetupDialogData(dlg.GetPageSetupData());
1544    }
[ce403f1]1545}
1546
[223f1ad]1547void MainFrm::OnExport(wxCommandEvent&)
1548{
[60d7755]1549    m_Gfx->OnExport(m_File, GetSurveyTitle(), GetDateString());
[223f1ad]1550}
1551
[549eb37]1552void MainFrm::OnExtend(wxCommandEvent&)
1553{
1554    wxString output = m_Survey;
1555    if (output.empty()) {
1556        wxFileName::SplitPath(m_File, NULL, NULL, &output, NULL, wxPATH_NATIVE);
1557    }
1558    output += wxT("_extend.3d");
1559    {
1560#ifdef __WXMOTIF__
1561        wxString ext(wxT("*.3d"));
1562#else
1563        /* TRANSLATORS: Survex is the name of the software, and "3d" refers to a
1564         * file extension, so neither should be translated. */
1565        wxString ext = wmsg(/*Survex 3d files*/207);
1566        ext += wxT("|*.3d");
1567#endif
1568        wxFileDialog dlg(this, wmsg(/*Select an output filename*/319),
1569                         wxString(), output, ext,
1570                         wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
1571        if (dlg.ShowModal() != wxID_OK) return;
1572        output = dlg.GetPath();
1573    }
1574    wxString cmd = get_command_path(L"extend");
1575    cmd = escape_for_shell(cmd, false);
1576    if (!m_Survey.empty()) {
1577        cmd += wxT(" --survey=");
1578        cmd += escape_for_shell(m_Survey, false);
1579    }
1580    cmd += wxT(" --show-breaks ");
1581    cmd += escape_for_shell(m_FileProcessed, true);
1582    cmd += wxT(" ");
1583    cmd += escape_for_shell(output, true);
1584    if (wxExecute(cmd, wxEXEC_SYNC) < 0) {
1585        wxString m;
1586        m.Printf(wmsg(/*Couldn’t run external command: “%s”*/17), cmd.c_str());
1587        m += wxT(" (");
1588        m += wxString(strerror(errno), wxConvUTF8);
1589        m += wxT(')');
1590        wxGetApp().ReportError(m);
1591        return;
1592    }
1593    if (LoadData(output, wxString()))
1594        InitialiseAfterLoad(output, wxString());
1595}
1596
[137bf99]1597void MainFrm::OnQuit(wxCommandEvent&)
1598{
[1690fa9]1599    if (m_PresList->Modified()) {
1600        // FIXME: better to ask "Do you want to save your changes?" and offer [Save] [Discard] [Cancel]
[736f7df]1601        /* TRANSLATORS: and the question in that box */
[5627cbb]1602        if (wxMessageBox(wmsg(/*The current presentation has been modified.  Abandon unsaved changes?*/327),
[736f7df]1603                         /* TRANSLATORS: title of message box */
[5627cbb]1604                         wmsg(/*Modified Presentation*/326),
[1690fa9]1605                         wxOK|wxCANCEL|wxICON_QUESTION) == wxCANCEL) {
1606            return;
1607        }
1608    }
[3db0798]1609    wxConfigBase *b = wxConfigBase::Get();
1610    if (IsFullScreen()) {
[5627cbb]1611        b->Write(wxT("width"), -2);
1612        b->DeleteEntry(wxT("height"));
[3db0798]1613    } else if (IsMaximized()) {
[5627cbb]1614        b->Write(wxT("width"), -1);
1615        b->DeleteEntry(wxT("height"));
[3db0798]1616    } else {
1617        int width, height;
1618        GetSize(&width, &height);
[5627cbb]1619        b->Write(wxT("width"), width);
1620        b->Write(wxT("height"), height);
[3db0798]1621    }
1622    b->Flush();
[137bf99]1623    exit(0);
1624}
1625
1626void MainFrm::OnClose(wxCloseEvent&)
1627{
[3db0798]1628    wxCommandEvent dummy;
1629    OnQuit(dummy);
[137bf99]1630}
1631
1632void MainFrm::OnAbout(wxCommandEvent&)
1633{
[261ab22]1634#ifdef __WXMAC__
[559cd60]1635    // GetIcon() returns an invalid wxIcon under macOS.
[261ab22]1636    AboutDlg dlg(this, wxICON(aven));
1637#else
[ea1ea51]1638    AboutDlg dlg(this, GetIcon());
[261ab22]1639#endif
[796aee3]1640    dlg.Centre();
1641    dlg.ShowModal();
[137bf99]1642}
[c6d95d8]1643
[7c29c976]1644void MainFrm::UpdateStatusBar()
1645{
1646    if (!here_text.empty()) {
1647        GetStatusBar()->SetStatusText(here_text);
1648        GetStatusBar()->SetStatusText(dist_text, 1);
1649    } else if (!coords_text.empty()) {
1650        GetStatusBar()->SetStatusText(coords_text);
[0633bcc]1651        GetStatusBar()->SetStatusText(distfree_text, 1);
[7c29c976]1652    } else {
[5627cbb]1653        GetStatusBar()->SetStatusText(wxString());
1654        GetStatusBar()->SetStatusText(wxString(), 1);
[7c29c976]1655    }
1656}
1657
[1fd2edb]1658void MainFrm::ClearTreeSelection()
1659{
1660    m_Tree->UnselectAll();
[19026f3]1661    m_Gfx->SetThere();
[381ae6e]1662    ShowInfo();
[1fd2edb]1663}
1664
[156dc16]1665void MainFrm::ClearCoords()
1666{
[4b031c0]1667    if (!coords_text.empty()) {
[5627cbb]1668        coords_text = wxString();
[4b031c0]1669        UpdateStatusBar();
1670    }
[156dc16]1671}
1672
[d67450e]1673void MainFrm::SetCoords(const Vector3 &v)
[d877aa2]1674{
[ccb83b7]1675    Double x = v.GetX();
1676    Double y = v.GetY();
1677    Double z = v.GetZ();
1678    int units;
[d877aa2]1679    if (m_Gfx->GetMetric()) {
[ccb83b7]1680        units = /*m*/424;
[d877aa2]1681    } else {
[ccb83b7]1682        x /= METRES_PER_FOOT;
1683        y /= METRES_PER_FOOT;
1684        z /= METRES_PER_FOOT;
1685        units = /*ft*/428;
[d877aa2]1686    }
[736f7df]1687    /* TRANSLATORS: show coordinates (N = North or Northing, E = East or
1688     * Easting) */
[ccb83b7]1689    coords_text.Printf(wmsg(/*%.2f E, %.2f N*/338), x, y);
1690    coords_text += wxString::Format(wxT(", %s %.2f%s"),
1691                                    wmsg(/*Altitude*/335).c_str(),
1692                                    z, wmsg(units).c_str());
[5627cbb]1693    distfree_text = wxString();
[7c29c976]1694    UpdateStatusBar();
[d877aa2]1695}
1696
[0633bcc]1697const LabelInfo * MainFrm::GetTreeSelection() const {
1698    wxTreeItemData* sel_wx;
1699    if (!m_Tree->GetSelectionData(&sel_wx)) return NULL;
1700
[44ed489]1701    const TreeData* data = static_cast<const TreeData*>(sel_wx);
[0633bcc]1702    if (!data->IsStation()) return NULL;
1703
1704    return data->GetLabel();
1705}
1706
[381ae6e]1707void MainFrm::SetCoords(Double x, Double y, const LabelInfo * there)
[156dc16]1708{
[7c29c976]1709    wxString & s = coords_text;
[33b2094]1710    if (m_Gfx->GetMetric()) {
[5627cbb]1711        s.Printf(wmsg(/*%.2f E, %.2f N*/338), x, y);
[7a89dc2]1712    } else {
[5627cbb]1713        s.Printf(wmsg(/*%.2f E, %.2f N*/338),
[3d4bee1]1714                 x / METRES_PER_FOOT, y / METRES_PER_FOOT);
[7a89dc2]1715    }
[0633bcc]1716
[c00c6713]1717    wxString & t = distfree_text;
[5627cbb]1718    t = wxString();
[381ae6e]1719    if (m_Gfx->ShowingMeasuringLine() && there) {
[373b738]1720        auto offset = GetOffset();
1721        Vector3 delta(x - offset.GetX() - there->GetX(),
1722                      y - offset.GetY() - there->GetY(), 0);
[0633bcc]1723        Double dh = sqrt(delta.GetX()*delta.GetX() + delta.GetY()*delta.GetY());
1724        Double brg = deg(atan2(delta.GetX(), delta.GetY()));
1725        if (brg < 0) brg += 360;
1726
1727        wxString from_str;
[736f7df]1728        /* TRANSLATORS: Used in Aven:
[113731f]1729         * From <stationname>: H 12.24m, Brg 234.5°
1730         */
[7b9b700]1731        from_str.Printf(wmsg(/*From %s*/339), there->name_or_anon().c_str());
[ccb83b7]1732        int brg_unit;
[0633bcc]1733        if (m_Gfx->GetDegrees()) {
[ccb83b7]1734            brg_unit = /*°*/344;
[0633bcc]1735        } else {
1736            brg *= 400.0 / 360.0;
[85dcdcd]1737            brg_unit = /*ᵍ*/345;
[0633bcc]1738        }
1739
[ccb83b7]1740        int units;
[0633bcc]1741        if (m_Gfx->GetMetric()) {
[ccb83b7]1742            units = /*m*/424;
[0633bcc]1743        } else {
[ccb83b7]1744            dh /= METRES_PER_FOOT;
1745            units = /*ft*/428;
[0633bcc]1746        }
[736f7df]1747        /* TRANSLATORS: "H" is short for "Horizontal", "Brg" for "Bearing" (as
1748         * in Compass bearing) */
[113731f]1749        t.Printf(wmsg(/*%s: H %.2f%s, Brg %03.1f%s*/374),
[ccb83b7]1750                 from_str.c_str(), dh, wmsg(units).c_str(),
[113731f]1751                 brg, wmsg(brg_unit).c_str());
[0633bcc]1752    }
1753
[7c29c976]1754    UpdateStatusBar();
[156dc16]1755}
1756
[381ae6e]1757void MainFrm::SetAltitude(Double z, const LabelInfo * there)
[156dc16]1758{
[ccb83b7]1759    double alt = z;
1760    int units;
[33b2094]1761    if (m_Gfx->GetMetric()) {
[ccb83b7]1762        units = /*m*/424;
[7a89dc2]1763    } else {
[ccb83b7]1764        alt /= METRES_PER_FOOT;
1765        units = /*ft*/428;
[7a89dc2]1766    }
[ccb83b7]1767    coords_text.Printf(wxT("%s %.2f%s"), wmsg(/*Altitude*/335).c_str(),
1768                       alt, wmsg(units).c_str());
[0633bcc]1769
[c00c6713]1770    wxString & t = distfree_text;
[5627cbb]1771    t = wxString();
[381ae6e]1772    if (m_Gfx->ShowingMeasuringLine() && there) {
[373b738]1773        Double dz = z - GetOffset().GetZ() - there->GetZ();
[0633bcc]1774
1775        wxString from_str;
[7b9b700]1776        from_str.Printf(wmsg(/*From %s*/339), there->name_or_anon().c_str());
[0633bcc]1777
[ccb83b7]1778        if (!m_Gfx->GetMetric()) {
1779            dz /= METRES_PER_FOOT;
[0633bcc]1780        }
[736f7df]1781        // TRANSLATORS: "V" is short for "Vertical"
[ccb83b7]1782        t.Printf(wmsg(/*%s: V %.2f%s*/375), from_str.c_str(),
1783                 dz, wmsg(units).c_str());
[0633bcc]1784    }
1785
[7c29c976]1786    UpdateStatusBar();
[2a3d328]1787}
1788
[381ae6e]1789void MainFrm::ShowInfo(const LabelInfo *here, const LabelInfo *there)
[7a89dc2]1790{
1791    assert(m_Gfx);
[f433fda]1792
[0633bcc]1793    if (!here) {
[7c29c976]1794        m_Gfx->SetHere();
[570d62c3]1795        m_Tree->SetHere(wxTreeItemId());
[1235f9b]1796        // Don't clear "There" mark here.
[4b031c0]1797        if (here_text.empty() && dist_text.empty()) return;
[5627cbb]1798        here_text = wxString();
1799        dist_text = wxString();
[7c29c976]1800        UpdateStatusBar();
1801        return;
1802    }
1803
[373b738]1804    Vector3 v = *here + GetOffset();
[7c29c976]1805    wxString & s = here_text;
[ccb83b7]1806    Double x = v.GetX();
1807    Double y = v.GetY();
1808    Double z = v.GetZ();
1809    int units;
[33b2094]1810    if (m_Gfx->GetMetric()) {
[ccb83b7]1811        units = /*m*/424;
[7a89dc2]1812    } else {
[ccb83b7]1813        x /= METRES_PER_FOOT;
1814        y /= METRES_PER_FOOT;
1815        z /= METRES_PER_FOOT;
1816        units = /*ft*/428;
[7a89dc2]1817    }
[ccb83b7]1818    s.Printf(wmsg(/*%.2f E, %.2f N*/338), x, y);
1819    s += wxString::Format(wxT(", %s %.2f%s"), wmsg(/*Altitude*/335).c_str(),
1820                          z, wmsg(units).c_str());
[5627cbb]1821    s += wxT(": ");
[f153906]1822    s += here->name_or_anon();
[381ae6e]1823    m_Gfx->SetHere(here);
[570d62c3]1824    m_Tree->SetHere(here->tree_id);
[7a89dc2]1825
[381ae6e]1826    if (m_Gfx->ShowingMeasuringLine() && there) {
1827        Vector3 delta = *here - *there;
[d67450e]1828
[87d2ab6]1829        Double d_horiz = sqrt(delta.GetX()*delta.GetX() +
1830                              delta.GetY()*delta.GetY());
[0633bcc]1831        Double dr = delta.magnitude();
[87d2ab6]1832        Double dz = delta.GetZ();
[d67450e]1833
[0633bcc]1834        Double brg = deg(atan2(delta.GetX(), delta.GetY()));
1835        if (brg < 0) brg += 360;
[421b7d2]1836
[533d8e0]1837        Double grd = deg(atan2(delta.GetZ(), d_horiz));
1838
[0633bcc]1839        wxString from_str;
[7b9b700]1840        from_str.Printf(wmsg(/*From %s*/339), there->name_or_anon().c_str());
[203d2a7]1841
[0633bcc]1842        wxString hv_str;
1843        if (m_Gfx->GetMetric()) {
[ccb83b7]1844            units = /*m*/424;
[0633bcc]1845        } else {
[ccb83b7]1846            d_horiz /= METRES_PER_FOOT;
1847            dr /= METRES_PER_FOOT;
[87d2ab6]1848            dz /= METRES_PER_FOOT;
[ccb83b7]1849            units = /*ft*/428;
[0633bcc]1850        }
[ccb83b7]1851        wxString len_unit = wmsg(units);
[736f7df]1852        /* TRANSLATORS: "H" is short for "Horizontal", "V" for "Vertical" */
[ccb83b7]1853        hv_str.Printf(wmsg(/*H %.2f%s, V %.2f%s*/340),
[87d2ab6]1854                      d_horiz, len_unit.c_str(), dz, len_unit.c_str());
[ccb83b7]1855        int brg_unit;
[0633bcc]1856        if (m_Gfx->GetDegrees()) {
[ccb83b7]1857            brg_unit = /*°*/344;
[7a89dc2]1858        } else {
[0633bcc]1859            brg *= 400.0 / 360.0;
[85dcdcd]1860            brg_unit = /*ᵍ*/345;
[421b7d2]1861        }
[533d8e0]1862        int grd_unit;
1863        wxString grd_str;
1864        if (m_Gfx->GetPercent()) {
1865            if (grd > 89.99) {
1866                grd = 1000000;
1867            } else if (grd < -89.99) {
1868                grd = -1000000;
1869            } else {
1870                grd = int(100 * tan(rad(grd)));
1871            }
1872            if (grd > 99999 || grd < -99999) {
1873                grd_str = grd > 0 ? wxT("+") : wxT("-");
1874                /* TRANSLATORS: infinity symbol - used for the percentage gradient on
1875                 * vertical angles. */
1876                grd_str += wmsg(/*∞*/431);
1877            }
1878            grd_unit = /*%*/96;
1879        } else if (m_Gfx->GetDegrees()) {
1880            grd_unit = /*°*/344;
1881        } else {
1882            grd *= 400.0 / 360.0;
1883            grd_unit = /*ᵍ*/345;
1884        }
1885        if (grd_str.empty()) {
1886            grd_str.Printf(wxT("%+02.1f%s"), grd, wmsg(grd_unit).c_str());
1887        }
1888
[0633bcc]1889        wxString & d = dist_text;
[736f7df]1890        /* TRANSLATORS: "Dist" is short for "Distance", "Brg" for "Bearing" (as
[533d8e0]1891         * in Compass bearing) and "Grd" for "Gradient" (the slope angle
1892         * measured by the clino) */
1893        d.Printf(wmsg(/*%s: %s, Dist %.2f%s, Brg %03.1f%s, Grd %s*/341),
[ccb83b7]1894                 from_str.c_str(), hv_str.c_str(),
[533d8e0]1895                 dr, len_unit.c_str(),
1896                 brg, wmsg(brg_unit).c_str(),
1897                 grd_str.c_str());
[0633bcc]1898    } else {
[5627cbb]1899        dist_text = wxString();
[0633bcc]1900        m_Gfx->SetThere();
[156dc16]1901    }
[7c29c976]1902    UpdateStatusBar();
[7a89dc2]1903}
1904
[8734409]1905void MainFrm::DisplayTreeInfo(const wxTreeItemData* item)
[7a89dc2]1906{
[8734409]1907    const TreeData* data = static_cast<const TreeData*>(item);
[0642381]1908    if (data) {
1909        if (data->IsStation()) {
1910            m_Gfx->SetHereFromTree(data->GetLabel());
1911        } else {
1912            m_Gfx->SetHereSurvey(data->GetSurvey());
1913            ShowInfo();
1914        }
1915        return;
[156dc16]1916    }
[0642381]1917    m_Gfx->SetHereSurvey(wxString());
1918    ShowInfo();
[156dc16]1919}
1920
[672459c]1921void MainFrm::TreeItemSelected(const wxTreeItemData* item)
[156dc16]1922{
[44ed489]1923    const TreeData* data = static_cast<const TreeData*>(item);
[156dc16]1924    if (data && data->IsStation()) {
[8734409]1925        const LabelInfo* label = data->GetLabel();
[672459c]1926        if (m_Gfx->GetThere() == label) {
1927            m_Gfx->CentreOn(*label);
1928        } else {
1929            m_Gfx->SetThere(label);
1930        }
[5627cbb]1931        dist_text = wxString();
[7c29c976]1932        // FIXME: Need to update dist_text (From ... etc)
[887c26e]1933        // But we don't currently know where "here" is at this point in the
1934        // code!
[0580c6a]1935    } else {
[5627cbb]1936        dist_text = wxString();
[0580c6a]1937        m_Gfx->SetThere();
[672459c]1938        if (!data) {
1939            // Must be the root.
[0642381]1940            wxCommandEvent dummy;
1941            OnDefaults(dummy);
[672459c]1942        } else {
[0642381]1943            m_Gfx->ZoomToSurvey(data->GetSurvey());
[44ed489]1944        }
1945    }
[7c29c976]1946    UpdateStatusBar();
[156dc16]1947}
1948
[97a414f]1949void MainFrm::OnPresNew(wxCommandEvent&)
[156dc16]1950{
[1690fa9]1951    if (m_PresList->Modified()) {
1952        // FIXME: better to ask "Do you want to save your changes?" and offer [Save] [Discard] [Cancel]
[5627cbb]1953        if (wxMessageBox(wmsg(/*The current presentation has been modified.  Abandon unsaved changes?*/327),
1954                         wmsg(/*Modified Presentation*/326),
[1690fa9]1955                         wxOK|wxCANCEL|wxICON_QUESTION) == wxCANCEL) {
1956            return;
1957        }
[156dc16]1958    }
[bd7607c]1959    m_PresList->New(m_File);
[24961e2]1960    if (!ShowingSidePanel()) ToggleSidePanel();
[c8f929b]1961    // Select the presentation page in the notebook.
1962    m_Notebook->SetSelection(1);
[156dc16]1963}
1964
[97a414f]1965void MainFrm::OnPresOpen(wxCommandEvent&)
[156dc16]1966{
[1690fa9]1967    if (m_PresList->Modified()) {
1968        // FIXME: better to ask "Do you want to save your changes?" and offer [Save] [Discard] [Cancel]
[5627cbb]1969        if (wxMessageBox(wmsg(/*The current presentation has been modified.  Abandon unsaved changes?*/327),
1970                         wmsg(/*Modified Presentation*/326),
[1690fa9]1971                         wxOK|wxCANCEL|wxICON_QUESTION) == wxCANCEL) {
1972            return;
1973        }
1974    }
[156dc16]1975#ifdef __WXMOTIF__
[5627cbb]1976    wxFileDialog dlg(this, wmsg(/*Select a presentation to open*/322), wxString(), wxString(),
1977                     wxT("*.fly"), wxFD_OPEN);
[156dc16]1978#else
[5627cbb]1979    wxFileDialog dlg(this, wmsg(/*Select a presentation to open*/322), wxString(), wxString(),
1980                     wxString::Format(wxT("%s|*.fly|%s|%s"),
[b49ac56]1981                               wmsg(/*Aven presentations*/320).c_str(),
1982                               wmsg(/*All files*/208).c_str(),
1983                               wxFileSelectorDefaultWildcardStr),
[5627cbb]1984                     wxFD_OPEN|wxFD_FILE_MUST_EXIST);
[156dc16]1985#endif
1986    if (dlg.ShowModal() == wxID_OK) {
[1690fa9]1987        if (!m_PresList->Load(dlg.GetPath())) {
1988            return;
1989        }
[97a414f]1990        // FIXME : keep a history of loaded/saved presentations, like we do for
1991        // loaded surveys...
[c8f929b]1992        // Select the presentation page in the notebook.
1993        m_Notebook->SetSelection(1);
[156dc16]1994    }
1995}
[5ffa439]1996
[97a414f]1997void MainFrm::OnPresSave(wxCommandEvent&)
[8000d8f]1998{
[1690fa9]1999    m_PresList->Save(true);
[8000d8f]2000}
2001
[97a414f]2002void MainFrm::OnPresSaveAs(wxCommandEvent&)
[5ffa439]2003{
[1690fa9]2004    m_PresList->Save(false);
[5ffa439]2005}
2006
[97a414f]2007void MainFrm::OnPresMark(wxCommandEvent&)
[5ffa439]2008{
[1690fa9]2009    m_PresList->AddMark();
[5ffa439]2010}
2011
[128fac4]2012void MainFrm::OnPresFRewind(wxCommandEvent&)
2013{
2014    m_Gfx->PlayPres(-100);
2015}
2016
2017void MainFrm::OnPresRewind(wxCommandEvent&)
2018{
2019    m_Gfx->PlayPres(-10);
2020}
2021
2022void MainFrm::OnPresReverse(wxCommandEvent&)
2023{
2024    m_Gfx->PlayPres(-1);
2025}
2026
2027void MainFrm::OnPresPlay(wxCommandEvent&)
[5ffa439]2028{
[128fac4]2029    m_Gfx->PlayPres(1);
2030}
2031
2032void MainFrm::OnPresFF(wxCommandEvent&)
2033{
2034    m_Gfx->PlayPres(10);
2035}
2036
2037void MainFrm::OnPresFFF(wxCommandEvent&)
2038{
2039    m_Gfx->PlayPres(100);
2040}
2041
2042void MainFrm::OnPresPause(wxCommandEvent&)
2043{
2044    m_Gfx->PlayPres(0);
2045}
2046
2047void MainFrm::OnPresStop(wxCommandEvent&)
2048{
2049    m_Gfx->PlayPres(0, false);
[5ffa439]2050}
2051
[97a414f]2052void MainFrm::OnPresExportMovie(wxCommandEvent&)
[6a4cdcb6]2053{
[f4e4b56]2054#ifdef WITH_LIBAV
[97a414f]2055    // FIXME : Taking the leaf of the currently loaded presentation as the
2056    // default might make more sense?
[f302cbaa]2057    wxString baseleaf;
2058    wxFileName::SplitPath(m_File, NULL, NULL, &baseleaf, NULL, wxPATH_NATIVE);
[6e63fd3]2059    wxFileDialog dlg(this, wmsg(/*Export Movie*/331), wxString(),
[709dd14]2060                     baseleaf + wxT(".mp4"),
[65f6d8e]2061                     wxT("MPEG|*.mp4|OGG|*.ogv|AVI|*.avi|QuickTime|*.mov|WMV|*.wmv;*.asf"),
[4e98397]2062                     wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
[97a414f]2063    if (dlg.ShowModal() == wxID_OK) {
[091069f]2064        // Error is reported by GfxCore.
2065        (void)m_Gfx->ExportMovie(dlg.GetPath());
[6a4cdcb6]2066    }
[f4e4b56]2067#else
2068    wxGetApp().ReportError(wxT("Movie generation support code not present"));
2069#endif
[6a4cdcb6]2070}
2071
[1690fa9]2072PresentationMark MainFrm::GetPresMark(int which)
[5ffa439]2073{
[1690fa9]2074    return m_PresList->GetPresMark(which);
[5ffa439]2075}
2076
[86895ec]2077void MainFrm::RestrictTo(const wxString & survey)
2078{
2079    // The station names will change, so clear the current search.
2080    wxCommandEvent dummy;
2081    OnHide(dummy);
2082
2083    wxString new_prefix;
2084    if (!survey.empty()) {
2085        if (!m_Survey.empty()) {
2086            new_prefix = m_Survey;
[373b738]2087            new_prefix += GetSeparator();
[86895ec]2088        }
2089        new_prefix += survey;
2090    }
[c0aabea]2091    // Reload the processed data rather rather than potentially reprocessing.
2092    if (!LoadData(m_FileProcessed, new_prefix))
[86895ec]2093        return;
2094    InitialiseAfterLoad(m_File, new_prefix);
2095}
2096
[622460e]2097void MainFrm::OnOpenTerrainUpdate(wxUpdateUIEvent& event)
2098{
2099    event.Enable(!m_File.empty());
2100}
[1690fa9]2101
2102void MainFrm::OnPresNewUpdate(wxUpdateUIEvent& event)
[5ffa439]2103{
[1366db2]2104    event.Enable(!m_File.empty());
[5ffa439]2105}
2106
[1690fa9]2107void MainFrm::OnPresOpenUpdate(wxUpdateUIEvent& event)
[5ffa439]2108{
[1690fa9]2109    event.Enable(!m_File.empty());
[5ffa439]2110}
2111
[1690fa9]2112void MainFrm::OnPresSaveUpdate(wxUpdateUIEvent& event)
[5ffa439]2113{
[1690fa9]2114    event.Enable(!m_PresList->Empty());
[5ffa439]2115}
2116
[1690fa9]2117void MainFrm::OnPresSaveAsUpdate(wxUpdateUIEvent& event)
[5ffa439]2118{
[1690fa9]2119    event.Enable(!m_PresList->Empty());
[5ffa439]2120}
2121
[1690fa9]2122void MainFrm::OnPresMarkUpdate(wxUpdateUIEvent& event)
[5ffa439]2123{
[1690fa9]2124    event.Enable(!m_File.empty());
2125}
2126
[128fac4]2127void MainFrm::OnPresFRewindUpdate(wxUpdateUIEvent& event)
2128{
2129    event.Enable(m_Gfx && m_Gfx->GetPresentationMode());
2130    event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() < -10);
2131}
2132
2133void MainFrm::OnPresRewindUpdate(wxUpdateUIEvent& event)
2134{
2135    event.Enable(m_Gfx && m_Gfx->GetPresentationMode());
2136    event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() == -10);
2137}
2138
2139void MainFrm::OnPresReverseUpdate(wxUpdateUIEvent& event)
2140{
2141    event.Enable(m_Gfx && m_Gfx->GetPresentationMode());
2142    event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() == -1);
2143}
2144
2145void MainFrm::OnPresPlayUpdate(wxUpdateUIEvent& event)
[1690fa9]2146{
2147    event.Enable(!m_PresList->Empty());
[128fac4]2148    event.Check(m_Gfx && m_Gfx->GetPresentationMode() &&
2149                m_Gfx->GetPresentationSpeed() == 1);
2150}
2151
2152void MainFrm::OnPresFFUpdate(wxUpdateUIEvent& event)
2153{
2154    event.Enable(m_Gfx && m_Gfx->GetPresentationMode());
2155    event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() == 10);
2156}
2157
2158void MainFrm::OnPresFFFUpdate(wxUpdateUIEvent& event)
2159{
2160    event.Enable(m_Gfx && m_Gfx->GetPresentationMode());
2161    event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() > 10);
2162}
2163
2164void MainFrm::OnPresPauseUpdate(wxUpdateUIEvent& event)
2165{
2166    event.Enable(m_Gfx && m_Gfx->GetPresentationMode());
2167    event.Check(m_Gfx && m_Gfx->GetPresentationSpeed() == 0);
2168}
2169
2170void MainFrm::OnPresStopUpdate(wxUpdateUIEvent& event)
2171{
2172    event.Enable(m_Gfx && m_Gfx->GetPresentationMode());
[5ffa439]2173}
[2a02de2]2174
[6a4cdcb6]2175void MainFrm::OnPresExportMovieUpdate(wxUpdateUIEvent& event)
2176{
2177    event.Enable(!m_PresList->Empty());
2178}
2179
[b4fe9fb]2180void MainFrm::OnFind(wxCommandEvent&)
[2a02de2]2181{
[bc60689]2182    pending_find = true;
2183}
2184
2185void MainFrm::OnIdle(wxIdleEvent&)
2186{
2187    if (pending_find) {
2188        DoFind();
2189    }
2190}
2191
2192void MainFrm::DoFind()
2193{
2194    pending_find = false;
[e98af57]2195    wxBusyCursor hourglass;
[44ed489]2196    // Find stations specified by a string or regular expression pattern.
[9d3d8cc]2197
[0580c6a]2198    wxString pattern = m_FindBox->GetValue();
[d1628e8e]2199    if (pattern.empty()) {
2200        // Hide any search result highlights.
2201        list<LabelInfo*>::iterator pos = m_Labels.begin();
2202        while (pos != m_Labels.end()) {
2203            LabelInfo* label = *pos++;
[5a24583]2204            label->clear_flags(LFLAG_HIGHLIGHTED);
[c8aff97]2205        }
[d1628e8e]2206        m_NumHighlighted = 0;
[0c76ad9]2207    } else {
[d1628e8e]2208        int re_flags = wxRE_NOSUB;
2209
2210        if (true /* case insensitive */) {
2211            re_flags |= wxRE_ICASE;
[0c76ad9]2212        }
2213
[d1628e8e]2214        bool substring = true;
2215        if (false /*m_RegexpCheckBox->GetValue()*/) {
2216            re_flags |= wxRE_EXTENDED;
2217        } else if (true /* simple glob-style */) {
2218            wxString pat;
2219            for (size_t i = 0; i < pattern.size(); i++) {
[5627cbb]2220               wxChar ch = pattern[i];
[d1628e8e]2221               // ^ only special at start; $ at end.  But this is simpler...
2222               switch (ch) {
2223                case '^': case '$': case '.': case '[': case '\\':
[5627cbb]2224                  pat += wxT('\\');
[d1628e8e]2225                  pat += ch;
2226                  break;
2227                case '*':
[5627cbb]2228                  pat += wxT(".*");
[d1628e8e]2229                  substring = false;
2230                  break;
2231                case '?':
[5627cbb]2232                  pat += wxT('.');
[d1628e8e]2233                  substring = false;
2234                  break;
2235                default:
2236                  pat += ch;
2237               }
2238            }
2239            pattern = pat;
2240            re_flags |= wxRE_BASIC;
2241        } else {
2242            wxString pat;
2243            for (size_t i = 0; i < pattern.size(); i++) {
[5627cbb]2244               wxChar ch = pattern[i];
[d1628e8e]2245               // ^ only special at start; $ at end.  But this is simpler...
2246               switch (ch) {
2247                case '^': case '$': case '*': case '.': case '[': case '\\':
[5627cbb]2248                  pat += wxT('\\');
[d1628e8e]2249               }
2250               pat += ch;
2251            }
2252            pattern = pat;
2253            re_flags |= wxRE_BASIC;
2254        }
[421b7d2]2255
[d1628e8e]2256        if (!substring) {
2257            // FIXME "0u" required to avoid compilation error with g++-3.0
[5627cbb]2258            if (pattern.empty() || pattern[0u] != '^') pattern = wxT('^') + pattern;
[d1628e8e]2259            // FIXME: this fails to cope with "\$" at the end of pattern...
[5627cbb]2260            if (pattern[pattern.size() - 1] != '$') pattern += wxT('$');
[d1628e8e]2261        }
[2a02de2]2262
[d1628e8e]2263        wxRegEx regex;
2264        if (!regex.Compile(pattern, re_flags)) {
2265            wxBell();
2266            return;
2267        }
[2a02de2]2268
[d1628e8e]2269        int found = 0;
[1be3a88]2270
[d1628e8e]2271        list<LabelInfo*>::iterator pos = m_Labels.begin();
2272        while (pos != m_Labels.end()) {
2273            LabelInfo* label = *pos++;
2274
[5a24583]2275            if (regex.Matches(label->GetText())) {
2276                label->set_flags(LFLAG_HIGHLIGHTED);
[d1628e8e]2277                ++found;
2278            } else {
[5a24583]2279                label->clear_flags(LFLAG_HIGHLIGHTED);
[d1628e8e]2280            }
[1be3a88]2281        }
2282
[d1628e8e]2283        m_NumHighlighted = found;
2284
2285        // Re-sort so highlighted points get names in preference
[373b738]2286        if (found) m_Labels.sort(LabelPlotCmp(GetSeparator()));
[d1628e8e]2287    }
[421b7d2]2288
[429465a]2289    m_Gfx->UpdateBlobs();
[fa42426]2290    m_Gfx->ForceRefresh();
[9d3d8cc]2291
[d1628e8e]2292    if (!m_NumHighlighted) {
[857408e]2293        GetToolBar()->SetToolShortHelp(button_HIDE, wmsg(/*No matches were found.*/328));
[a2f4720]2294    } else {
[736f7df]2295        /* TRANSLATORS: "Hide stations" button tooltip when stations are found
2296         */
[857408e]2297        GetToolBar()->SetToolShortHelp(button_HIDE, wxString::Format(wmsg(/*Hide %d found stations*/334).c_str(), m_NumHighlighted));
[9d3d8cc]2298    }
[2a02de2]2299}
2300
[d1628e8e]2301void MainFrm::OnGotoFound(wxCommandEvent&)
[2a02de2]2302{
[d1628e8e]2303    if (!m_NumHighlighted) {
[5627cbb]2304        wxGetApp().ReportError(wmsg(/*No matches were found.*/328));
[d1628e8e]2305        return;
2306    }
2307
2308    Double xmin = DBL_MAX;
2309    Double xmax = -DBL_MAX;
2310    Double ymin = DBL_MAX;
2311    Double ymax = -DBL_MAX;
2312    Double zmin = DBL_MAX;
2313    Double zmax = -DBL_MAX;
2314
[fa42426]2315    list<LabelInfo*>::iterator pos = m_Labels.begin();
2316    while (pos != m_Labels.end()) {
2317        LabelInfo* label = *pos++;
[d1628e8e]2318
[5a24583]2319        if (label->get_flags() & LFLAG_HIGHLIGHTED) {
2320            if (label->GetX() < xmin) xmin = label->GetX();
2321            if (label->GetX() > xmax) xmax = label->GetX();
2322            if (label->GetY() < ymin) ymin = label->GetY();
2323            if (label->GetY() > ymax) ymax = label->GetY();
2324            if (label->GetZ() < zmin) zmin = label->GetZ();
2325            if (label->GetZ() > zmax) zmax = label->GetZ();
[d1628e8e]2326        }
[fa42426]2327    }
[d1628e8e]2328
2329    m_Gfx->SetViewTo(xmin, xmax, ymin, ymax, zmin, zmax);
2330    m_Gfx->SetFocus();
2331}
2332
2333void MainFrm::OnHide(wxCommandEvent&)
2334{
[5627cbb]2335    m_FindBox->SetValue(wxString());
[857408e]2336    GetToolBar()->SetToolShortHelp(button_HIDE, wmsg(/*Hide*/333));
[2a02de2]2337}
[39e460c9]2338
[429465a]2339void MainFrm::OnHideUpdate(wxUpdateUIEvent& ui)
2340{
2341    ui.Enable(m_NumHighlighted != 0);
2342}
2343
[9059368]2344void MainFrm::OnViewSidePanel(wxCommandEvent&)
[b1de3e0]2345{
2346    ToggleSidePanel();
2347}
2348
2349void MainFrm::ToggleSidePanel()
[9059368]2350{
2351    // Toggle display of the side panel.
2352
2353    assert(m_Gfx);
2354
2355    if (m_Splitter->IsSplit()) {
[421b7d2]2356        m_SashPosition = m_Splitter->GetSashPosition(); // save width of panel
[1690fa9]2357        m_Splitter->Unsplit(m_Notebook);
[b63cf6cc]2358    } else {
[203d2a7]2359        m_Notebook->Show(true);
[b1de3e0]2360        m_Gfx->Show(true);
[203d2a7]2361        m_Splitter->SplitVertically(m_Notebook, m_Gfx, m_SashPosition);
[9059368]2362    }
2363}
2364
2365void MainFrm::OnViewSidePanelUpdate(wxUpdateUIEvent& ui)
2366{
[f48d6949]2367    ui.Enable(!m_File.empty());
[203d2a7]2368    ui.Check(ShowingSidePanel());
[9059368]2369}
[203d2a7]2370
2371bool MainFrm::ShowingSidePanel()
2372{
2373    return m_Splitter->IsSplit();
2374}
[fdfa926]2375
2376void MainFrm::ViewFullScreen() {
[e4b87e5]2377#ifdef __WXMAC__
[559cd60]2378    // On macOS, wxWidgets doesn't currently hide the toolbar or statusbar in
[e4b87e5]2379    // full screen mode (last checked with 3.0.2), but it is easy to do
2380    // ourselves.
2381    if (!IsFullScreen()) {
2382        GetToolBar()->Hide();
2383        GetStatusBar()->Hide();
2384    }
2385#endif
2386
[fdfa926]2387    ShowFullScreen(!IsFullScreen());
[b75a37d]2388    fullscreen_showing_menus = false;
[486c619]2389    if (IsFullScreen())
2390        was_showing_sidepanel_before_fullscreen = ShowingSidePanel();
2391    if (was_showing_sidepanel_before_fullscreen)
2392        ToggleSidePanel();
[e4b87e5]2393
2394#ifdef __WXMAC__
2395    if (!IsFullScreen()) {
2396        GetStatusBar()->Show();
2397        GetToolBar()->Show();
[3465803]2398#ifdef USING_GENERIC_TOOLBAR
2399        Layout();
2400#endif
[e4b87e5]2401    }
2402#endif
[fdfa926]2403}
[b75a37d]2404
2405bool MainFrm::FullScreenModeShowingMenus() const
2406{
2407    return fullscreen_showing_menus;
2408}
2409
2410void MainFrm::FullScreenModeShowMenus(bool show)
2411{
2412    if (!IsFullScreen() || show == fullscreen_showing_menus)
2413        return;
[7413829]2414#ifdef __WXMAC__
[559cd60]2415    // On macOS, enabling the menu bar while in full
[7413829]2416    // screen mode doesn't have any effect, so instead
2417    // make moving the mouse to the top of the screen
2418    // drop us out of full screen mode for now.
2419    ViewFullScreen();
2420#else
[3c65a9f]2421    GetMenuBar()->Show(show);
[b75a37d]2422    fullscreen_showing_menus = show;
[7413829]2423#endif
[b75a37d]2424}
Note: See TracBrowser for help on using the repository browser.