2020-09-19 19:06:50 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 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_SIMPLEPTTGUI_H_
|
|
|
|
#define INCLUDE_FEATURE_SIMPLEPTTGUI_H_
|
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
2020-10-03 17:55:24 -04:00
|
|
|
#include "feature/featuregui.h"
|
2020-09-19 19:06:50 -04:00
|
|
|
#include "util/messagequeue.h"
|
|
|
|
#include "simplepttsettings.h"
|
|
|
|
|
|
|
|
class PluginAPI;
|
|
|
|
class FeatureUISet;
|
|
|
|
class SimplePTT;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SimplePTTGUI;
|
|
|
|
}
|
|
|
|
|
2020-10-03 17:55:24 -04:00
|
|
|
class SimplePTTGUI : public FeatureGUI {
|
2020-09-19 19:06:50 -04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
static SimplePTTGUI* 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::SimplePTTGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
FeatureUISet* m_featureUISet;
|
|
|
|
SimplePTTSettings m_settings;
|
|
|
|
bool m_doApplySettings;
|
|
|
|
|
|
|
|
SimplePTT* m_simplePTT;
|
|
|
|
MessageQueue m_inputMessageQueue;
|
|
|
|
QTimer m_statusTimer;
|
|
|
|
int m_lastFeatureState;
|
|
|
|
std::vector<QString> m_statusColors;
|
|
|
|
std::vector<QString> m_statusTooltips;
|
|
|
|
|
|
|
|
explicit SimplePTTGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feature, QWidget* parent = nullptr);
|
|
|
|
virtual ~SimplePTTGUI();
|
|
|
|
|
|
|
|
void blockApplySettings(bool block);
|
|
|
|
void applySettings(bool force = false);
|
|
|
|
void applyPTT(bool tx);
|
|
|
|
void displaySettings();
|
|
|
|
void updateDeviceSetLists();
|
2020-10-03 13:51:14 -04:00
|
|
|
bool handleMessage(const Message& message);
|
2020-10-03 05:43:14 -04:00
|
|
|
|
2020-09-19 19:06:50 -04:00
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onMenuDialogCalled(const QPoint &p);
|
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
|
|
void handleInputMessages();
|
|
|
|
void on_startStop_toggled(bool checked);
|
|
|
|
void on_devicesRefresh_clicked();
|
|
|
|
void on_rxDevice_currentIndexChanged(int index);
|
|
|
|
void on_txDevice_currentIndexChanged(int index);
|
|
|
|
void on_rxtxDelay_valueChanged(int value);
|
|
|
|
void on_txrxDelay_valueChanged(int value);
|
|
|
|
void on_ptt_toggled(bool checked);
|
|
|
|
void updateStatus();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-10-03 05:43:14 -04:00
|
|
|
#endif // INCLUDE_FEATURE_SIMPLEPTTGUI_H_
|