wfview/settingswidget.h

102 wiersze
2.9 KiB
C
Czysty Zwykły widok Historia

#ifndef SETTINGSWIDGET_H
#define SETTINGSWIDGET_H
2023-02-19 18:39:05 +00:00
#include <QStandardItemModel>
#include <QWidget>
2023-02-19 18:39:05 +00:00
#include <QFile>
#include <QSlider>
#include <QSpinBox>
#include <QCheckBox>
#include <QRadioButton>
#include <QStringList>
#include "logcategories.h"
#include "prefs.h"
#include "colorprefs.h"
#include "udpbase.h" // for udp preferences
namespace Ui {
class settingswidget;
}
class settingswidget : public QWidget
{
Q_OBJECT
public:
explicit settingswidget(QWidget *parent = nullptr);
~settingswidget();
public slots:
void acceptPreferencesPtr(preferences *pptr);
void acceptUdpPreferencesPtr(udpPreferences *upptr);
void updateIfPrefs(int items);
void updateRaPrefs(int items);
void updateCtPrefs(int items);
void updateLanPrefs(int items);
void updateClusterPrefs(int items);
void updateIfPref(prefIfItem pif);
void updateRaPref(prefRaItem pra);
void updateCtPref(prefCtItem pct);
void updateLanPref(prefLanItem plan);
void updateClusterPref(prefClusterItem pcl);
void updateUdpPref(udpPrefsItem upi);
void updateUdpPrefs(int items);
void updateAudioInputs(QStringList deviceList, int currentIndex, int chars);
void updateAudioOutputs(QStringList deviceList, int currentIndex, int chars);
void updateServerRXAudioInputs(QStringList deviceList, int currentIndex, int chars);
void updateServerTXAudioOutputs(QStringList deviceList, int currentIndex, int chars);
void updateSerialPortList(QStringList deviceList, QVector<int> data);
2023-02-19 18:39:05 +00:00
void updateVSPList(QStringList deviceList, QVector<int> data);
signals:
// Not sure if we should do it this way,
// since many of these changes are not thought
// of as merely "preferences"... although they generally are...
// ...hmm
void changedIfPref(int items);
void changedRaPref(int items);
void changedCtPrefs(int items);
void changedLanPrefs(int items);
void changedClusterPrefs(int items);
private slots:
void on_settingsList_currentRowChanged(int currentRow);
void on_lanEnableBtn_clicked(bool checked);
void on_autoSSBchk_clicked(bool checked);
private:
Ui::settingswidget *ui;
void createSettingsListItems();
void populateComboBoxes();
void updateAllPrefs();
void updateUnderlayMode();
void quietlyUpdateSlider(QSlider* sl, int val);
void quietlyUpdateSpinbox(QSpinBox *sb, int val);
void quietlyUpdateCheckbox(QCheckBox *cb, bool isChecked);
void quietlyUpdateRadiobutton(QRadioButton *rb, bool isChecked);
preferences *prefs = NULL;
udpPreferences *udpPrefs = NULL;
bool havePrefs = false;
bool haveUdpPrefs = false;
bool haveSerialDevices = false;
2023-02-19 18:39:05 +00:00
bool haveVspDevices = false;
bool haveAudioInputs = false;
bool haveAudioOutputs = false;
bool haveServerAudioInputs = false;
bool haveServerAudioOutputs = false;
bool updatingUIFromPrefs = false;
};
#endif // SETTINGSWIDGET_H