OpenCPN Partial API docs
Loading...
Searching...
No Matches
routeprintout.h
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 * Purpose: OpenCP Route printout
5 * Author: Pavel Saviankou
6 *
7 ***************************************************************************
8 * Copyright (C) 2010 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#ifndef __ROUTEPRINTOUT_H__
29#define __ROUTEPRINTOUT_H__
30
31#include <wx/print.h>
32#include <wx/datetime.h>
33#include <wx/cmdline.h>
34
35#ifdef __WXMSW__
36#include <wx/msw/private.h>
37#endif
38
39#include "model/ocpn_types.h"
40#include "navutil.h"
41#include "ocpn_frame.h"
42#include "printout_base.h"
43#include "printtable.h"
44
46public:
47 MyRoutePrintout(std::vector<bool> _toPrintOut, Route* route);
48 virtual bool OnPrintPage(int page) override;
49 void DrawPage(wxDC* dc);
50 virtual void OnPreparePrinting() override;
51
52 virtual bool HasPage(int num) override {
53 return num > 0 && num <= numberOfPages;
54 };
55
56 virtual void GetPageInfo(int* minPage, int* maxPage, int* selPageFrom,
57 int* selPageTo) override;
58
59protected:
60 wxDC* myDC;
61 PrintTable table;
62 Route* myRoute;
63 std::vector<bool> toPrintOut; // list of fields of bool, if certain element
64 // should be print out.
65 static const int pN = 5; // number of fields sofar
66 int pageToPrint;
67 int numberOfPages;
68 int marginX;
69 int marginY;
70 int textOffsetX;
71 int textOffsetY;
72};
73
74// route elements selection dialog
76#define ID_ROUTEPRINTSELECTION 9000
77#define SYMBOL_ROUTEPRINT_SELECTION_STYLE \
78 wxCAPTION | wxRESIZE_BORDER | wxSYSTEM_MENU | wxCLOSE_BOX
79#define SYMBOL_ROUTEPRINT_SELECTION_TITLE _("Print Route Selection")
80#define SYMBOL_ROUTEPRINT_SELECTION_IDNAME ID_ROUTEPRINTSELECTION
81#define SYMBOL_ROUTEPRINT_SELECTION_SIZE wxSize(750, 300)
82#define SYMBOL_ROUTEPRINT_SELECTION_POSITION wxDefaultPosition
83
84#define ID_ROUTEPRINT_SELECTION_OK 9001
85#define ID_ROUTEPRINT_SELECTION_CANCEL 9002
86
87class RoutePrintSelection : public wxDialog {
88 DECLARE_EVENT_TABLE()
89
90public:
91 // Constructors
94 wxWindow* parent, Route* route,
95 wxWindowID id = SYMBOL_ROUTEPRINT_SELECTION_IDNAME,
96 const wxString& caption = SYMBOL_ROUTEPRINT_SELECTION_TITLE,
97 const wxPoint& pos = SYMBOL_ROUTEPRINT_SELECTION_POSITION,
98 const wxSize& size = SYMBOL_ROUTEPRINT_SELECTION_SIZE,
99 long style = SYMBOL_ROUTEPRINT_SELECTION_STYLE);
101
102 // Creation
103 bool Create(wxWindow* parent,
104 wxWindowID id = SYMBOL_ROUTEPRINT_SELECTION_IDNAME,
105 const wxString& caption = SYMBOL_ROUTEPRINT_SELECTION_TITLE,
106 const wxPoint& pos = SYMBOL_ROUTEPRINT_SELECTION_POSITION,
107 const wxSize& size = SYMBOL_ROUTEPRINT_SELECTION_SIZE,
108 long style = SYMBOL_ROUTEPRINT_SELECTION_STYLE);
109
110 void CreateControls();
111
112 void SetColorScheme(ColorScheme cs);
113 void SetDialogTitle(const wxString& title);
114 void OnRoutepropCancelClick(wxCommandEvent& event);
115 void OnRoutepropOkClick(wxCommandEvent& event);
116
117 // Should we show tooltips?
118 static bool ShowToolTips();
119
120 wxButton* m_CancelButton;
121 wxButton* m_OKButton;
122
123 wxCheckBox* m_checkBoxWPName;
124 wxCheckBox* m_checkBoxWPPosition;
125 wxCheckBox* m_checkBoxWPCourse;
126 wxCheckBox* m_checkBoxWPDistanceToNext;
127 wxCheckBox* m_checkBoxWPDescription;
128
129 Route* route;
130};
131
132#endif
Application print support.
Extension of a class Table with printing into dc.
Definition printtable.h:185
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