mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-30 20:40:20 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			108 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| // Copyright (C) 2020 Jon Beniston, M7RCE                                        //
 | |
| // Copyright (C) 2020 Edouard Griffiths, F4EXB                                   //
 | |
| //                                                                               //
 | |
| // 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 as version 3 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 V3 for more details.                               //
 | |
| //                                                                               //
 | |
| // You should have received a copy of the GNU General Public License             //
 | |
| // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | |
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef INCLUDE_FEATURE_AISGUI_H_
 | |
| #define INCLUDE_FEATURE_AISGUI_H_
 | |
| 
 | |
| #include <QTimer>
 | |
| #include <QMenu>
 | |
| 
 | |
| #include "feature/featuregui.h"
 | |
| #include "util/messagequeue.h"
 | |
| #include "util/ais.h"
 | |
| #include "pipes/pipeendpoint.h"
 | |
| #include "aissettings.h"
 | |
| 
 | |
| class PluginAPI;
 | |
| class FeatureUISet;
 | |
| class AIS;
 | |
| 
 | |
| namespace Ui {
 | |
|     class AISGUI;
 | |
| }
 | |
| 
 | |
| class AISGUI : public FeatureGUI {
 | |
|     Q_OBJECT
 | |
| public:
 | |
|     static AISGUI* create(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feature);
 | |
|     virtual void destroy();
 | |
| 
 | |
|     void resetToDefaults();
 | |
|     QByteArray serialize() const;
 | |
|     bool deserialize(const QByteArray& data);
 | |
|     virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
 | |
| 
 | |
| private:
 | |
|     Ui::AISGUI* ui;
 | |
|     PluginAPI* m_pluginAPI;
 | |
|     FeatureUISet* m_featureUISet;
 | |
|     AISSettings m_settings;
 | |
|     bool m_doApplySettings;
 | |
| 
 | |
|     AIS* m_ais;
 | |
|     MessageQueue m_inputMessageQueue;
 | |
|     QTimer m_statusTimer;
 | |
|     int m_lastFeatureState;
 | |
| 
 | |
|     QMenu *vesselsMenu;                         // Column select context menu
 | |
| 
 | |
|     explicit AISGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feature, QWidget* parent = nullptr);
 | |
|     virtual ~AISGUI();
 | |
| 
 | |
|     void blockApplySettings(bool block);
 | |
|     void applySettings(bool force = false);
 | |
|     void displaySettings();
 | |
|     bool handleMessage(const Message& message);
 | |
| 
 | |
|     void leaveEvent(QEvent*);
 | |
|     void enterEvent(QEvent*);
 | |
| 
 | |
|     void updateVessels(AISMessage *ais);
 | |
|     void resizeTable();
 | |
|     QAction *createCheckableItem(QString& text, int idx, bool checked, const char *slot);
 | |
| 
 | |
|     enum VesselCol {
 | |
|         VESSEL_COL_MMSI,
 | |
|         VESSEL_COL_TYPE,
 | |
|         VESSEL_COL_LATITUDE,
 | |
|         VESSEL_COL_LONGITUDE,
 | |
|         VESSEL_COL_COURSE,
 | |
|         VESSEL_COL_SPEED,
 | |
|         VESSEL_COL_HEADING,
 | |
|         VESSEL_COL_STATUS,
 | |
|         VESSEL_COL_IMO,
 | |
|         VESSEL_COL_NAME,
 | |
|         VESSEL_COL_CALLSIGN,
 | |
|         VESSEL_COL_SHIP_TYPE,
 | |
|         VESSEL_COL_DESTINATION
 | |
|     };
 | |
| 
 | |
| private slots:
 | |
|     void onMenuDialogCalled(const QPoint &p);
 | |
|     void onWidgetRolled(QWidget* widget, bool rollDown);
 | |
|     void handleInputMessages();
 | |
|     void updateStatus();
 | |
|     void on_vessels_cellDoubleClicked(int row, int column);
 | |
|     void vessels_sectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex);
 | |
|     void vessels_sectionResized(int logicalIndex, int oldSize, int newSize);
 | |
|     void vesselsColumnSelectMenu(QPoint pos);
 | |
|     void vesselsColumnSelectMenuChecked(bool checked = false);
 | |
| };
 | |
| 
 | |
| #endif // INCLUDE_FEATURE_AISGUI_H_
 |