source: git/src/printwx.h @ f10cf8f

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

src/: Pass the numeric datestamp to ExportFilter::header(), and use
it to set a timestamp in exported GPX files.

  • Property mode set to 100644
File size: 2.4 KB
Line 
1/* printwx.h */
2/* Device dependent part of Survex wxWidgets driver */
3/* Copyright (C) 2004 Philip Underwood
4 * Copyright (C) 2004,2005,2006,2011,2012,2013,2014 Olly Betts
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 */
20
21#include "wx.h"
22#include <wx/dialog.h>
23
24#include <time.h>
25
26#include "avenprcore.h"
27
28// The Gnome print dialog provides its own preview, as does Mac OS X.
29#if !defined __WXMAC__ && !defined wxUSE_LIBGNOMEPRINT
30# define AVEN_PRINT_PREVIEW
31#endif
32
33class MainFrm;
34class wxComboBox;
35class wxStaticText;
36class wxSpinCtrl;
37class wxSpinEvent;
38
39// This dialog is also use for Export as well as Print.
40class svxPrintDlg : public wxDialog {
41        layout m_layout;
42        wxComboBox* m_scale;
43        wxBoxSizer* m_scalebox;
44        wxBoxSizer* m_viewbox;
45        wxChoice* m_format;
46        wxStaticText* m_printSize;
47        wxSpinCtrl* m_bearing;
48        wxSpinCtrl* m_tilt;
49//      wxCheckBox* m_blanks;
50        wxString m_File;
51        MainFrm* mainfrm;
52
53        void LayoutToUI();
54        void UIToLayout();
55        void RecalcBounds();
56        void SomethingChanged(int control_id);
57 public:
58        svxPrintDlg(MainFrm* parent, const wxString & filename,
59                    const wxString & title,
60                    const wxString & datestamp, time_t datestamp_numeric,
61                    double angle, double tilt_angle,
62                    bool labels, bool crosses, bool legs, bool surf,
63                    bool tubes, bool ents, bool fixes, bool exports,
64                    bool printing);
65        void OnPrint(wxCommandEvent& event);
66        void OnExport(wxCommandEvent& event);
67#ifdef AVEN_PRINT_PREVIEW
68        void OnPreview(wxCommandEvent& event);
69#endif
70        void OnPlan(wxCommandEvent&);
71        void OnElevation(wxCommandEvent&);
72        void OnPlanUpdate(wxUpdateUIEvent& e);
73        void OnElevationUpdate(wxUpdateUIEvent& e);
74        void OnChangeSpin(wxSpinEvent& event);
75        void OnChange(wxCommandEvent& event);
76 private:
77        DECLARE_EVENT_TABLE()
78};
Note: See TracBrowser for help on using the repository browser.