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
|
/***************************************************************************
*
* Project: OpenCPN
*
***************************************************************************
* 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. *
***************************************************************************
*/
#ifndef __AISTARGETLISTDIALOG_H__
#define __AISTARGETLISTDIALOG_H__
#include <wx/panel.h>
#include <wx/checkbox.h>
#define ID_AIS_TARGET_LIST 10003
class OCPNListCtrl;
class AIS_Decoder;
class AIS_Target_Data;
class wxWindow;
class wxAuiManager;
class wxButton;
class wxStaticText;
class wxSpinCtrl;
class wxTextCtrl;
class wxListEvent;
class wxAuiManager;
class wxAuiManagerEvent;
WX_DEFINE_SORTED_ARRAY_INT(int, ArrayOfMMSI);
class AISTargetListDialog: public wxPanel
{
DECLARE_CLASS( AISTargetListDialog )
public:
AISTargetListDialog( wxWindow *parent, wxAuiManager *auimgr, AIS_Decoder *pdecoder );
~AISTargetListDialog( );
void Shutdown( void );
void OnClose(wxCloseEvent &event);
void Disconnect_decoder();
void RecalculateSize( void );
void SetColorScheme( );
void UpdateAISTargetList( ); // Rebuild AIS target list
void UpdateNVAISTargetList( );
void CopyMMSItoClipBoard(int);
AIS_Target_Data *GetpTarget(unsigned int list_item);
OCPNListCtrl *m_pListCtrlAISTargets;
AIS_Decoder *m_pdecoder;
ArrayOfMMSI *m_pMMSI_array;
private:
void CreateControls( void );
void OnPaneClose( wxAuiManagerEvent& event );
void UpdateButtons();
void OnTargetSelected( wxListEvent &event );
void DoTargetQuery( int mmsi );
void OnTargetDefaultAction( wxListEvent& event );
void OnTargetQuery( wxCommandEvent& event );
void OnTargetListColumnClicked( wxListEvent &event );
void OnTargetScrollTo( wxCommandEvent& event );
void OnTargetCreateWpt( wxCommandEvent& event );
void OnShowAllTracks( wxCommandEvent& event );
void OnHideAllTracks( wxCommandEvent& event );
void OnToggleTrack( wxCommandEvent& event );
void OnCopyMMSI( wxCommandEvent& event );
void OnLimitRange( wxCommandEvent& event );
void OnCloseButton( wxCommandEvent& event );
void OnAutosortCB( wxCommandEvent &event );
wxWindow *m_pparent;
wxAuiManager *m_pAuiManager;
wxButton *m_pButtonInfo;
wxButton *m_pButtonJumpTo;
wxButton *m_pButtonCreateWpt;
wxButton *m_pButtonHideAllTracks;
wxButton *m_pButtonShowAllTracks;
wxButton *m_pButtonToggleTrack;
wxButton *m_pButtonCopyMMSI;
wxStaticText *m_pStaticTextRange;
wxSpinCtrl *m_pSpinCtrlRange;
wxStaticText *m_pStaticTextCount;
wxTextCtrl *m_pTextTargetCount;
wxButton *m_pButtonOK;
wxCheckBox *m_pCBAutosort;
bool m_bautosort_force;
DECLARE_EVENT_TABLE()
};
#endif
|