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
|
/***************************************************************************
*
* Project: OpenCPN
*
***************************************************************************
* Copyright (C) 2013 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. *
***************************************************************************
*/
#ifndef __NMEALOGWINDOW_H__
#define __NMEALOGWINDOW_H__
#include "WindowDestroyListener.h"
class wxWindow;
class wxString;
class wxSize;
class wxPoint;
class TTYWindow;
/**
* This class provides access to the NMEA log/debug window.
*
* This provides everything needed to use the single NMEA log window.
*
* Singleton.
*
* Reading geometry information from the window will cache them
* inside this class. This is used to store them permanently in
* the configuration file.
*/
class NMEALogWindow : public WindowDestroyListener
{
public:
static NMEALogWindow & Get();
bool Active() const;
void Create(wxWindow * parent, int num_lines = 35);
void Add(const wxString & s);
void Refresh(bool do_refresh = false);
int GetSizeW();
int GetSizeH();
int GetPosX();
int GetPosY();
void SetSize(int w, int h);
void SetSize(const wxSize & size);
void SetPos(int x, int y);
void SetPos(const wxPoint & pos);
void CheckPos(int display_width, int display_height);
void Move();
virtual void DestroyWindow();
static void Shutdown();
wxWindow *GetTTYWindow( void ){ return (wxWindow *)window; }
private: // prevent class from being copied, needed by singleton
NMEALogWindow();
NMEALogWindow(const NMEALogWindow &) {}
virtual ~NMEALogWindow() {};
NMEALogWindow & operator=(const NMEALogWindow &) { return *this; }
void UpdateGeometry();
private:
static NMEALogWindow * instance;
TTYWindow * window;
int width;
int height;
int pos_x;
int pos_y;
};
#endif
|