source: git/src/printwx.h @ 4d7d209

RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernlogstereowalls-datawalls-data-hanging-as-warning
Last change on this file since 4d7d209 was 583c17d, checked in by Olly Betts <olly@…>, 11 years ago

lib/,src/: Add a format drop down to the export dialog, and only
show fields which are meaningful and supported for a particular
export format.

  • Property mode set to 100644
File size: 2.2 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 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 "avenprcore.h"
25
26// The Gnome print dialog provides its own preview, as does Mac OS X.
27#if !defined __WXMAC__ && !defined wxUSE_LIBGNOMEPRINT
28# define AVEN_PRINT_PREVIEW
29#endif
30
31class MainFrm;
32class wxComboBox;
33class wxStaticText;
34class wxSpinCtrl;
35class wxSpinEvent;
36
37// This dialog is also use for Export as well as Print.
38class svxPrintDlg : public wxDialog {
39        layout m_layout;
40        wxComboBox* m_scale;
41        wxChoice* m_format;
42        wxStaticText* m_printSize;
43        wxSpinCtrl* m_bearing;
44        wxSpinCtrl* m_tilt;
45//      wxCheckBox* m_blanks;
46        wxString m_File;
47        MainFrm* mainfrm;
48
49        void LayoutToUI();
50        void UIToLayout();
51        void RecalcBounds();
52        void SomethingChanged(int control_id);
53 public:
54        svxPrintDlg(MainFrm* parent, const wxString & filename,
55                    const wxString & title, const wxString & datestamp,
56                    double angle, double tilt_angle,
57                    bool labels, bool crosses, bool legs, bool surf,
58                    bool tubes, bool printing);
59        void OnPrint(wxCommandEvent& event);
60        void OnExport(wxCommandEvent& event);
61#ifdef AVEN_PRINT_PREVIEW
62        void OnPreview(wxCommandEvent& event);
63#endif
64        void OnPlan(wxCommandEvent&);
65        void OnElevation(wxCommandEvent&);
66        void OnPlanUpdate(wxUpdateUIEvent& e);
67        void OnElevationUpdate(wxUpdateUIEvent& e);
68        void OnChangeSpin(wxSpinEvent& event);
69        void OnChange(wxCommandEvent& event);
70 private:
71        DECLARE_EVENT_TABLE()
72};
Note: See TracBrowser for help on using the repository browser.