source: git/src/printing.h

walls-data
Last change on this file was 23a2fe9, checked in by Olly Betts <olly@…>, 15 months ago

Make it obvious you can enter a custom scale

Add a "..." entry to scale combobox - selecting this clears the
value and gives focus to the combo box text entry.

This control has always supported clicking to enter a custom scale, but
there wasn't really any indication that this was possible before.

Partly addresses #132, reported by Eric C. Landgraf.

  • Property mode set to 100644
File size: 2.6 KB
Line 
1/* printing.h */
2/* Aven printing code */
3/* Copyright (C) 2004 Philip Underwood
4 * Copyright (C) 2004,2005,2006,2011,2012,2013,2014,2015 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#include <wx/spinctrl.h>
24
25#include <time.h>
26
27#include "avenprcore.h"
28
29// The GtkPrint dialog provides its own preview, as does macOS.
30#if !(defined wxUSE_GTKPRINT && wxUSE_GTKPRINT) && \
31    !defined __WXMAC__
32# define AVEN_PRINT_PREVIEW
33#endif
34
35class MainFrm;
36class wxComboBox;
37class wxStaticText;
38class wxSpinCtrlDouble;
39class wxSpinEvent;
40
41// This dialog is also use for Export as well as Print.
42class svxPrintDlg : public wxDialog {
43        layout m_layout;
44        wxComboBox* m_scale;
45        wxBoxSizer* m_scalebox;
46        wxBoxSizer* m_viewbox;
47        wxChoice* m_format;
48        wxStaticText* m_printSize;
49        wxSpinCtrlDouble* m_bearing;
50        wxSpinCtrlDouble* m_tilt;
51//      wxCheckBox* m_blanks;
52        wxString m_File;
53        MainFrm* mainfrm;
54        bool close_after;
55
56        void LayoutToUI();
57        void UIToLayout();
58        void RecalcBounds();
59        void SomethingChanged(int control_id);
60 public:
61        svxPrintDlg(MainFrm* parent, const wxString & filename,
62                    const wxString & title,
63                    const wxString & datestamp,
64                    double angle, double tilt_angle,
65                    bool labels, bool crosses, bool legs, bool surf,
66                    bool splays, bool tubes, bool ents, bool fixes,
67                    bool exports, bool printing, bool close_after_ = false);
68
69        ~svxPrintDlg() {
70            if (close_after) mainfrm->Close();
71        }
72
73        void OnPrint(wxCommandEvent& event);
74        void OnExport(wxCommandEvent& event);
75#ifdef AVEN_PRINT_PREVIEW
76        void OnPreview(wxCommandEvent& event);
77#endif
78        void OnPlan(wxCommandEvent&);
79        void OnElevation(wxCommandEvent&);
80        void OnPlanUpdate(wxUpdateUIEvent& e);
81        void OnElevationUpdate(wxUpdateUIEvent& e);
82        void OnChangeSpin(wxSpinDoubleEvent& event);
83        void OnChange(wxCommandEvent& event);
84        void OnChangeScale(wxCommandEvent& event);
85        void OnCancel(wxCommandEvent& event);
86 private:
87        DECLARE_EVENT_TABLE()
88};
Note: See TracBrowser for help on using the repository browser.