OpenCPN Partial API docs
Loading...
Searching...
No Matches
routeprintout.cpp
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 * Purpose: OpenCPN Route printout
5 * Author: Pavel Saviankou
6 *
7 ***************************************************************************
8 * Copyright (C) 2012 by David S. Register *
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
24 **************************************************************************/
25
26#include <iostream>
27
28#include <wx/wxprec.h>
29
30#ifndef WX_PRECOMP
31#include <wx/wx.h>
32#endif // precompiled headers
33#ifdef __WXMSW__
34// #include "c:\\Program Files\\visual leak detector\\include\\vld.h"
35#endif
36
37#include <wx/print.h>
38#include <wx/printdlg.h>
39#include <wx/artprov.h>
40#include <wx/stdpaths.h>
41#include <wx/intl.h>
42#include <wx/listctrl.h>
43#include <wx/aui/aui.h>
44#include <wx/dialog.h>
45#include <wx/progdlg.h>
46#include <wx/brush.h>
47#include <wx/colour.h>
48
49#include <wx/dialog.h>
50
51#include "navutil.h"
52#include "dychart.h"
53
54#ifdef __WXMSW__
55#include <stdlib.h>
56#include <math.h>
57#include <time.h>
58#include <psapi.h>
59#endif
60
61#ifndef __WXMSW__
62#include <signal.h>
63#include <setjmp.h>
64#endif
65#include "routeprintout.h"
66
67#include "gui_lib.h"
68#include "model/navutil_base.h"
69#include "model/route.h"
70#include "model/track.h"
71#include "model/wx28compat.h"
72#include "print_dialog.h"
73#include "printtable.h"
74
75#define PRINT_WP_NAME 0
76#define PRINT_WP_POSITION 1
77#define PRINT_WP_COURSE 2
78#define PRINT_WP_DISTANCE 3
79#define PRINT_WP_DESCRIPTION 4
80
81using namespace std;
82
83MyRoutePrintout::MyRoutePrintout(std::vector<bool> _toPrintOut, Route* route)
84 : BasePrintout(_("Route Print").ToStdString()),
85 myRoute(route),
86 toPrintOut(_toPrintOut) {
87 // Let's have at least some device units margin
88 marginX = 100;
89 marginY = 100;
90
91 // Offset text from the edge of the cell (Needed on Linux)
92 textOffsetX = 5;
93 textOffsetY = 8;
94
95 table.StartFillHeader();
96 // setup widths for columns
97
98 table << _("Leg");
99
100 if (toPrintOut[PRINT_WP_NAME]) {
101 table << _("To Waypoint");
102 }
103 if (toPrintOut[PRINT_WP_POSITION]) {
104 table << _("Position");
105 }
106 if (toPrintOut[PRINT_WP_COURSE]) {
107 table << _("Course");
108 }
109 if (toPrintOut[PRINT_WP_DISTANCE]) {
110 table << _("Distance");
111 }
112 if (toPrintOut[PRINT_WP_DESCRIPTION]) {
113 table << _("Description");
114 }
115
116 table.StartFillWidths();
117
118 table << 20; // "Leg" column
119
120 // setup widths for columns
121 if (toPrintOut[PRINT_WP_NAME]) {
122 table << 40;
123 }
124 if (toPrintOut[PRINT_WP_POSITION]) {
125 table << 40;
126 }
127 if (toPrintOut[PRINT_WP_COURSE]) {
128 table << 40;
129 }
130 if (toPrintOut[PRINT_WP_DISTANCE]) {
131 table << 80;
132 }
133 if (toPrintOut[PRINT_WP_DESCRIPTION]) {
134 table << 100;
135 }
136
137 table.StartFillData();
138
139 for (int n = 1; n <= myRoute->GetnPoints(); n++) {
140 RoutePoint* point = myRoute->GetPoint(n);
141
142 RoutePoint* pointm1 = NULL;
143 if (n - 1 >= 0) pointm1 = myRoute->GetPoint(n - 1);
144
145 if (NULL == point) continue;
146
147 wxString leg = _T("---");
148 if (n > 1) leg.Printf(_T("%d"), n - 1);
149
150 string cell(leg.mb_str());
151
152 table << cell;
153
154 if (toPrintOut[PRINT_WP_NAME]) {
155 string cell(point->GetName().mb_str());
156 table << cell;
157 }
158 if (toPrintOut[PRINT_WP_POSITION]) {
159 wxString point_position = toSDMM(1, point->m_lat, false) + _T( "\n" ) +
160 toSDMM(2, point->m_lon, false);
161 string cell(point_position.mb_str());
162 table << cell;
163 }
164 if (toPrintOut[PRINT_WP_COURSE]) {
165 wxString point_course = "---";
166 if (pointm1) {
167 point_course = formatAngle(point->GetCourse());
168 }
169 table << point_course;
170 }
171 if (toPrintOut[PRINT_WP_DISTANCE]) {
172 wxString point_distance = _T("---");
173 if (n > 1)
174 point_distance.Printf(_T("%6.2f" + getUsrDistanceUnit()),
175 toUsrDistance(point->GetDistance()));
176 table << point_distance;
177 }
178 if (toPrintOut[PRINT_WP_DESCRIPTION]) {
179 table << point->GetDescription();
180 }
181 table << "\n";
182 }
183}
184
185void MyRoutePrintout::GetPageInfo(int* minPage, int* maxPage, int* selPageFrom,
186 int* selPageTo) {
187 *minPage = 1;
188 *maxPage = numberOfPages;
189 *selPageFrom = 1;
190 *selPageTo = numberOfPages;
191}
192
193void MyRoutePrintout::OnPreparePrinting() {
194 pageToPrint = 1;
195 wxDC* dc = GetDC();
196 wxFont routePrintFont(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
197 wxFONTWEIGHT_NORMAL);
198 dc->SetFont(routePrintFont);
199
200 // Get the size of the DC in pixels
201 int w, h;
202 dc->GetSize(&w, &h);
203
204 // We don't know before hand what size the Print DC will be, in pixels. Varies
205 // by host. So, if the dc size is greater than 1000 pixels, we scale
206 // accordinly.
207
208 int maxX = wxMin(w, 1000);
209 int maxY = wxMin(h, 1000);
210
211 // Calculate a suitable scaling factor
212 double scaleX = (double)(w / maxX);
213 double scaleY = (double)(h / maxY);
214
215 // Use x or y scaling factor, whichever fits on the DC
216 double actualScale = wxMin(scaleX, scaleY);
217
218 // Set the scale and origin
219 dc->SetUserScale(actualScale, actualScale);
220 dc->SetDeviceOrigin((long)marginX, (long)marginY);
221
222 table.AdjustCells(dc, marginX, marginY);
223 numberOfPages = table.GetNumberPages();
224}
225
226bool MyRoutePrintout::OnPrintPage(int page) {
227 wxDC* dc = GetDC();
228 if (dc) {
229 if (page <= numberOfPages) {
230 pageToPrint = page;
231 DrawPage(dc);
232 return true;
233 } else
234 return false;
235 } else
236 return false;
237}
238
239void MyRoutePrintout::DrawPage(wxDC* dc) {
240 wxFont routePrintFont_bold(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
241 wxFONTWEIGHT_BOLD);
242 dc->SetFont(routePrintFont_bold);
243 wxBrush brush(wxColour(255, 255, 255), wxBRUSHSTYLE_TRANSPARENT);
244 dc->SetBrush(brush);
245
246 int header_textOffsetX = 2;
247 int header_textOffsetY = 2;
248
249 dc->DrawText(myRoute->m_RouteNameString, 150, 20);
250
251 int currentX = marginX;
252 int currentY = marginY;
253 vector<PrintCell>& header_content = table.GetHeader();
254 for (size_t j = 0; j < header_content.size(); j++) {
255 PrintCell& cell = header_content[j];
256 dc->DrawRectangle(currentX, currentY, cell.GetWidth(), cell.GetHeight());
257 dc->DrawText(cell.GetText(), currentX + header_textOffsetX,
258 currentY + header_textOffsetY);
259 currentX += cell.GetWidth();
260 }
261
262 wxFont routePrintFont_normal(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
263 wxFONTWEIGHT_NORMAL);
264 dc->SetFont(routePrintFont_normal);
265
266 vector<vector<PrintCell> >& cells = table.GetContent();
267 currentY = marginY + table.GetHeaderHeight();
268 int currentHeight = 0;
269 for (size_t i = 0; i < cells.size(); i++) {
270 vector<PrintCell>& content_row = cells[i];
271 currentX = marginX;
272 for (size_t j = 0; j < content_row.size(); j++) {
273 PrintCell& cell = content_row[j];
274 if (cell.GetPage() == pageToPrint) {
275 wxRect r(currentX, currentY, cell.GetWidth(), cell.GetHeight());
276 dc->DrawRectangle(r);
277 r.Offset(textOffsetX, textOffsetY);
278 dc->DrawLabel(cell.GetText(), r);
279 currentX += cell.GetWidth();
280 currentHeight = cell.GetHeight();
281 }
282 }
283 currentY += currentHeight;
284 }
285}
286
287// ---------- RoutePrintSelection dialof implementation
288
297BEGIN_EVENT_TABLE(RoutePrintSelection, wxDialog)
298EVT_BUTTON(ID_ROUTEPRINT_SELECTION_CANCEL,
299 RoutePrintSelection::OnRoutepropCancelClick)
300EVT_BUTTON(ID_ROUTEPRINT_SELECTION_OK, RoutePrintSelection::OnRoutepropOkClick)
301END_EVENT_TABLE()
302
303
308
309RoutePrintSelection::RoutePrintSelection(wxWindow* parent, Route* _route,
310 wxWindowID id, const wxString& caption,
311 const wxPoint& pos, const wxSize& size,
312 long style) {
313 route = _route;
314
315 long wstyle = style;
316
317 Create(parent, id, caption, pos, size, wstyle);
318 Centre();
319}
320
321RoutePrintSelection::~RoutePrintSelection() {}
322
327bool RoutePrintSelection::Create(wxWindow* parent, wxWindowID id,
328 const wxString& caption, const wxPoint& pos,
329 const wxSize& size, long style) {
330 SetExtraStyle(GetExtraStyle() | wxWS_EX_BLOCK_EVENTS);
331
332#ifdef __WXOSX__
333 style |= wxSTAY_ON_TOP;
334#endif
335
336 wxDialog::Create(parent, id, _("Print Route Selection"), pos, size, style);
337
339
340 return TRUE;
341}
342
348 RoutePrintSelection* itemDialog1 = this;
349
350 wxStaticBox* itemStaticBoxSizer3Static =
351 new wxStaticBox(itemDialog1, wxID_ANY, _("Elements to print..."));
352
353 wxStaticBoxSizer* itemBoxSizer1 =
354 new wxStaticBoxSizer(itemStaticBoxSizer3Static, wxVERTICAL);
355 itemDialog1->SetSizer(itemBoxSizer1);
356
357 wxFlexGridSizer* fgSizer2;
358 fgSizer2 = new wxFlexGridSizer(5, 2, 0, 0);
359
360 m_checkBoxWPName =
361 new wxCheckBox(itemDialog1, wxID_ANY, _("Name"), wxDefaultPosition,
362 wxDefaultSize, wxALIGN_LEFT);
363 m_checkBoxWPName->SetValue(true);
364 fgSizer2->Add(m_checkBoxWPName, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
365
366 wxStaticText* label1 =
367 new wxStaticText(itemDialog1, wxID_ANY, _("Show Waypoint name."),
368 wxDefaultPosition, wxDefaultSize);
369 fgSizer2->Add(label1, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
370
371 m_checkBoxWPPosition =
372 new wxCheckBox(itemDialog1, wxID_ANY, _("Position"), wxDefaultPosition,
373 wxDefaultSize, wxALIGN_LEFT);
374 m_checkBoxWPPosition->SetValue(true);
375 fgSizer2->Add(m_checkBoxWPPosition, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
376 wxStaticText* label2 =
377 new wxStaticText(itemDialog1, wxID_ANY, _("Show Waypoint position."),
378 wxDefaultPosition, wxDefaultSize);
379 fgSizer2->Add(label2, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
380
381 m_checkBoxWPCourse =
382 new wxCheckBox(itemDialog1, wxID_ANY, _("Course"), wxDefaultPosition,
383 wxDefaultSize, wxALIGN_LEFT);
384 m_checkBoxWPCourse->SetValue(true);
385 fgSizer2->Add(m_checkBoxWPCourse, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
386 wxStaticText* label3 =
387 new wxStaticText(itemDialog1, wxID_ANY,
388 _("Show course from each Waypoint to the next one. "),
389 wxDefaultPosition, wxDefaultSize);
390 fgSizer2->Add(label3, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
391
392 m_checkBoxWPDistanceToNext =
393 new wxCheckBox(itemDialog1, wxID_ANY, _("Distance"), wxDefaultPosition,
394 wxDefaultSize, wxALIGN_LEFT);
395 m_checkBoxWPDistanceToNext->SetValue(true);
396 fgSizer2->Add(m_checkBoxWPDistanceToNext, 0, wxALL | wxALIGN_CENTER_VERTICAL,
397 5);
398 wxStaticText* label4 =
399 new wxStaticText(itemDialog1, wxID_ANY,
400 _("Show Distance from each Waypoint to the next one."),
401 wxDefaultPosition, wxDefaultSize);
402 fgSizer2->Add(label4, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
403
404 m_checkBoxWPDescription =
405 new wxCheckBox(itemDialog1, wxID_ANY, _("Description"), wxDefaultPosition,
406 wxDefaultSize, wxALIGN_LEFT);
407 m_checkBoxWPDescription->SetValue(true);
408 fgSizer2->Add(m_checkBoxWPDescription, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
409 wxStaticText* label5 =
410 new wxStaticText(itemDialog1, wxID_ANY, _("Show Waypoint description."),
411 wxDefaultPosition, wxDefaultSize);
412 fgSizer2->Add(label5, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
413
414 itemBoxSizer1->Add(fgSizer2, 5, wxEXPAND, 5);
415
416 wxBoxSizer* itemBoxSizer16 = new wxBoxSizer(wxHORIZONTAL);
417 itemBoxSizer1->Add(itemBoxSizer16, 0, wxALIGN_RIGHT | wxALL, 5);
418
419 m_CancelButton =
420 new wxButton(itemDialog1, ID_ROUTEPRINT_SELECTION_CANCEL, _("Cancel"),
421 wxDefaultPosition, wxDefaultSize, 0);
422 itemBoxSizer16->Add(m_CancelButton, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
423
424 m_OKButton = new wxButton(itemDialog1, ID_ROUTEPRINT_SELECTION_OK, _("OK"),
425 wxDefaultPosition, wxDefaultSize, 0);
426 itemBoxSizer16->Add(m_OKButton, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
427 m_OKButton->SetDefault();
428
429 SetColorScheme((ColorScheme)0);
430}
431
432void RoutePrintSelection::SetColorScheme(ColorScheme cs) { DimeControl(this); }
433
434/*
435 * Should we show tooltips?
436 */
437
438bool RoutePrintSelection::ShowToolTips() { return TRUE; }
439
440void RoutePrintSelection::SetDialogTitle(const wxString& title) {
441 SetTitle(title);
442}
443
444void RoutePrintSelection::OnRoutepropCancelClick(wxCommandEvent& event) {
445 Close(); // Hide();
446 event.Skip();
447}
448
449void RoutePrintSelection::OnRoutepropOkClick(wxCommandEvent& event) {
450 std::vector<bool> toPrintOut;
451 toPrintOut.push_back(m_checkBoxWPName->GetValue());
452 toPrintOut.push_back(m_checkBoxWPPosition->GetValue());
453 toPrintOut.push_back(m_checkBoxWPCourse->GetValue());
454 toPrintOut.push_back(m_checkBoxWPDistanceToNext->GetValue());
455 toPrintOut.push_back(m_checkBoxWPDescription->GetValue());
456
457 MyRoutePrintout myrouteprintout1(toPrintOut, route);
458 auto& printer = PrintDialog::GetInstance();
459 printer.Initialize(wxPORTRAIT);
460 printer.EnablePageNumbers(true);
461 printer.Print(this, &myrouteprintout1);
462
463 Close();
464 event.Skip();
465}
Application print support.
This class takes multilined string and modifies it to fit into given width for given device.
Definition printtable.h:113
static PrintDialog & GetInstance()
Get instance to handle the print process,.
Represents a waypoint or mark within the navigation system.
Definition route_point.h:68
bool Create(wxWindow *parent, wxWindowID id=SYMBOL_ROUTEPRINT_SELECTION_IDNAME, const wxString &caption=SYMBOL_ROUTEPRINT_SELECTION_TITLE, const wxPoint &pos=SYMBOL_ROUTEPRINT_SELECTION_POSITION, const wxSize &size=SYMBOL_ROUTEPRINT_SELECTION_SIZE, long style=SYMBOL_ROUTEPRINT_SELECTION_STYLE)
Represents a navigational route in the navigation system.
Definition route.h:96
General purpose GUI support.