OpenCPN Partial API docs
Loading...
Searching...
No Matches
printout_base.cpp
1/***************************************************************************
2 * Copyright (C) 2010 by David S. Register *
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 "ocpn_frame.h"
22#include "printout_base.h"
23
24BasePrintout::BasePrintout(const std::string& title)
25 : wxPrintout(title), m_pages(1) {}
26
27bool BasePrintout::HasPage(int page) { return page > 0 && page <= m_pages; }
28
29bool BasePrintout::OnBeginDocument(int startPage, int endPage) {
30 if (!wxPrintout::OnBeginDocument(startPage, endPage)) return false;
31 return true;
32}
33
34void BasePrintout::GetPageInfo(int* minPage, int* maxPage, int* selPageFrom,
35 int* selPageTo) {
36 *minPage = 1;
37 *maxPage = m_pages;
38 *selPageFrom = 1;
39 *selPageTo = m_pages;
40}