2019-02-24 00:58:25 +00:00
|
|
|
|
/* OSCAR Preferences Dialog Headers
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
|
* Copyright (c) 2019-2022 The OSCAR Team
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
|
* for more details. */
|
2011-08-05 00:12:23 +00:00
|
|
|
|
|
2011-08-02 22:37:15 +00:00
|
|
|
|
#ifndef PREFERENCESDIALOG_H
|
|
|
|
|
#define PREFERENCESDIALOG_H
|
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
2011-08-03 03:09:57 +00:00
|
|
|
|
#include <QModelIndex>
|
2011-11-30 06:01:38 +00:00
|
|
|
|
#include <QListWidgetItem>
|
2011-11-20 23:39:55 +00:00
|
|
|
|
#include <QStringListModel>
|
2011-11-27 14:35:25 +00:00
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
|
#include <QStandardItemModel>
|
2011-09-08 09:50:05 +00:00
|
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
|
|
2011-08-02 22:37:15 +00:00
|
|
|
|
namespace Ui {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
class PreferencesDialog;
|
2011-08-02 22:37:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \class MySortFilterProxyModel
|
|
|
|
|
\brief Enables the Graph tabs view to be filtered
|
|
|
|
|
*/
|
2014-04-17 05:52:25 +00:00
|
|
|
|
class MySortFilterProxyModel: public QSortFilterProxyModel
|
2011-11-27 14:35:25 +00:00
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2014-04-17 05:52:25 +00:00
|
|
|
|
public:
|
2011-11-27 14:35:25 +00:00
|
|
|
|
MySortFilterProxyModel(QObject *parent = 0);
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
protected:
|
2011-12-19 05:35:05 +00:00
|
|
|
|
//! \brief Simply extends filterAcceptRow to scan children as well
|
2011-11-27 14:35:25 +00:00
|
|
|
|
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
|
|
|
|
|
};
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \class PreferencesDialog
|
2019-02-24 00:58:25 +00:00
|
|
|
|
\brief OSCAR's Main Preferences Window
|
2011-11-30 06:01:38 +00:00
|
|
|
|
|
2019-02-24 00:58:25 +00:00
|
|
|
|
This provides the Preferences form and logic to alter Preferences for OSCAR
|
2011-12-18 10:53:51 +00:00
|
|
|
|
*/
|
2011-08-02 22:37:15 +00:00
|
|
|
|
class PreferencesDialog : public QDialog
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
public:
|
|
|
|
|
explicit PreferencesDialog(QWidget *parent, Profile *_profile);
|
2011-08-02 22:37:15 +00:00
|
|
|
|
~PreferencesDialog();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
2012-01-10 06:19:49 +00:00
|
|
|
|
//! \brief Save the current preferences, called when Ok button is clicked on.
|
|
|
|
|
bool Save();
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
2020-07-05 01:17:25 +00:00
|
|
|
|
#ifndef NO_CHECKUPDATES
|
2011-12-19 05:35:05 +00:00
|
|
|
|
//! \brief Updates the date text of the last time updates where checked
|
2011-10-21 05:50:31 +00:00
|
|
|
|
void RefreshLastChecked();
|
2019-02-24 22:10:31 +00:00
|
|
|
|
#endif
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
private slots:
|
2011-09-23 03:54:48 +00:00
|
|
|
|
void on_combineSlider_valueChanged(int value);
|
2011-08-03 03:09:57 +00:00
|
|
|
|
|
2011-09-23 03:54:48 +00:00
|
|
|
|
void on_IgnoreSlider_valueChanged(int value);
|
2011-08-03 03:09:57 +00:00
|
|
|
|
|
2011-12-08 11:41:44 +00:00
|
|
|
|
//void on_genOpWidget_itemActivated(QListWidgetItem *item);
|
2011-11-30 06:01:38 +00:00
|
|
|
|
|
2012-01-05 04:37:22 +00:00
|
|
|
|
void on_createSDBackups_toggled(bool checked);
|
|
|
|
|
|
2012-01-10 06:19:49 +00:00
|
|
|
|
void on_okButton_clicked();
|
|
|
|
|
|
2013-11-09 03:13:15 +00:00
|
|
|
|
void on_scrollDampeningSlider_valueChanged(int value);
|
|
|
|
|
|
|
|
|
|
void on_tooltipTimeoutSlider_valueChanged(int value);
|
|
|
|
|
|
2014-07-03 01:59:50 +00:00
|
|
|
|
void on_createSDBackups_clicked(bool checked);
|
|
|
|
|
|
2014-08-06 14:06:44 +00:00
|
|
|
|
void on_resetChannelDefaults_clicked();
|
|
|
|
|
|
|
|
|
|
void on_channelSearch_textChanged(const QString &arg1);
|
|
|
|
|
|
|
|
|
|
void on_chanView_doubleClicked(const QModelIndex &index);
|
|
|
|
|
|
2014-08-25 02:55:01 +00:00
|
|
|
|
void on_waveSearch_textChanged(const QString &arg1);
|
|
|
|
|
|
2014-09-13 11:34:18 +00:00
|
|
|
|
void on_resetWaveformChannels_clicked();
|
|
|
|
|
|
|
|
|
|
void on_waveView_doubleClicked(const QModelIndex &index);
|
|
|
|
|
|
2016-03-03 04:48:08 +00:00
|
|
|
|
void on_maskLeaks4Slider_valueChanged(int value);
|
|
|
|
|
|
|
|
|
|
void on_maskLeaks20Slider_valueChanged(int value);
|
|
|
|
|
|
2016-03-04 21:27:33 +00:00
|
|
|
|
void on_calculateUnintentionalLeaks_toggled(bool arg1);
|
|
|
|
|
|
2023-01-27 01:05:18 +00:00
|
|
|
|
void on_resetOxiMetryDefaults_clicked();
|
|
|
|
|
|
2014-07-03 01:59:50 +00:00
|
|
|
|
private:
|
2014-08-06 14:06:44 +00:00
|
|
|
|
void InitChanInfo();
|
2014-08-25 02:55:01 +00:00
|
|
|
|
void InitWaveInfo();
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
2014-09-13 11:34:18 +00:00
|
|
|
|
void saveChanInfo();
|
|
|
|
|
void saveWaveInfo();
|
|
|
|
|
|
2014-08-25 02:55:01 +00:00
|
|
|
|
QHash<MachineType, QStandardItem *> toplevel;
|
|
|
|
|
QHash<MachineType, QStandardItem *> machlevel;
|
2014-07-20 18:05:36 +00:00
|
|
|
|
|
2011-08-02 22:37:15 +00:00
|
|
|
|
Ui::PreferencesDialog *ui;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
Profile *profile;
|
2014-08-06 14:06:44 +00:00
|
|
|
|
QHash<ChannelID, QColor> m_new_colors;
|
|
|
|
|
|
2011-11-20 23:39:55 +00:00
|
|
|
|
QStringList importLocations;
|
|
|
|
|
QStringListModel *importModel;
|
2014-08-25 02:55:01 +00:00
|
|
|
|
|
2014-08-06 14:06:44 +00:00
|
|
|
|
MySortFilterProxyModel * chanFilterModel;
|
|
|
|
|
QStandardItemModel *chanModel;
|
2014-08-25 02:55:01 +00:00
|
|
|
|
|
|
|
|
|
MySortFilterProxyModel * waveFilterModel;
|
|
|
|
|
QStandardItemModel *waveModel;
|
2011-08-02 22:37:15 +00:00
|
|
|
|
};
|
|
|
|
|
|
2011-11-27 14:35:25 +00:00
|
|
|
|
|
2011-08-02 22:37:15 +00:00
|
|
|
|
#endif // PREFERENCESDIALOG_H
|