mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-05-17 06:42:14 -04:00
58 lines
2.5 KiB
C++
58 lines
2.5 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2026 Jon Beniston, M7RCE <jon@beniston.com> //
|
|
// Some code by Copilot //
|
|
// //
|
|
// 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_FREQDISPLAY_H_
|
|
#define INCLUDE_FEATURE_FREQDISPLAY_H_
|
|
|
|
#include <QStringList>
|
|
|
|
#include "feature/feature.h"
|
|
|
|
#include "freqdisplaysettings.h"
|
|
|
|
class WebAPIAdapterInterface;
|
|
|
|
class FreqDisplay : public Feature
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
FreqDisplay(WebAPIAdapterInterface *webAPIAdapterInterface);
|
|
~FreqDisplay() override = default;
|
|
|
|
void destroy() override { delete this; }
|
|
bool handleMessage(const Message& cmd) override;
|
|
|
|
void getIdentifier(QString& id) const override { id = objectName(); }
|
|
QString getIdentifier() const override { return objectName(); }
|
|
void getTitle(QString& title) const override { title = m_settings.m_title; }
|
|
|
|
QByteArray serialize() const override;
|
|
bool deserialize(const QByteArray& data) override;
|
|
|
|
const FreqDisplaySettings& getSettings() const { return m_settings; }
|
|
void applySettings(const FreqDisplaySettings& settings, const QStringList& settingsKeys, bool force = false);
|
|
|
|
static const char* const m_featureIdURI;
|
|
static const char* const m_featureId;
|
|
|
|
private:
|
|
FreqDisplaySettings m_settings;
|
|
};
|
|
|
|
#endif // INCLUDE_FEATURE_FREQDISPLAY_H_
|