OpenCPN Partial API docs
Loading...
Searching...
No Matches
SendToGpsDlg.h
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 *
5 ***************************************************************************
6 * Copyright (C) 2010 by David S. Register *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
22 ***************************************************************************
23 */
24
25#ifndef __SENDTOGPSDLG_H__
26#define __SENDTOGPSDLG_H__
27
28#include <wx/wxprec.h>
29#ifndef WX_PRECOMP
30#include <wx/wx.h>
31#endif // precompiled headers
32
33#include <wx/dialog.h>
34
35// Constants for SendToGps... Dialog
36#define ID_STGDIALOG 10005
37#define SYMBOL_STG_STYLE \
38 wxCAPTION | wxRESIZE_BORDER | wxSYSTEM_MENU | wxCLOSE_BOX | \
39 wxFRAME_FLOAT_ON_PARENT
40#define SYMBOL_STG_TITLE _("Send to GPS")
41#define SYMBOL_STG_IDNAME ID_STGDIALOG
42#define SYMBOL_STG_SIZE wxSize(500, 500)
43#define SYMBOL_STG_POSITION wxDefaultPosition
44
45class Route;
46class RoutePoint;
47
53class SendToGpsDlg : public wxDialog {
54 DECLARE_EVENT_TABLE()
55
56public:
58 SendToGpsDlg(wxWindow* parent, wxWindowID id, const wxString& caption,
59 const wxString& hint, const wxPoint& pos, const wxSize& size,
60 long style);
62
63 bool Create(wxWindow* parent, wxWindowID id = SYMBOL_STG_IDNAME,
64 const wxString& caption = SYMBOL_STG_TITLE,
65 const wxString& hint = SYMBOL_STG_TITLE,
66 const wxPoint& pos = SYMBOL_STG_POSITION,
67 const wxSize& size = SYMBOL_STG_SIZE,
68 long style = SYMBOL_STG_STYLE);
69 void SetRoute(Route* pRoute) { m_pRoute = pRoute; }
70 void SetWaypoint(RoutePoint* pRoutePoint) { m_pRoutePoint = pRoutePoint; }
71 wxGauge* GetProgressGauge() { return m_pgauge; }
72 void SetMessage(wxString message);
73
74private:
75 void CreateControls(const wxString& hint);
76
77 void OnCancelClick(wxCommandEvent& event);
78 void OnSendClick(wxCommandEvent& event);
79
80 Route* m_pRoute;
81 RoutePoint* m_pRoutePoint;
82 wxComboBox* m_itemCommListBox;
83 wxGauge* m_pgauge;
84 wxButton* m_CancelButton;
85 wxButton* m_SendButton;
86 wxStaticText* premtext;
87};
88
89#endif
Represents a waypoint or mark within the navigation system.
Definition route_point.h:68
Represents a navigational route in the navigation system.
Definition route.h:96
Dialog for sending routes/waypoints to a GPS device.