38#include <wx/printdlg.h>
39#include <wx/artprov.h>
40#include <wx/stdpaths.h>
42#include <wx/listctrl.h>
43#include <wx/aui/aui.h>
45#include <wx/progdlg.h>
65#include "routeprintout.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"
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
83MyRoutePrintout::MyRoutePrintout(std::vector<bool> _toPrintOut,
Route* route)
86 toPrintOut(_toPrintOut) {
95 table.StartFillHeader();
100 if (toPrintOut[PRINT_WP_NAME]) {
101 table << _(
"To Waypoint");
103 if (toPrintOut[PRINT_WP_POSITION]) {
104 table << _(
"Position");
106 if (toPrintOut[PRINT_WP_COURSE]) {
107 table << _(
"Course");
109 if (toPrintOut[PRINT_WP_DISTANCE]) {
110 table << _(
"Distance");
112 if (toPrintOut[PRINT_WP_DESCRIPTION]) {
113 table << _(
"Description");
116 table.StartFillWidths();
121 if (toPrintOut[PRINT_WP_NAME]) {
124 if (toPrintOut[PRINT_WP_POSITION]) {
127 if (toPrintOut[PRINT_WP_COURSE]) {
130 if (toPrintOut[PRINT_WP_DISTANCE]) {
133 if (toPrintOut[PRINT_WP_DESCRIPTION]) {
137 table.StartFillData();
139 for (
int n = 1; n <= myRoute->GetnPoints(); n++) {
143 if (n - 1 >= 0) pointm1 = myRoute->GetPoint(n - 1);
145 if (NULL == point)
continue;
147 wxString leg = _T(
"---");
148 if (n > 1) leg.Printf(_T(
"%d"), n - 1);
150 string cell(leg.mb_str());
154 if (toPrintOut[PRINT_WP_NAME]) {
155 string cell(point->GetName().mb_str());
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());
164 if (toPrintOut[PRINT_WP_COURSE]) {
165 wxString point_course =
"---";
167 point_course = formatAngle(point->GetCourse());
169 table << point_course;
171 if (toPrintOut[PRINT_WP_DISTANCE]) {
172 wxString point_distance = _T(
"---");
174 point_distance.Printf(_T(
"%6.2f" + getUsrDistanceUnit()),
175 toUsrDistance(point->GetDistance()));
176 table << point_distance;
178 if (toPrintOut[PRINT_WP_DESCRIPTION]) {
179 table << point->GetDescription();
185void MyRoutePrintout::GetPageInfo(
int* minPage,
int* maxPage,
int* selPageFrom,
188 *maxPage = numberOfPages;
190 *selPageTo = numberOfPages;
193void MyRoutePrintout::OnPreparePrinting() {
196 wxFont routePrintFont(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
197 wxFONTWEIGHT_NORMAL);
198 dc->SetFont(routePrintFont);
208 int maxX = wxMin(w, 1000);
209 int maxY = wxMin(h, 1000);
212 double scaleX = (double)(w / maxX);
213 double scaleY = (double)(h / maxY);
216 double actualScale = wxMin(scaleX, scaleY);
219 dc->SetUserScale(actualScale, actualScale);
220 dc->SetDeviceOrigin((
long)marginX, (
long)marginY);
222 table.AdjustCells(dc, marginX, marginY);
223 numberOfPages = table.GetNumberPages();
226bool MyRoutePrintout::OnPrintPage(
int page) {
229 if (page <= numberOfPages) {
239void MyRoutePrintout::DrawPage(wxDC* dc) {
240 wxFont routePrintFont_bold(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
242 dc->SetFont(routePrintFont_bold);
243 wxBrush brush(wxColour(255, 255, 255), wxBRUSHSTYLE_TRANSPARENT);
246 int header_textOffsetX = 2;
247 int header_textOffsetY = 2;
249 dc->DrawText(myRoute->m_RouteNameString, 150, 20);
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++) {
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();
262 wxFont routePrintFont_normal(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
263 wxFONTWEIGHT_NORMAL);
264 dc->SetFont(routePrintFont_normal);
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];
272 for (
size_t j = 0; j < content_row.size(); 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();
283 currentY += currentHeight;
298EVT_BUTTON(ID_ROUTEPRINT_SELECTION_CANCEL,
299 RoutePrintSelection::OnRoutepropCancelClick)
300EVT_BUTTON(ID_ROUTEPRINT_SELECTION_OK, RoutePrintSelection::OnRoutepropOkClick)
309RoutePrintSelection::RoutePrintSelection(wxWindow* parent,
Route* _route,
310 wxWindowID
id,
const wxString& caption,
311 const wxPoint& pos,
const wxSize& size,
317 Create(parent,
id, caption, pos, size, wstyle);
321RoutePrintSelection::~RoutePrintSelection() {}
328 const wxString& caption,
const wxPoint& pos,
329 const wxSize& size,
long style) {
330 SetExtraStyle(GetExtraStyle() | wxWS_EX_BLOCK_EVENTS);
333 style |= wxSTAY_ON_TOP;
336 wxDialog::Create(parent,
id, _(
"Print Route Selection"), pos, size, style);
350 wxStaticBox* itemStaticBoxSizer3Static =
351 new wxStaticBox(itemDialog1, wxID_ANY, _(
"Elements to print..."));
353 wxStaticBoxSizer* itemBoxSizer1 =
354 new wxStaticBoxSizer(itemStaticBoxSizer3Static, wxVERTICAL);
355 itemDialog1->SetSizer(itemBoxSizer1);
357 wxFlexGridSizer* fgSizer2;
358 fgSizer2 =
new wxFlexGridSizer(5, 2, 0, 0);
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);
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);
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);
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);
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,
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);
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);
414 itemBoxSizer1->Add(fgSizer2, 5, wxEXPAND, 5);
416 wxBoxSizer* itemBoxSizer16 =
new wxBoxSizer(wxHORIZONTAL);
417 itemBoxSizer1->Add(itemBoxSizer16, 0, wxALIGN_RIGHT | wxALL, 5);
420 new wxButton(itemDialog1, ID_ROUTEPRINT_SELECTION_CANCEL, _(
"Cancel"),
421 wxDefaultPosition, wxDefaultSize, 0);
422 itemBoxSizer16->Add(m_CancelButton, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
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();
429 SetColorScheme((ColorScheme)0);
432void RoutePrintSelection::SetColorScheme(ColorScheme cs) { DimeControl(
this); }
438bool RoutePrintSelection::ShowToolTips() {
return TRUE; }
440void RoutePrintSelection::SetDialogTitle(
const wxString& title) {
444void RoutePrintSelection::OnRoutepropCancelClick(wxCommandEvent& event) {
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());
459 printer.Initialize(wxPORTRAIT);
460 printer.EnablePageNumbers(
true);
461 printer.Print(
this, &myrouteprintout1);
Application print support.
This class takes multilined string and modifies it to fit into given width for given device.
static PrintDialog & GetInstance()
Get instance to handle the print process,.
Represents a waypoint or mark within the navigation system.
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.
General purpose GUI support.