OpenCPN Partial API docs
Loading...
Searching...
No Matches
GribRequestDialog.h
Go to the documentation of this file.
1/***************************************************************************
2 * Copyright (C) 2010 by David S. Register *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************
19 */
47#ifndef __GRIBREQUESTDIALOG_H__
48#define __GRIBREQUESTDIALOG_H__
49
50#ifndef WX_PRECOMP
51#include "wx/wx.h"
52#endif // precompiled headers
53
54#include "GribUIDialogBase.h"
55#include "GribUIDialog.h"
56#include "pi_ocpndc.h"
57#include "wx/jsonreader.h"
58
66
67const std::string CATALOG_URL =
68 "https://raw.githubusercontent.com/chartcatalogs/gribcatalog/main/"
69 "sources.json";
70
71#define XYGRIB_MAX_DOWNLOADABLE_GRIB_SIZE_MB 10
72
77 RENDER_NONE = 0, // No selection zone to render
78 RENDER_COMPLETE = 1, // Selection is complete, render the final zone
79 RENDER_DRAWING = 2 // User is actively drawing the selection zone
80};
81
94public:
96
98
99 void OnClose(wxCloseEvent &event) override;
100 void SetVpSize(PlugIn_ViewPort *vp);
128 bool MouseEventHook(wxMouseEvent &event);
137 bool RenderZoneOverlay(wxDC &dc);
145 bool RenderGlZoneOverlay();
154 bool DoRenderZoneOverlay();
155 void SetRequestDialogSize();
156 void StopGraphicalZoneSelection();
157 void UpdateAreaSelectionState();
166 double GetMinLat() const;
175 double GetMaxLat() const;
184 double GetMinLon() const;
193 double GetMaxLon() const;
194
195 int GetBoundingBoxCanvasIndex() const { return m_boundingBoxCanvasIndex; }
196
197 void Save() {
198 wxCommandEvent evt;
199 OnOK(evt);
200 }
201
202 wxString m_RequestConfigBase;
203 wxString m_MailToAddresses;
210
221
232 double m_Lat;
234 double m_Lon;
235
236private:
237 void HighlightArea(double latmax, double lonmax, double latmin,
238 double lonmin);
239 void ReadLocalCatalog();
240 void FillTreeCtrl(wxJSONValue &data);
241 void ApplyRequestConfig(unsigned rs, unsigned it, unsigned tr);
242 wxString WriteMail();
243 int EstimateFileSize(double *size);
244
246 void SaveConfig() override;
249 void InitRequestConfig();
250 void OnExit(wxCommandEvent &event) {
251 wxCloseEvent evt;
252 OnClose(evt);
253 }
254 void OnTopChange(wxCommandEvent &event) override;
255 void OnMovingClick(wxCommandEvent &event) override;
256 void OnAnyChange(wxCommandEvent &event) override;
257 void OnAnySpinChange(wxSpinEvent &event) override {
258 wxCommandEvent evt;
259 OnAnyChange(evt);
260 }
261 void OnNotebookPageChanged(wxNotebookEvent &event) override {
262 HighlightArea(0, 0, 0, 0);
263 }
264 void OnTimeRangeChange(wxCommandEvent &event) override;
265 void OnSendMaiL(wxCommandEvent &event) override;
266 void OnOK(wxCommandEvent &event) override;
267 void OnZoneSelectionModeChange(wxCommandEvent &event) override;
268 void OnCancel(wxCommandEvent &event) override {
269 wxCloseEvent evt;
270 OnClose(evt);
271 }
272 void OnCoordinatesChange(wxSpinEvent &event) override;
273 void OnMouseEventTimer(wxTimerEvent &event);
274 void SetCoordinatesText();
275 void OnWorldLengthChoice(wxCommandEvent &event) override { event.Skip(); }
276 void OnWorldResolutionChoice(wxCommandEvent &event) override { event.Skip(); }
277 void OnWorldDownload(wxCommandEvent &event) override;
278 void OnLocalTreeItemExpanded(wxTreeEvent &event) override { event.Skip(); }
279 void OnLocalTreeSelChanged(wxTreeEvent &event) override;
280 void OnUpdateLocalCatalog(wxCommandEvent &event) override;
281 void OnDownloadLocal(wxCommandEvent &event) override;
282 void onDLEvent(OCPN_downloadEvent &ev);
283 void EnableDownloadButtons();
284
285 // Xygrib internal methods
286 void InitializeXygribDialog();
287 wxString BuildXyGribUrl();
288 wxString BuildGribFileName();
289 // XyGrib GUI callbacks
290 void OnXyGribDownloadButton(wxCommandEvent &event) override;
291 void OnXyGribAtmModelChoice(wxCommandEvent &event) override;
292 void OnXyGribWaveModelChoice(wxCommandEvent &event) override;
293 void OnXyGribConfigChange(wxCommandEvent &event) override;
294 // Manage XyGrib UI Configuration
295 void ApplyXyGribConfiguration();
296 void MemorizeXyGribConfiguration();
297 // Calculate estimated size of GRIB file
298 void UpdateGribSizeEstimate();
299
300 // Index of currently selected XyGrib atmospheric model
301 int m_selectedAtmModelIndex;
302 // Index of currently selected XyGrib wave model
303 int m_selectedWaveModelIndex;
304 // Last size estimation of the GRIB file
305 int m_gribSizeEstimate;
306
307 GRIBUICtrlBar &m_parent;
308
309 wxDC *m_pdc;
310 pi_ocpnDC *m_oDC; // Used for selection overlay on GL
311
312 wxTimer m_tMouseEventTimer;
313 wxTimer m_tMouseClickTimer;
314 wxMouseEvent m_SingleClickEvent;
315
316 bool IsZYGRIB;
317 bool IsGFS;
318 int m_MailError_Nb;
319 int m_SendMethod;
320 bool m_AllowSend;
321 bool m_IsMaxLong;
322 double m_displayScale;
323 bool m_connected;
324 bool m_downloading;
325 long m_download_handle;
326 bool m_bTransferSuccess;
327 bool m_canceled;
328 bool m_bLocal_source_selected;
329 GribDownloadType m_downloadType;
332 int m_boundingBoxCanvasIndex;
333};
334
335#endif
ZoneSelectionRenderState
Enumeration defining the states of the GRIB zone selection overlay rendering.
GribDownloadType
@ WORLD
Global forecast downloads (e.g., GFS)
@ XYGRIB
Downloads from XyGrib service.
@ NONE
No download source selected.
@ LOCAL_CATALOG
Downloads from configured catalogs.
@ LOCAL
Downloads from local sources.
Base User Interface Components for GRIB Plugin.
GRIB Weather Data Control Interface.
Class GribRequestSettingBase.
Manages GRIB file request configuration and downloads.
double m_StartLat
The latitude at the starting point of the bounding box.
double GetMinLat() const
Get the minimum latitude of the bounding box for the download request.
double GetMaxLat() const
Get the maximum latitude of the bounding box for the download request.
double m_Lat
The latitude at the mouse cursor while drawing a bounding box.
void OnVpUnderMouseChange(PlugIn_ViewPort *vp)
Callback invoked when the view port under mouse has changed.
bool RenderGlZoneOverlay()
Renders the GRIB area selection overlay using OpenGL.
bool RenderZoneOverlay(wxDC &dc)
Renders the GRIB area selection overlay using standard device context.
double m_Lon
The longitude at the mouse cursor while drawing a bounding box.
wxPoint m_StartPoint
Starting point of the bounding box in physical pixels.
bool DoRenderZoneOverlay()
Draws the GRIB area selection overlay on the chart.
bool MouseEventHook(wxMouseEvent &event)
Intercepts mouse events to handle GRIB area selection.
void OnVpWithFocusChange(PlugIn_ViewPort *vp)
Callback invoked when the focused view port has changed, such as in multi-chart mode when user switch...
PlugIn_ViewPort * m_VpMouse
The viewport under the mouse.
ZoneSelectionRenderState m_RenderSelectionZoneState
Current state of the bounding box overlay rendering.
double GetMaxLon() const
Get the maximum longitude of the bounding box for the download request.
PlugIn_ViewPort * m_VpFocus
The viewport currently in focus.
double m_StartLon
The longitude at the starting point of the bounding box.
double GetMinLon() const
Get the minimum longitude of the bounding box for the download request.
Contains view parameters and status information for a chart display viewport.
The JSON value class implementation.
Definition jsonval.h:84