1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
|
/******************************************************************************
* $Id: instrument.cpp, v1.0 2010/08/30 SethDart Exp $
*
* Project: OpenCPN
* Purpose: Dashboard Plugin
* Author: Jean-Eudes Onfray
*
***************************************************************************
* Copyright (C) 2010 by David S. Register *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************
*/
#include "wx/wxprec.h"
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif //precompiled headers
#include <cmath>
#include "instrument.h"
#include "wx28compat.h"
#ifdef __OCPN__ANDROID__
#include "qdebug.h"
#endif
//----------------------------------------------------------------
//
// Generic DashboardInstrument Implementation
//
//----------------------------------------------------------------
DashboardInstrument::DashboardInstrument(wxWindow *pparent, wxWindowID id, wxString title, int cap_flag)
:wxControl(pparent, id, wxDefaultPosition, wxDefaultSize, wxBORDER_NONE)
{
m_title = title;
m_cap_flag = cap_flag;
SetBackgroundStyle( wxBG_STYLE_CUSTOM );
SetDrawSoloInPane(false);
wxClientDC dc(this);
int width;
dc.GetTextExtent(m_title, &width, &m_TitleHeight, 0, 0, g_pFontTitle);
Connect(wxEVT_ERASE_BACKGROUND, wxEraseEventHandler(DashboardInstrument::OnEraseBackground));
Connect(wxEVT_PAINT, wxPaintEventHandler(DashboardInstrument::OnPaint));
// On OSX, there is an orphan mouse event that comes from the automatic
// exEVT_CONTEXT_MENU synthesis on the main wxWindow mouse handler.
// The event goes to an instrument window (here) that may have been deleted by the
// preferences dialog. Result is NULL deref.
// Solution: Handle right-click here, and DO NOT skip()
// Strangely, this does not work for GTK...
// See: http://trac.wxwidgets.org/ticket/15417
#if defined(__WXOSX__) || defined(__WXQT__)
Connect(wxEVT_RIGHT_DOWN, wxMouseEventHandler(DashboardInstrument::MouseEvent), NULL, this);
#endif
}
void DashboardInstrument::MouseEvent( wxMouseEvent &event )
{
if ( event.GetEventType() == wxEVT_RIGHT_DOWN )
{
wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU,
this->GetId(),
this->ClientToScreen(event.GetPosition()));
evtCtx.SetEventObject(this);
GetParent()->GetEventHandler()->AddPendingEvent(evtCtx );
}
}
int DashboardInstrument::GetCapacity()
{
return m_cap_flag;
}
void DashboardInstrument::SetDrawSoloInPane(bool value)
{
m_drawSoloInPane = value;
}
void DashboardInstrument::OnEraseBackground(wxEraseEvent& WXUNUSED(evt))
{
// intentionally empty
}
void DashboardInstrument::OnPaint( wxPaintEvent& WXUNUSED(event) )
{
wxAutoBufferedPaintDC pdc( this );
if( !pdc.IsOk() ) {
wxLogMessage( _T("DashboardInstrument::OnPaint() fatal: wxAutoBufferedPaintDC.IsOk() false.") );
return;
}
wxSize size = GetClientSize();
if( size.x == 0 || size.y == 0 ) {
wxLogMessage( _T("DashboardInstrument::OnPaint() fatal: Zero size DC.") );
return;
}
#if wxUSE_GRAPHICS_CONTEXT
wxGCDC dc( pdc );
#else
wxDC &dc( pdc );
#endif
wxColour cl;
GetGlobalColor( _T("DASHB"), &cl );
dc.SetBackground( cl );
#ifdef __WXGTK__
dc.SetBrush( cl );
dc.SetPen( *wxTRANSPARENT_PEN );
dc.DrawRectangle( 0, 0, size.x, size.y );
#endif
dc.Clear();
Draw( &dc );
if(!m_drawSoloInPane) {
// Windows GCDC does a terrible job of rendering small texts
// Workaround by using plain old DC for title box if text size is too small
#ifdef __WXMSW__
if( g_pFontTitle->GetPointSize() > 12 )
#endif
{
wxPen pen;
pen.SetStyle( wxPENSTYLE_SOLID );
GetGlobalColor( _T("DASHL"), &cl );
pen.SetColour( cl );
dc.SetPen( pen );
dc.SetBrush( cl );
dc.DrawRoundedRectangle( 0, 0, size.x, m_TitleHeight, 3 );
dc.SetFont( *g_pFontTitle );
GetGlobalColor( _T("DASHF"), &cl );
dc.SetTextForeground( cl );
dc.DrawText( m_title, 5, 0 );
}
#ifdef __WXMSW__
if( g_pFontTitle->GetPointSize() <= 12 ) {
wxColour cl;
GetGlobalColor( _T("DASHB"), &cl );
pdc.SetBrush(cl);
pdc.DrawRectangle(0, 0, size.x, m_TitleHeight);
wxPen pen;
pen.SetStyle( wxPENSTYLE_SOLID );
GetGlobalColor( _T("DASHL"), &cl );
pen.SetColour( cl );
pdc.SetPen( pen );
pdc.SetBrush( cl );
pdc.DrawRoundedRectangle( 0, 0, size.x, m_TitleHeight, 3 );
pdc.SetFont( *g_pFontTitle );
GetGlobalColor( _T("DASHF"), &cl );
pdc.SetTextForeground( cl );
pdc.DrawText( m_title, 5, 0 );
}
#endif
}
}
//----------------------------------------------------------------
//
// DashboardInstrument_Simple Implementation
//
//----------------------------------------------------------------
DashboardInstrument_Single::DashboardInstrument_Single(wxWindow *pparent, wxWindowID id, wxString title, int cap_flag, wxString format)
:DashboardInstrument(pparent, id, title, cap_flag)
{
m_format = format;
m_data = _T("---");
m_DataHeight = 0;
}
wxSize DashboardInstrument_Single::GetSize( int orient, wxSize hint )
{
wxClientDC dc(this);
int w;
dc.GetTextExtent(m_title, &w, &m_TitleHeight, 0, 0, g_pFontTitle);
dc.GetTextExtent(_T("000"), &w, &m_DataHeight, 0, 0, g_pFontData);
if( orient == wxHORIZONTAL ) {
return wxSize( DefaultWidth, wxMax(hint.y, m_TitleHeight+m_DataHeight) );
} else {
return wxSize( wxMax(hint.x, DefaultWidth), m_TitleHeight+m_DataHeight );
}
}
void DashboardInstrument_Single::Draw(wxGCDC* dc)
{
wxColour cl;
#ifdef __WXMSW__
wxBitmap tbm( dc->GetSize().x, m_DataHeight, -1 );
wxMemoryDC tdc( tbm );
wxColour c2;
GetGlobalColor( _T("DASHB"), &c2 );
tdc.SetBackground( c2 );
tdc.Clear();
tdc.SetFont(*g_pFontData );
GetGlobalColor( _T("DASHF"), &cl );
tdc.SetTextForeground( cl );
tdc.DrawText(m_data, 10, 0);
tdc.SelectObject( wxNullBitmap );
dc->DrawBitmap(tbm, 0, m_TitleHeight, false);
#else
dc->SetFont(*g_pFontData );
GetGlobalColor( _T("DASHF"), &cl );
dc->SetTextForeground( cl );
dc->DrawText(m_data, 10, m_TitleHeight);
#endif
}
void DashboardInstrument_Single::SetData(int st, double data, wxString unit)
{
if (m_cap_flag & st){
if( !std::isnan(data) ){
if (unit == _T("C"))
m_data = wxString::Format(m_format, data)+DEGREE_SIGN+_T("C");
else if (unit == _T("\u00B0"))
m_data = wxString::Format(m_format, data)+DEGREE_SIGN;
else if (unit == _T("\u00B0T"))
m_data = wxString::Format(m_format, data)+DEGREE_SIGN+_(" true");
else if (unit == _T("\u00B0M"))
m_data = wxString::Format(m_format, data)+DEGREE_SIGN+_(" mag");
else if (unit == _T("\u00B0L"))
m_data = _T(">")+ wxString::Format(m_format, data)+DEGREE_SIGN;
else if (unit == _T("\u00B0R"))
m_data = wxString::Format(m_format, data)+DEGREE_SIGN+_T("<");
else if (unit == _T("N")) //Knots
m_data = wxString::Format(m_format, data)+_T(" Kts");
/* maybe in the future ...
else if (unit == _T("M")) // m/s
m_data = wxString::Format(m_format, data)+_T(" m/s");
else if (unit == _T("K")) // km/h
m_data = wxString::Format(m_format, data)+_T(" km/h");
... to be completed
*/
else
m_data = wxString::Format(m_format, data)+_T(" ")+unit;
}
else
m_data = _T("---");
Refresh();
}
}
//----------------------------------------------------------------
//
// DashboardInstrument_Position Implementation
//
//----------------------------------------------------------------
DashboardInstrument_Position::DashboardInstrument_Position(wxWindow *pparent, wxWindowID id, wxString title, int cap_flag1, int cap_flag2)
:DashboardInstrument(pparent, id, title, cap_flag1 | cap_flag2)
{
m_data1 = _T("---");
m_data2 = _T("---");
m_cap_flag1 = cap_flag1;
m_cap_flag2 = cap_flag2;
m_DataHeight = 0;
}
wxSize DashboardInstrument_Position::GetSize( int orient, wxSize hint )
{
wxClientDC dc(this);
int w;
dc.GetTextExtent(m_title, &w, &m_TitleHeight, 0, 0, g_pFontTitle);
dc.GetTextExtent(_T("000 00.0000 W"), &w, &m_DataHeight, 0, 0, g_pFontData);
if( orient == wxHORIZONTAL ) {
return wxSize( w+10, wxMax(hint.y, m_TitleHeight+m_DataHeight*2) );
} else {
return wxSize( wxMax(hint.x, w+10), m_TitleHeight+m_DataHeight*2 );
}
}
void DashboardInstrument_Position::Draw(wxGCDC* dc)
{
wxColour cl;
#ifdef __WXMSW__
wxBitmap tbm( dc->GetSize().x, m_DataHeight * 2, -1 );
wxMemoryDC tdc( tbm );
wxColour c2;
GetGlobalColor( _T("DASHB"), &c2 );
tdc.SetBackground( c2 );
tdc.Clear();
tdc.SetFont(*g_pFontData );
GetGlobalColor( _T("DASHF"), &cl );
tdc.SetTextForeground( cl );
tdc.DrawText(m_data1, 10, 0);
tdc.DrawText(m_data2, 10, m_DataHeight);
tdc.SelectObject( wxNullBitmap );
dc->DrawBitmap(tbm, 0, m_TitleHeight, false);
#else
dc->SetFont(*g_pFontData );
GetGlobalColor( _T("DASHF"), &cl );
dc->SetTextForeground( cl );
dc->DrawText(m_data1, 10, m_TitleHeight);
dc->DrawText(m_data2, 10, m_TitleHeight + m_DataHeight);
#endif
}
void DashboardInstrument_Position::SetData(int st, double data, wxString unit)
{
if (std::isnan(data))
return;
if (st == m_cap_flag1)
{
m_data1 = toSDMM(1, data);
m_data1[0] = ' ';
}
else if (st == m_cap_flag2)
{
m_data2 = toSDMM(2, data);
}
else return;
Refresh();
}
/**************************************************************************/
/* Some assorted utilities */
/**************************************************************************/
wxString toSDMM ( int NEflag, double a )
{
short neg = 0;
int d;
long m;
if ( a < 0.0 )
{
a = -a;
neg = 1;
}
d = ( int ) a;
m = ( long ) ( ( a - ( double ) d ) * 60000.0 );
if ( neg )
d = -d;
wxString s;
if ( !NEflag )
s.Printf ( _T ( "%d %02ld.%03ld'" ), d, m / 1000, m % 1000 );
else
{
if ( NEflag == 1 )
{
char c = 'N';
if ( neg )
{
d = -d;
c = 'S';
}
s.Printf ( _T ( "%03d %02ld.%03ld %c" ), d, m / 1000, ( m % 1000 ), c );
}
else if ( NEflag == 2 )
{
char c = 'E';
if ( neg )
{
d = -d;
c = 'W';
}
s.Printf ( _T ( "%03d %02ld.%03ld %c" ), d, m / 1000, ( m % 1000 ), c );
}
}
return s;
}
|