OpenCPN Partial API docs
Loading...
Searching...
No Matches
print_dialog.cpp
1
2/***************************************************************************
3 * Copyright (C) 2025 by NoCodeHummel *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 **************************************************************************/
20
21#include "gui_lib.h"
22#include "print_dialog.h"
23
24PrintDialog::PrintDialog() {
25 wxPrintData data;
26 m_initialized = false;
27}
28
30 static PrintDialog instance;
31 return instance;
32}
33
34void PrintDialog::Initialize(wxPrintOrientation orientation) {
35 if (!m_initialized) {
36 wxPrintData data;
37 data.SetOrientation(orientation);
38 m_print_data = wxPrintDialogData(data);
39 m_initialized = true;
40 }
41}
42
44 m_print_data.EnablePageNumbers(enable);
45}
46
47void PrintDialog::Print(wxWindow* parent, wxPrintout* output) {
48 assert(m_initialized);
49 wxPrinter printer(&m_print_data);
50 if (!printer.Print(parent, output, true)) {
51 if (wxPrinter::GetLastError() == wxPRINTER_ERROR) {
52 OCPNMessageBox(
53 NULL,
54 _("There was a problem printing.\nPerhaps your current printer is "
55 "not set correctly?"),
56 _("OpenCPN"), wxOK);
57 }
58
59 } else {
60 wxPrintData data = printer.GetPrintDialogData().GetPrintData();
61 m_print_data.SetPrintData(data);
62 }
63}
Handle the print process and dialog.
void Initialize(wxPrintOrientation orientation)
Initialize the printer with default setup.
void Print(wxWindow *parent, wxPrintout *output)
Start print process and opens the print dialog.
void EnablePageNumbers(bool enable)
Print page numbers.
static PrintDialog & GetInstance()
Get instance to handle the print process,.
General purpose GUI support.