OpenCPN Partial API docs
Loading...
Searching...
No Matches
trackprintout.cpp
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 * Purpose: OpenCPN Route printout
5 * Author: Pavel Saviankou, Sean D'Epagnier
6 *
7 ***************************************************************************
8 * Copyright (C) 2017 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>
27using namespace std;
28
29#include <wx/wxprec.h>
30
31#ifndef WX_PRECOMP
32#include <wx/wx.h>
33#endif // precompiled headers
34
35#include <wx/print.h>
36#include <wx/printdlg.h>
37#include <wx/artprov.h>
38#include <wx/stdpaths.h>
39#include <wx/intl.h>
40#include <wx/listctrl.h>
41#include <wx/aui/aui.h>
42#include <wx/dialog.h>
43#include <wx/progdlg.h>
44#include <wx/brush.h>
45#include <wx/colour.h>
46
47#include <wx/dialog.h>
48#include "dychart.h"
49#include "ocpn_frame.h"
50
51#ifdef __WXMSW__
52#include <stdlib.h>
53#include <math.h>
54#include <time.h>
55#include <psapi.h>
56#endif
57
58#include "gui_lib.h"
59#include "model/track.h"
60#include "print_dialog.h"
61#include "printtable.h"
62#include "trackprintout.h"
63
64enum { PRINT_POSITION, PRINT_DISTANCE, PRINT_BEARING, PRINT_TIME, PRINT_SPEED };
65
66MyTrackPrintout::MyTrackPrintout(std::vector<bool> _toPrintOut, Track* track,
67 OCPNTrackListCtrl* lcPoints)
68 : BasePrintout(_("Track Print").ToStdString()),
69 myTrack(track),
70 toPrintOut(_toPrintOut) {
71 // Let's have at least some device units margin
72 marginX = 100;
73 marginY = 100;
74
75 // Offset text from the edge of the cell (Needed on Linux)
76 textOffsetX = 5;
77 textOffsetY = 8;
78
79 table.StartFillHeader();
80 // setup widths for columns
81
82 table << (const char*)wxString(_("Leg")).mb_str();
83
84 if (toPrintOut[PRINT_POSITION]) {
85 table << (const char*)wxString(_("Position")).mb_str();
86 }
87 if (toPrintOut[PRINT_BEARING]) {
88 table << (const char*)wxString(_("Course")).mb_str();
89 }
90 if (toPrintOut[PRINT_DISTANCE]) {
91 table << (const char*)wxString(_("Distance")).mb_str();
92 }
93 if (toPrintOut[PRINT_TIME]) {
94 table << (const char*)wxString(_("Time")).mb_str();
95 }
96 if (toPrintOut[PRINT_SPEED]) {
97 table << (const char*)wxString(_("Speed")).mb_str();
98 }
99
100 table.StartFillWidths();
101
102 table << 20; // "Leg" column
103 // setup widths for columns
104 if (toPrintOut[PRINT_POSITION]) table << 80;
105 if (toPrintOut[PRINT_BEARING]) table << 40;
106 if (toPrintOut[PRINT_DISTANCE]) table << 40;
107 if (toPrintOut[PRINT_TIME]) table << 60;
108 if (toPrintOut[PRINT_SPEED]) table << 40;
109
110 table.StartFillData();
111 for (int n = 0; n <= myTrack->GetnPoints(); n++) {
112 table << lcPoints->OnGetItemText(n, 0); // leg
113
114 if (toPrintOut[PRINT_POSITION]) {
115 // lat + lon
116 wxString pos = lcPoints->OnGetItemText(n, 3) + _T(" ") +
117 lcPoints->OnGetItemText(n, 4);
118 table << pos;
119 }
120 if (toPrintOut[PRINT_BEARING])
121 table << lcPoints->OnGetItemText(n, 2); // bearing
122 if (toPrintOut[PRINT_DISTANCE])
123 table << lcPoints->OnGetItemText(n, 1); // distance
124 if (toPrintOut[PRINT_TIME]) table << lcPoints->OnGetItemText(n, 5); // time
125 if (toPrintOut[PRINT_SPEED])
126 table << lcPoints->OnGetItemText(n, 6); // speed
127 table << "\n";
128 }
129}
130
131void MyTrackPrintout::GetPageInfo(int* minPage, int* maxPage, int* selPageFrom,
132 int* selPageTo) {
133 *minPage = 1;
134 *maxPage = numberOfPages;
135 *selPageFrom = 1;
136 *selPageTo = numberOfPages;
137}
138
139void MyTrackPrintout::OnPreparePrinting() {
140 pageToPrint = 1;
141 wxDC* dc = GetDC();
142 wxFont trackPrintFont(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
143 wxFONTWEIGHT_NORMAL);
144 dc->SetFont(trackPrintFont);
145
146 // Get the size of the DC in pixels
147 int w, h;
148 dc->GetSize(&w, &h);
149
150 // We don't know before hand what size the Print DC will be, in pixels. Varies
151 // by host. So, if the dc size is greater than 1000 pixels, we scale
152 // accordinly.
153
154 int maxX = wxMin(w, 1000);
155 int maxY = wxMin(h, 1000);
156
157 // Calculate a suitable scaling factor
158 double scaleX = (double)(w / maxX);
159 double scaleY = (double)(h / maxY);
160
161 // Use x or y scaling factor, whichever fits on the DC
162 double actualScale = wxMin(scaleX, scaleY);
163
164 // Set the scale and origin
165 dc->SetUserScale(actualScale, actualScale);
166 dc->SetDeviceOrigin((long)marginX, (long)marginY);
167
168 table.AdjustCells(dc, marginX, marginY);
169 numberOfPages = table.GetNumberPages();
170}
171
172bool MyTrackPrintout::OnPrintPage(int page) {
173 wxDC* dc = GetDC();
174 if (dc) {
175 if (page <= numberOfPages) {
176 pageToPrint = page;
177 DrawPage(dc);
178 return true;
179 } else
180 return false;
181 } else
182 return false;
183}
184
185void MyTrackPrintout::DrawPage(wxDC* dc) {
186 wxFont trackPrintFont_bold(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
187 wxFONTWEIGHT_BOLD);
188 dc->SetFont(trackPrintFont_bold);
189 wxBrush brush(wxColour(255, 255, 255), wxBRUSHSTYLE_TRANSPARENT);
190 dc->SetBrush(brush);
191
192 int header_textOffsetX = 2;
193 int header_textOffsetY = 2;
194
195 dc->DrawText(myTrack->GetName(), 150, 20);
196
197 int currentX = marginX;
198 int currentY = marginY;
199 vector<PrintCell>& header_content = table.GetHeader();
200 for (size_t j = 0; j < header_content.size(); j++) {
201 PrintCell& cell = header_content[j];
202 dc->DrawRectangle(currentX, currentY, cell.GetWidth(), cell.GetHeight());
203 dc->DrawText(cell.GetText(), currentX + header_textOffsetX,
204 currentY + header_textOffsetY);
205 currentX += cell.GetWidth();
206 }
207
208 wxFont trackPrintFont_normal(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
209 wxFONTWEIGHT_NORMAL);
210 dc->SetFont(trackPrintFont_normal);
211
212 vector<vector<PrintCell> >& cells = table.GetContent();
213 currentY = marginY + table.GetHeaderHeight();
214 int currentHeight = 0;
215 for (size_t i = 0; i < cells.size(); i++) {
216 vector<PrintCell>& content_row = cells[i];
217 currentX = marginX;
218 for (size_t j = 0; j < content_row.size(); j++) {
219 PrintCell& cell = content_row[j];
220 if (cell.GetPage() == pageToPrint) {
221 wxRect r(currentX, currentY, cell.GetWidth(), cell.GetHeight());
222 dc->DrawRectangle(r);
223 r.Offset(textOffsetX, textOffsetY);
224 dc->DrawLabel(cell.GetText(), r);
225 currentX += cell.GetWidth();
226 currentHeight = cell.GetHeight();
227 }
228 }
229 currentY += currentHeight;
230 }
231}
232
233// ---------- TrackPrintSelection dialof implementation
234
235BEGIN_EVENT_TABLE(TrackPrintSelection, wxDialog)
236EVT_BUTTON(ID_TRACKPRINT_SELECTION_CANCEL,
237 TrackPrintSelection::OnTrackpropCancelClick)
238EVT_BUTTON(ID_TRACKPRINT_SELECTION_OK, TrackPrintSelection::OnTrackpropOkClick)
239END_EVENT_TABLE()
241
242TrackPrintSelection::TrackPrintSelection(wxWindow* parent, Track* _track,
243 OCPNTrackListCtrl* lcPoints,
244 wxWindowID id, const wxString& caption,
245 const wxPoint& pos, const wxSize& size,
246 long style) {
247 track = _track;
248 m_lcPoints = lcPoints;
249
250 long wstyle = style;
251
252 Create(parent, id, caption, pos, size, wstyle);
253 Centre();
254}
255
256TrackPrintSelection::~TrackPrintSelection() {}
257
262bool TrackPrintSelection::Create(wxWindow* parent, wxWindowID id,
263 const wxString& caption, const wxPoint& pos,
264 const wxSize& size, long style) {
265 SetExtraStyle(GetExtraStyle() | wxWS_EX_BLOCK_EVENTS);
266
267#ifdef __WXOSX__
268 style |= wxSTAY_ON_TOP;
269#endif
270
271 wxDialog::Create(parent, id, _("Print Track Selection"), pos, size, style);
272
274
275 return TRUE;
276}
277
283 TrackPrintSelection* itemDialog1 = this;
284 wxStaticBox* itemStaticBoxSizer3Static =
285 new wxStaticBox(itemDialog1, wxID_ANY, _("Elements to print..."));
286 wxStaticBoxSizer* itemBoxSizer1 =
287 new wxStaticBoxSizer(itemStaticBoxSizer3Static, wxVERTICAL);
288 itemDialog1->SetSizer(itemBoxSizer1);
289
290 wxFlexGridSizer* fgSizer2;
291 fgSizer2 = new wxFlexGridSizer(5, 2, 0, 0);
292
293 m_checkBoxPosition =
294 new wxCheckBox(itemDialog1, wxID_ANY, _("Position"), wxDefaultPosition,
295 wxDefaultSize, wxALIGN_LEFT);
296 m_checkBoxPosition->SetValue(true);
297 fgSizer2->Add(m_checkBoxPosition, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
298 wxStaticText* label2 =
299 new wxStaticText(itemDialog1, wxID_ANY, _("Show Waypoint position."),
300 wxDefaultPosition, wxDefaultSize);
301 fgSizer2->Add(label2, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
302
303 m_checkBoxCourse =
304 new wxCheckBox(itemDialog1, wxID_ANY, _("Course"), wxDefaultPosition,
305 wxDefaultSize, wxALIGN_LEFT);
306 m_checkBoxCourse->SetValue(true);
307 fgSizer2->Add(m_checkBoxCourse, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
308 wxStaticText* label3 =
309 new wxStaticText(itemDialog1, wxID_ANY,
310 _("Show course from each Waypoint to the next one. "),
311 wxDefaultPosition, wxDefaultSize);
312 fgSizer2->Add(label3, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
313
314 m_checkBoxDistance =
315 new wxCheckBox(itemDialog1, wxID_ANY, _("Distance"), wxDefaultPosition,
316 wxDefaultSize, wxALIGN_LEFT);
317 m_checkBoxDistance->SetValue(true);
318 fgSizer2->Add(m_checkBoxDistance, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
319 wxStaticText* label4 =
320 new wxStaticText(itemDialog1, wxID_ANY,
321 _("Show Distance from each Waypoint to the next one."),
322 wxDefaultPosition, wxDefaultSize);
323 fgSizer2->Add(label4, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
324
325 m_checkBoxTime =
326 new wxCheckBox(itemDialog1, wxID_ANY, _("Time"), wxDefaultPosition,
327 wxDefaultSize, wxALIGN_LEFT);
328 m_checkBoxTime->SetValue(true);
329 fgSizer2->Add(m_checkBoxTime, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
330 wxStaticText* label5 = new wxStaticText(
331 itemDialog1, wxID_ANY, _("Show Time."), wxDefaultPosition, wxDefaultSize);
332 fgSizer2->Add(label5, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
333
334 m_checkBoxSpeed =
335 new wxCheckBox(itemDialog1, wxID_ANY, _("Speed"), wxDefaultPosition,
336 wxDefaultSize, wxALIGN_LEFT);
337 m_checkBoxSpeed->SetValue(true);
338 fgSizer2->Add(m_checkBoxSpeed, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
339 wxStaticText* label6 =
340 new wxStaticText(itemDialog1, wxID_ANY, _("Show Speed."),
341 wxDefaultPosition, wxDefaultSize);
342 fgSizer2->Add(label6, 1, wxALL | wxALIGN_CENTER_VERTICAL, 5);
343
344 itemBoxSizer1->Add(fgSizer2, 5, wxEXPAND, 5);
345
346 wxBoxSizer* itemBoxSizer16 = new wxBoxSizer(wxHORIZONTAL);
347 itemBoxSizer1->Add(itemBoxSizer16, 0, wxALIGN_RIGHT | wxALL, 5);
348
349 m_CancelButton =
350 new wxButton(itemDialog1, ID_TRACKPRINT_SELECTION_CANCEL, _("Cancel"),
351 wxDefaultPosition, wxDefaultSize, 0);
352 itemBoxSizer16->Add(m_CancelButton, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
353
354 m_OKButton = new wxButton(itemDialog1, ID_TRACKPRINT_SELECTION_OK, _("OK"),
355 wxDefaultPosition, wxDefaultSize, 0);
356 itemBoxSizer16->Add(m_OKButton, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
357 m_OKButton->SetDefault();
358
359 SetColorScheme((ColorScheme)0);
360}
361
362void TrackPrintSelection::SetColorScheme(ColorScheme cs) { DimeControl(this); }
363
364/*
365 * Should we show tooltips?
366 */
367
368bool TrackPrintSelection::ShowToolTips() { return TRUE; }
369
370void TrackPrintSelection::SetDialogTitle(const wxString& title) {
371 SetTitle(title);
372}
373
374void TrackPrintSelection::OnTrackpropCancelClick(wxCommandEvent& event) {
375 Close(); // Hide();
376 event.Skip();
377}
378
379void TrackPrintSelection::OnTrackpropOkClick(wxCommandEvent& event) {
380 std::vector<bool> toPrintOut;
381 toPrintOut.push_back(m_checkBoxPosition->GetValue());
382 toPrintOut.push_back(m_checkBoxCourse->GetValue());
383 toPrintOut.push_back(m_checkBoxDistance->GetValue());
384 toPrintOut.push_back(m_checkBoxTime->GetValue());
385 toPrintOut.push_back(m_checkBoxSpeed->GetValue());
386
387 MyTrackPrintout mytrackprintout1(toPrintOut, track, m_lcPoints);
388 auto& printer = PrintDialog::GetInstance();
389 printer.Initialize(wxPORTRAIT);
390 printer.EnablePageNumbers(true);
391 printer.Print(this, &mytrackprintout1);
392
393 Close(); // Hide();
394 event.Skip();
395}
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,.
bool Create(wxWindow *parent, wxWindowID id=SYMBOL_TRACKPRINT_SELECTION_IDNAME, const wxString &caption=SYMBOL_TRACKPRINT_SELECTION_TITLE, const wxPoint &pos=SYMBOL_TRACKPRINT_SELECTION_POSITION, const wxSize &size=SYMBOL_TRACKPRINT_SELECTION_SIZE, long style=SYMBOL_TRACKPRINT_SELECTION_STYLE)
Represents a track, which is a series of connected track points.
Definition track.h:79
General purpose GUI support.