| [79c239e] | 1 | /* printwx.h */ |
|---|
| [1324d6c] | 2 | /* Device dependent part of Survex wxWidgets driver */ |
|---|
| [79c239e] | 3 | /* Copyright (C) 2004 Philip Underwood |
|---|
| [7b55ac2] | 4 | * Copyright (C) 2004,2005,2006,2011,2012,2013 Olly Betts |
|---|
| [79c239e] | 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 |
|---|
| [5940815] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| [79c239e] | 19 | */ |
|---|
| 20 | |
|---|
| 21 | #include "wx.h" |
|---|
| 22 | #include <wx/dialog.h> |
|---|
| 23 | |
|---|
| 24 | #include "avenprcore.h" |
|---|
| 25 | |
|---|
| [2a4e8b7] | 26 | // The Gnome print dialog provides its own preview, as does Mac OS X. |
|---|
| [cca2ce1] | 27 | #if !defined __WXMAC__ && !defined wxUSE_LIBGNOMEPRINT |
|---|
| 28 | # define AVEN_PRINT_PREVIEW |
|---|
| 29 | #endif |
|---|
| 30 | |
|---|
| [79c239e] | 31 | class MainFrm; |
|---|
| 32 | class wxComboBox; |
|---|
| 33 | class wxStaticText; |
|---|
| 34 | class wxSpinCtrl; |
|---|
| 35 | class wxSpinEvent; |
|---|
| 36 | |
|---|
| [5940815] | 37 | // This dialog is also use for Export as well as Print. |
|---|
| [79c239e] | 38 | class svxPrintDlg : public wxDialog { |
|---|
| 39 | layout m_layout; |
|---|
| 40 | wxComboBox* m_scale; |
|---|
| [7b55ac2] | 41 | wxBoxSizer* m_scalebox; |
|---|
| 42 | wxBoxSizer* m_viewbox; |
|---|
| [583c17d] | 43 | wxChoice* m_format; |
|---|
| [79c239e] | 44 | wxStaticText* m_printSize; |
|---|
| 45 | wxSpinCtrl* m_bearing; |
|---|
| 46 | wxSpinCtrl* m_tilt; |
|---|
| 47 | // wxCheckBox* m_blanks; |
|---|
| 48 | wxString m_File; |
|---|
| [ce403f1] | 49 | MainFrm* mainfrm; |
|---|
| [79c239e] | 50 | |
|---|
| 51 | void LayoutToUI(); |
|---|
| 52 | void UIToLayout(); |
|---|
| 53 | void RecalcBounds(); |
|---|
| [583c17d] | 54 | void SomethingChanged(int control_id); |
|---|
| [79c239e] | 55 | public: |
|---|
| 56 | svxPrintDlg(MainFrm* parent, const wxString & filename, |
|---|
| 57 | const wxString & title, const wxString & datestamp, |
|---|
| 58 | double angle, double tilt_angle, |
|---|
| [5940815] | 59 | bool labels, bool crosses, bool legs, bool surf, |
|---|
| [5624403] | 60 | bool tubes, bool printing); |
|---|
| [5940815] | 61 | void OnPrint(wxCommandEvent& event); |
|---|
| 62 | void OnExport(wxCommandEvent& event); |
|---|
| [cca2ce1] | 63 | #ifdef AVEN_PRINT_PREVIEW |
|---|
| [79c239e] | 64 | void OnPreview(wxCommandEvent& event); |
|---|
| [cca2ce1] | 65 | #endif |
|---|
| [79c239e] | 66 | void OnPlan(wxCommandEvent&); |
|---|
| 67 | void OnElevation(wxCommandEvent&); |
|---|
| [102ba1d] | 68 | void OnPlanUpdate(wxUpdateUIEvent& e); |
|---|
| 69 | void OnElevationUpdate(wxUpdateUIEvent& e); |
|---|
| [5940815] | 70 | void OnChangeSpin(wxSpinEvent& event); |
|---|
| 71 | void OnChange(wxCommandEvent& event); |
|---|
| [79c239e] | 72 | private: |
|---|
| 73 | DECLARE_EVENT_TABLE() |
|---|
| 74 | }; |
|---|