source: git/src/gfxcore.h @ 47c62d04

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since 47c62d04 was 371f9ed, checked in by Olly Betts <olly@…>, 9 years ago

src/gfxcore.cc,src/gfxcore.h: Factor out function to pick the colour
pen based on a value between 0 and 1.

  • Property mode set to 100644
File size: 15.8 KB
RevLine 
[5809313]1//
2//  gfxcore.h
3//
4//  Core drawing code for Aven.
5//
[f4c5932]6//  Copyright (C) 2000-2001,2002,2005 Mark R. Shinwell.
[793b6a3]7//  Copyright (C) 2001-2004,2005,2006,2007,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
25#ifndef gfxcore_h
26#define gfxcore_h
27
[7aa15c0]28#include <float.h>
[dd6af8b]29#include <limits.h>
[f10cf8f]30#include <time.h>
[7aa15c0]31
[a405bc1]32#include "img_hosted.h"
[db36155]33
[5876fcb]34#include "guicontrol.h"
[381ae6e]35#include "labelinfo.h"
[4a0e6b35]36#include "vector3.h"
[5809313]37#include "wx.h"
[33b2094]38#include "gla.h"
[3ddcad8]39
[156dc16]40#include <list>
[3ddcad8]41#include <utility>
42#include <vector>
[5809313]43
[3ddcad8]44using namespace std;
[003d953]45
[137bf99]46class MainFrm;
[c61aa79]47class traverse;
[5809313]48
[ee05463]49class XSect;
[d4650b3]50class PointInfo;
[6a4cdcb6]51class MovieMaker;
[39e460c9]52
[4a0e6b35]53class PresentationMark : public Point {
54  public:
[1690fa9]55    Double angle, tilt_angle;
56    Double scale;
[49ce5b0]57    Double time;
[4a0e6b35]58    PresentationMark() : Point(), angle(0), tilt_angle(0), scale(0), time(0)
[1690fa9]59        { }
[d67450e]60    PresentationMark(const Vector3 & v, Double angle_, Double tilt_angle_,
61                     Double scale_, Double time_ = 0)
62        : Point(v), angle(angle_), tilt_angle(tilt_angle_), scale(scale_),
63          time(time_)
[1690fa9]64        { }
65    bool is_valid() const { return scale > 0; }
66};
67
[dd6af8b]68struct ZoomBox {
69  public:
70    int x1, y1, x2, y2;
71
72    ZoomBox()
73        : x1(INT_MAX) { }
74
75    bool active() const { return x1 != INT_MAX; }
76
77    void set(const wxPoint & p1, const wxPoint & p2) {
78        x1 = p1.x;
79        y1 = p1.y;
80        x2 = p2.x;
81        y2 = p2.y;
82    }
83
84    void unset() {
85        x1 = INT_MAX;
86    }
87};
88
[5293c84]89enum {
90    COLOUR_BY_NONE,
91    COLOUR_BY_DEPTH,
92    COLOUR_BY_DATE,
[fcc3741]93    COLOUR_BY_ERROR,
[af50685]94    COLOUR_BY_LENGTH,
[fcc3741]95    COLOUR_BY_LIMIT_ // Leave this last.
[5293c84]96};
97
98enum {
99    UPDATE_NONE,
100    UPDATE_BLOBS,
101    UPDATE_BLOBS_AND_CROSSES
102};
[9cf3688]103
[8666fc7]104enum {
105      SPLAYS_HIDE,
106      SPLAYS_SHOW_FADED,
107      SPLAYS_SHOW_NORMAL,
108};
109
[ff1601e]110// It's pointless to redraw the screen as often as we can on a fast machine,
111// since the display hardware will only update so many times per second.
112// This is the maximum framerate we'll redraw at.
113const int MAX_FRAMERATE = 50;
114
[33b2094]115class GfxCore : public GLACanvas {
[5b7164d]116    Double m_Scale;
[e2c1671]117    int m_ScaleBarWidth;
[42adb19]118
[d2fcc9b]119    typedef enum {
[fe665c4]120        LIST_COMPASS,
121        LIST_CLINO,
122        LIST_CLINO_BACK,
[9c37beb]123        LIST_SCALE_BAR,
[e2ea75a]124        LIST_DEPTH_KEY,
125        LIST_DATE_KEY,
126        LIST_ERROR_KEY,
[af50685]127        LIST_LENGTH_KEY,
[d2fcc9b]128        LIST_UNDERGROUND_LEGS,
129        LIST_TUBES,
130        LIST_SURFACE_LEGS,
[37d7084]131        LIST_BLOBS,
[8bd480e]132        LIST_CROSSES,
[37d7084]133        LIST_GRID,
[c6d5c1c]134        LIST_SHADOW,
135        LIST_LIMIT_ // Leave this last.
[d2fcc9b]136    } drawing_list;
[7aa15c0]137
[97ea48d]138    static const int NUM_COLOUR_BANDS = 13;
139
[5455bb2]140    void SetPanBase() {
141        base_pan = m_PanAngle;
[ff1601e]142        base_pan_time = timer.Time() - (1000 / MAX_FRAMERATE);
[5455bb2]143    }
144
145    void SetTiltBase() {
146        base_tilt = m_TiltAngle;
[ff1601e]147        base_tilt_time = timer.Time() - (1000 / MAX_FRAMERATE);
[5455bb2]148    }
149
[e2c1671]150public:
151    typedef enum {
152        CURSOR_DEFAULT,
153        CURSOR_POINTING_HAND,
154        CURSOR_DRAGGING_HAND,
155        CURSOR_HORIZONTAL_RESIZE,
156        CURSOR_ROTATE_HORIZONTALLY,
157        CURSOR_ROTATE_VERTICALLY,
158        CURSOR_ROTATE_EITHER_WAY,
[ecf2d23]159        CURSOR_ZOOM,
160        CURSOR_ZOOM_ROTATE
[e2c1671]161    } cursor;
162
163private:
[5876fcb]164    GUIControl* m_Control;
[33b2094]165    char* m_LabelGrid;
[137bf99]166    MainFrm* m_Parent;
[5809313]167    bool m_DoneFirstShow;
[c6d95d8]168    Double m_TiltAngle;
169    Double m_PanAngle;
[5809313]170    bool m_Rotating;
[c6d95d8]171    Double m_RotationStep;
[3d00693]172    int m_SwitchingTo;
[5809313]173    bool m_Crosses;
174    bool m_Legs;
[8666fc7]175    int m_Splays;
[5809313]176    bool m_Names;
177    bool m_Scalebar;
[97ea48d]178    bool m_ColourKey;
[5809313]179    bool m_OverlappingNames;
180    bool m_Compass;
[c300a04]181    bool m_Clino;
[33b2094]182    bool m_Tubes;
[da6c802]183    int m_ColourBy;
[a7708927]184
185    bool m_HaveData;
[b56df45]186    bool m_MouseOutsideCompass;
187    bool m_MouseOutsideElev;
[e8bc148]188    bool m_Surface;
[fe444b8]189    bool m_Entrances;
190    bool m_FixedPts;
191    bool m_ExportedPts;
[c1cf79d]192    bool m_Grid;
[f4c5932]193    bool m_BoundingBox;
[fa42426]194
[33b2094]195    bool m_Degrees;
196    bool m_Metric;
[d171c0c]197    bool m_Percent;
[33b2094]198
[5e0b3a13]199    bool m_HitTestDebug;
200
[fa42426]201    list<LabelInfo*> *m_PointGrid;
[dfe4454c]202    bool m_HitTestGridValid;
[156dc16]203
[381ae6e]204    LabelInfo temp_here;
205    const LabelInfo * m_here;
206    const LabelInfo * m_there;
[156dc16]207
[a8e9fde]208    wxStopWatch timer;
[5455bb2]209    long base_tilt_time;
210    long base_pan_time;
211    Double base_tilt;
212    Double base_pan;
[9cf3688]213
[11c7eb6]214    GLAPen m_Pens[NUM_COLOUR_BANDS + 1];
[0e69efe]215
[1690fa9]216#define PLAYING 1
217    int presentation_mode; // for now, 0 => off, PLAYING => continuous play
[128fac4]218    bool pres_reverse;
219    double pres_speed;
[1690fa9]220    PresentationMark next_mark;
221    double next_mark_time;
[128fac4]222    double this_mark_total;
[6a4cdcb6]223
[75d4a2b]224    MovieMaker * movie;
[6a4cdcb6]225
[e2c1671]226    cursor current_cursor;
227
[d96c95c]228    int sqrd_measure_threshold;
229
[7cdb1c3]230    // The legends for each entry in the colour key.
231    wxString key_legends[NUM_COLOUR_BANDS];
232
[fcc3741]233    wxPoint key_lowerleft[COLOUR_BY_LIMIT_];
[d43fa84]234
[dd6af8b]235    ZoomBox zoombox;
236
[d67450e]237    void PlaceVertexWithColour(const Vector3 &v, Double factor = 1.0);
[b839829]238    void PlaceVertexWithColour(const Vector3 & v, GLint tex_x, GLint tex_y,
239                               Double factor);
240    void SetDepthColour(Double z, Double factor);
[d67450e]241    void PlaceVertexWithDepthColour(const Vector3 & v, Double factor = 1.0);
[b839829]242    void PlaceVertexWithDepthColour(const Vector3 & v, GLint tex_x, GLint tex_y, Double factor);
[da6c802]243
[371f9ed]244    void SetColourFrom01(double how_far, Double factor);
245
[1ee204e]246    void SetColourFromDate(int date, Double factor);
[c61aa79]247    void SetColourFromError(double E, Double factor);
[af50685]248    void SetColourFromLength(double len, Double factor);
[d4650b3]249
[1eeb55a]250    int GetClinoOffset() const;
[fe665c4]251    void DrawTick(int angle_cw);
[d67450e]252    void DrawArrow(gla_colour col1, gla_colour col2);
[5809313]253
[384534c]254    void SkinPassage(vector<XSect> & centreline, bool draw = true);
[33b2094]255
[d2fcc9b]256    virtual void GenerateList(unsigned int l);
[33b2094]257    void GenerateDisplayList();
[9eb58d0]258    void GenerateDisplayListTubes();
[33b2094]259    void GenerateDisplayListSurface();
[37d7084]260    void GenerateDisplayListShadow();
[d9b3270]261    void GenerateBlobsDisplayList();
[6747314]262
263    void DrawIndicators();
[33b2094]264
[5809313]265    void TryToFreeArrays();
266    void FirstShow();
[84cab34]267
[9c37beb]268    void DrawScaleBar();
[825bdff]269    void DrawColourKey(int num_bands, const wxString & other, const wxString & units);
[e2ea75a]270    void DrawDepthKey();
271    void DrawDateKey();
272    void DrawErrorKey();
[af50685]273    void DrawLengthKey();
[fe665c4]274    void DrawCompass();
275    void DrawClino();
276    void DrawClinoBack();
[6606406]277    void Draw2dIndicators();
[c1cf79d]278    void DrawGrid();
[6606406]279
[84cab34]280    void NattyDrawNames();
281    void SimpleDrawNames();
282
[de7a879]283    void DefaultParameters();
[5809313]284
[0e864da5]285    void Repaint();
286
[dfe4454c]287    void CreateHitTestGrid();
[421b7d2]288
[1eeb55a]289    int GetCompassXPosition() const;
290    int GetClinoXPosition() const;
291    int GetIndicatorYPosition() const;
292    int GetIndicatorRadius() const;
[5876fcb]293
[eff44b9]294    void ToggleFlag(bool* flag, int update = UPDATE_NONE);
[5876fcb]295
[11c7eb6]296    const GLAPen& GetPen(int band) const {
[97ea48d]297        assert(band >= 0 && band < NUM_COLOUR_BANDS);
[0e69efe]298        return m_Pens[band];
299    }
300
[11c7eb6]301    const GLAPen& GetSurfacePen() const { return m_Pens[NUM_COLOUR_BANDS]; }
[0e69efe]302
[97ea48d]303    int GetNumColourBands() const { return NUM_COLOUR_BANDS; }
[0e69efe]304
[f4c5932]305    void DrawShadowedBoundingBox();
306    void DrawBoundingBox();
[ad661cc]307
[5809313]308public:
[5876fcb]309    GfxCore(MainFrm* parent, wxWindow* parent_window, GUIControl* control);
[5809313]310    ~GfxCore();
311
[0c6bf5e8]312    void Initialise(bool same_file);
[8000d8f]313    void InitialiseTerrain();
[a87b1f7]314
[429465a]315    void UpdateBlobs();
[fa42426]316    void ForceRefresh();
[156dc16]317
[381ae6e]318    void RefreshLine(const Point* a, const Point* b, const Point* c);
319
320    void SetHereFromTree(const LabelInfo * p);
[9cf3688]321
[fd6e0d5]322    void SetHere();
[381ae6e]323    void SetHere(const LabelInfo * p);
[fd6e0d5]324    void SetThere();
[381ae6e]325    void SetThere(const LabelInfo * p);
[fd6e0d5]326
[82c3731]327    void CentreOn(const Point &p);
[156dc16]328
[5876fcb]329    void TranslateCave(int dx, int dy);
330    void TiltCave(Double tilt_angle);
331    void TurnCave(Double angle);
332    void TurnCaveTo(Double angle);
333
334    void OnPaint(wxPaintEvent&);
335    void OnSize(wxSizeEvent& event);
[6e4a123]336    void OnIdle(wxIdleEvent& event);
[5876fcb]337
338    void OnMouseMove(wxMouseEvent& event) { m_Control->OnMouseMove(event); }
[887c26e]339    void OnLeaveWindow(wxMouseEvent& event);
340
[ea2485e]341    void OnLButtonDown(wxMouseEvent& event) { SetFocus(); m_Control->OnLButtonDown(event); }
[5876fcb]342    void OnLButtonUp(wxMouseEvent& event) { m_Control->OnLButtonUp(event); }
[ea2485e]343    void OnMButtonDown(wxMouseEvent& event) { SetFocus(); m_Control->OnMButtonDown(event); }
[5876fcb]344    void OnMButtonUp(wxMouseEvent& event) { m_Control->OnMButtonUp(event); }
[ea2485e]345    void OnRButtonDown(wxMouseEvent& event) { SetFocus(); m_Control->OnRButtonDown(event); }
[5876fcb]346    void OnRButtonUp(wxMouseEvent& event) { m_Control->OnRButtonUp(event); }
[ea2485e]347    void OnMouseWheel(wxMouseEvent& event) { SetFocus(); m_Control->OnMouseWheel(event); }
[5876fcb]348    void OnKeyPress(wxKeyEvent &event) { m_Control->OnKeyPress(event); }
349
[5455bb2]350    void Animate();
[2a3d328]351    bool Animating() const {
352        return m_Rotating || m_SwitchingTo || presentation_mode != 0;
353    }
[84cab34]354
[d877aa2]355    void ClearCoords();
[5876fcb]356    void SetCoords(wxPoint);
357
[2a3d328]358    // Determine whether the compass is currently shown.
359    bool ShowingCompass() const { return m_Compass; }
360    // Determine whether the clino is currently shown.
361    bool ShowingClino() const { return m_Clino; }
[9cf3688]362
[14acdae]363    bool PointWithinCompass(wxPoint point) const;
364    bool PointWithinClino(wxPoint point) const;
365    bool PointWithinScaleBar(wxPoint point) const;
[d43fa84]366    bool PointWithinColourKey(wxPoint point) const;
[9cf3688]367
[5876fcb]368    void SetCompassFromPoint(wxPoint point);
369    void SetClinoFromPoint(wxPoint point);
370    void SetScaleBarFromOffset(wxCoord dx);
[9cf3688]371
[5876fcb]372    void RedrawIndicators();
[9cf3688]373
[5876fcb]374    void StartRotation();
375    void ToggleRotation();
376    void StopRotation();
[eef68f9]377    bool IsExtendedElevation() const;
[5876fcb]378    void ReverseRotation();
379    void RotateSlower(bool accel);
380    void RotateFaster(bool accel);
[9cf3688]381
[5876fcb]382    void SwitchToElevation();
383    void SwitchToPlan();
[9cf3688]384
[d1628e8e]385    void SetViewTo(Double xmin, Double xmax, Double ymin, Double ymax, Double zmin, Double zmax);
386
[11c594a]387    double GetCompassValue() const { return m_PanAngle; }
[14acdae]388    bool ShowingPlan() const;
389    bool ShowingElevation() const;
390    bool ShowingMeasuringLine() const;
[381ae6e]391    bool HereIsReal() const { return m_here && m_here != &temp_here; }
[5876fcb]392
[14acdae]393    bool CanRaiseViewpoint() const;
394    bool CanLowerViewpoint() const;
[5876fcb]395
[82f584f]396    bool IsRotating() const { return m_Rotating; }
[b61b020]397    bool HasData() const { return m_DoneFirstShow && m_HaveData; }
[78c67a6]398    bool HasDepth() const;
[c61aa79]399    bool HasErrorInformation() const;
[843ee7b]400    bool HasDateInformation() const;
[5876fcb]401
[5b7164d]402    double GetScale() const { return m_Scale; }
[5876fcb]403    void SetScale(Double scale);
[9cf3688]404
[82f584f]405    bool ShowingStationNames() const { return m_Names; }
406    bool ShowingOverlappingNames() const { return m_OverlappingNames; }
407    bool ShowingCrosses() const { return m_Crosses; }
[0580c6a]408    bool ShowingGrid() const { return m_Grid; }
[5876fcb]409
[d4650b3]410    int ColouringBy() const { return m_ColourBy; }
[da6c802]411
[f433fda]412    bool HasUndergroundLegs() const;
[5fe7292]413    bool HasSplays() const;
[f433fda]414    bool HasSurfaceLegs() const;
[50e8979]415    bool HasTubes() const;
[5876fcb]416
[82f584f]417    bool ShowingUndergroundLegs() const { return m_Legs; }
[8666fc7]418    int ShowingSplaysMode() const { return m_Splays; }
[82f584f]419    bool ShowingSurfaceLegs() const { return m_Surface; }
[5876fcb]420
[97ea48d]421    bool ShowingColourKey() const { return m_ColourKey; }
[82f584f]422    bool ShowingScaleBar() const { return m_Scalebar; }
[5876fcb]423
[82f584f]424    bool ShowingEntrances() const { return m_Entrances; }
425    bool ShowingFixedPts() const { return m_FixedPts; }
426    bool ShowingExportedPts() const { return m_ExportedPts; }
[5876fcb]427
[14acdae]428    int GetNumEntrances() const;
429    int GetNumFixedPts() const;
430    int GetNumExportedPts() const;
[5876fcb]431
[ef1870d]432    void ToggleUndergroundLegs() {
433        ToggleFlag(&m_Legs, UPDATE_BLOBS_AND_CROSSES);
434    }
[8666fc7]435    void SetSplaysMode(int mode) {
[ad661cc]436        m_Splays = mode;
[8666fc7]437        UpdateBlobs();
438        InvalidateList(LIST_UNDERGROUND_LEGS);
439        ForceRefresh();
[5fe7292]440    }
[ef1870d]441    void ToggleSurfaceLegs() {
442        ToggleFlag(&m_Surface, UPDATE_BLOBS_AND_CROSSES);
443    }
[9c37beb]444    void ToggleCompass() {
445        ToggleFlag(&m_Compass);
446        InvalidateList(LIST_SCALE_BAR);
447    }
448    void ToggleClino() {
449        ToggleFlag(&m_Clino);
450        InvalidateList(LIST_SCALE_BAR);
451    }
[6747314]452    void ToggleScaleBar() { ToggleFlag(&m_Scalebar); }
[eff44b9]453    void ToggleEntrances() { ToggleFlag(&m_Entrances, UPDATE_BLOBS); }
454    void ToggleFixedPts() { ToggleFlag(&m_FixedPts, UPDATE_BLOBS); }
455    void ToggleExportedPts() { ToggleFlag(&m_ExportedPts, UPDATE_BLOBS); }
[5876fcb]456    void ToggleGrid() { ToggleFlag(&m_Grid); }
[2a3d328]457    void ToggleCrosses() { ToggleFlag(&m_Crosses); }
[eff44b9]458    void ToggleStationNames() { ToggleFlag(&m_Names); }
[5876fcb]459    void ToggleOverlappingNames() { ToggleFlag(&m_OverlappingNames); }
[97ea48d]460    void ToggleColourKey() { ToggleFlag(&m_ColourKey); }
[9c37beb]461    void ToggleMetric() {
462        ToggleFlag(&m_Metric);
463        InvalidateList(LIST_DEPTH_KEY);
[91756e4]464        InvalidateList(LIST_LENGTH_KEY);
[9c37beb]465        InvalidateList(LIST_SCALE_BAR);
466    }
[5e0b3a13]467    void ToggleHitTestDebug() {
468        ToggleFlag(&m_HitTestDebug);
469    }
[6747314]470    void ToggleDegrees() { ToggleFlag(&m_Degrees); }
[d171c0c]471    void TogglePercent() { ToggleFlag(&m_Percent); }
[eff44b9]472    void ToggleTubes() { ToggleFlag(&m_Tubes); }
[6747314]473    void TogglePerspective() { GLACanvas::TogglePerspective(); ForceRefresh(); }
[d67450e]474    void ToggleSmoothShading();
[f4c5932]475    bool DisplayingBoundingBox() const { return m_BoundingBox; }
476    void ToggleBoundingBox() { ToggleFlag(&m_BoundingBox); }
[d96c95c]477    void ToggleFatFinger();
[5876fcb]478
[82f584f]479    bool GetMetric() const { return m_Metric; }
480    bool GetDegrees() const { return m_Degrees; }
[d171c0c]481    bool GetPercent() const { return m_Percent; }
[82f584f]482    bool GetTubes() const { return m_Tubes; }
[9cf3688]483
[2072157]484    bool CheckHitTestGrid(const wxPoint& point, bool centre);
[5876fcb]485
486    void ClearTreeSelection();
487
488    void Defaults();
[5757725]489
[b13aee4]490    void FullScreenMode();
491
[fdfa926]492    bool IsFullScreen() const;
493
[b75a37d]494    bool FullScreenModeShowingMenus() const;
495
496    void FullScreenModeShowMenus(bool show);
497
[33b2094]498    void DragFinished();
499
[b5d64e6]500    void SplitLineAcrossBands(int band, int band2,
[4a0e6b35]501                              const Vector3 &p, const Vector3 &q,
[9eb58d0]502                              Double factor = 1.0);
[14acdae]503    int GetDepthColour(Double z) const;
504    Double GetDepthBoundaryBetweenBands(int a, int b) const;
[c61aa79]505    void AddPolyline(const traverse & centreline);
506    void AddPolylineDepth(const traverse & centreline);
507    void AddPolylineDate(const traverse & centreline);
508    void AddPolylineError(const traverse & centreline);
[af50685]509    void AddPolylineLength(const traverse & centreline);
[9cf3688]510    void AddQuadrilateral(const Vector3 &a, const Vector3 &b,
[82f584f]511                          const Vector3 &c, const Vector3 &d);
[c61aa79]512    void AddPolylineShadow(const traverse & centreline);
[9cf3688]513    void AddQuadrilateralDepth(const Vector3 &a, const Vector3 &b,
[da6c802]514                               const Vector3 &c, const Vector3 &d);
[d4650b3]515    void AddQuadrilateralDate(const Vector3 &a, const Vector3 &b,
516                              const Vector3 &c, const Vector3 &d);
[c61aa79]517    void AddQuadrilateralError(const Vector3 &a, const Vector3 &b,
518                               const Vector3 &c, const Vector3 &d);
[af50685]519    void AddQuadrilateralLength(const Vector3 &a, const Vector3 &b,
520                                const Vector3 &c, const Vector3 &d);
[46361bc]521    void MoveViewer(double forward, double up, double right);
[1690fa9]522
[da6c802]523    void (GfxCore::* AddQuad)(const Vector3 &a, const Vector3 &b,
524                              const Vector3 &c, const Vector3 &d);
[c61aa79]525    void (GfxCore::* AddPoly)(const traverse & centreline);
[da6c802]526
[1690fa9]527    PresentationMark GetView() const;
528    void SetView(const PresentationMark & p);
[128fac4]529    void PlayPres(double speed, bool change_speed = true);
530    int GetPresentationMode() const { return presentation_mode; }
[762c324]531    double GetPresentationSpeed() const { return presentation_mode ? pres_speed : 0; }
[1690fa9]532
[da6c802]533    void SetColourBy(int colour_by);
[6a4cdcb6]534    bool ExportMovie(const wxString & fnm);
[ce403f1]535    void OnPrint(const wxString &filename, const wxString &title,
[4ed8154]536                 const wxString &datestamp, time_t datestamp_numeric,
[6d3938b]537                 const wxString &cs_proj,
[4ed8154]538                 bool close_after_print = false);
[70462c8]539    void OnExport(const wxString &filename, const wxString &title,
[6d3938b]540                  const wxString &datestamp, time_t datestamp_numeric,
541                  const wxString &cs_proj);
[242cb07]542    void UpdateCursor(GfxCore::cursor new_cursor);
[6b061db]543    bool MeasuringLineActive() const;
[6a4cdcb6]544
[acdb8aa]545    bool HandleRClick(wxPoint point);
546
[c6d5c1c]547    void InvalidateAllLists() {
548        for (int i = 0; i < LIST_LIMIT_; ++i) {
549            InvalidateList(i);
550        }
551    }
[dd6af8b]552
553    void SetZoomBox(wxPoint p1, wxPoint p2, bool centred, bool aspect);
554
555    void UnsetZoomBox() {
556        if (!zoombox.active()) return;
557        zoombox.unset();
558        ForceRefresh();
559    }
560
561    void ZoomBoxGo();
562
[5809313]563private:
[84cab34]564    DECLARE_EVENT_TABLE()
[5809313]565};
566
567#endif
Note: See TracBrowser for help on using the repository browser.