source: git/src/gfxcore.h @ 6987d2a

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

src/gfxcore.cc,src/gfxcore.h: Reimplement animation so that it's
based on angular change per unit of elapsed time, rather than
averaging the time take for the last two scene redraws. This gives
a more even animation in the face of variable load and scene redraw
time, and should be more consistent between platforms.
src/gfxcore.cc: Switch to a point of the compass during auto-rotation
now jumps straight there rather than the two animations fighting.
src/gfxcore.cc: Reduce the maximum auto-rotation speed, as the
previous limit was uselessly fast.

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