/////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2020 F4EXB // // written by Edouard Griffiths // // // // 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 . // /////////////////////////////////////////////////////////////////////////////////// #ifndef SDRGUI_GUI_FEATUREPRESETDIALOG_H_ #define SDRGUI_GUI_FEATUREPRESETDIALOG_H_ #include #include #include #include "export.h" class FeatureSetPreset; class FeatureUISet; class WebAPIAdapterInterface; class PluginAPI; class Workspace; namespace Ui { class FeaturePresetsDialog; } class SDRGUI_API FeaturePresetsDialog : public QDialog { Q_OBJECT public: explicit FeaturePresetsDialog(QWidget* parent = nullptr); ~FeaturePresetsDialog(); void setPresets(QList* presets) { m_featureSetPresets = presets; } void setFeatureUISet(FeatureUISet *featureUISet) { m_featureUISet = featureUISet; } void setPluginAPI(PluginAPI *pluginAPI) { m_pluginAPI = pluginAPI; } void setWebAPIAdapter(WebAPIAdapterInterface *apiAdapter) { m_apiAdapter = apiAdapter; } void setWorkspace(Workspace *workspace) { m_workspace = workspace; } void populateTree(); private: enum { PGroup, PItem }; Ui::FeaturePresetsDialog* ui; QList *m_featureSetPresets; FeatureUISet *m_featureUISet; PluginAPI *m_pluginAPI; WebAPIAdapterInterface *m_apiAdapter; Workspace *m_workspace; QTreeWidgetItem* addPresetToTree(const FeatureSetPreset* preset); void updatePresetControls(); FeatureSetPreset* newFeatureSetPreset(const QString& group, const QString& description); void addFeatureSetPreset(FeatureSetPreset *preset); void savePresetSettings(FeatureSetPreset* preset); void loadPresetSettings(const FeatureSetPreset* preset); void sortFeatureSetPresets(); void renamePresetGroup(const QString& oldGroupName, const QString& newGroupName); void deletePreset(const FeatureSetPreset* preset); void deletePresetGroup(const QString& groupName); private slots: void on_presetSave_clicked(); void on_presetUpdate_clicked(); void on_settingsSave_clicked(); void on_presetEdit_clicked(); void on_presetDelete_clicked(); void on_presetLoad_clicked(); void on_presetTree_currentItemChanged(QTreeWidgetItem *current, QTreeWidgetItem *previous); void on_presetTree_itemActivated(QTreeWidgetItem *item, int column); }; #endif // SDRGUI_GUI_FEATUREPRESETDIALOG_H_