source: git/src/mainfrm.cc @ 36efb03

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since 36efb03 was 36efb03, checked in by Olly Betts <olly@…>, 9 years ago

src/: Add more TRANSLATORS comments.

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