2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* SleepyHead Preferences Dialog GUI Headers
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution 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 {
|
|
|
|
class PreferencesDialog;
|
|
|
|
}
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
/*! \class MySortFilterProxyModel
|
|
|
|
\brief Enables the Graph tabs view to be filtered
|
|
|
|
*/
|
2011-11-27 14:35:25 +00:00
|
|
|
class MySortFilterProxyModel:public QSortFilterProxyModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
MySortFilterProxyModel(QObject *parent = 0);
|
|
|
|
|
|
|
|
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-19 05:35:05 +00:00
|
|
|
/*! \struct MaskProfile
|
|
|
|
\brief This in still a work in progress, and may be used in Unintentional leaks calculations.
|
|
|
|
*/
|
2011-11-30 06:01:38 +00:00
|
|
|
struct MaskProfile {
|
2011-12-21 12:47:47 +00:00
|
|
|
MaskType type;
|
2011-11-30 06:01:38 +00:00
|
|
|
QString name;
|
|
|
|
EventDataType pflow[5][2];
|
|
|
|
};
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
/*! \class PreferencesDialog
|
|
|
|
\brief SleepyHead's Main Preferences Window
|
2011-11-30 06:01:38 +00:00
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
This provides the Preferences form and logic to alter Preferences for SleepyHead
|
|
|
|
*/
|
2011-08-02 22:37:15 +00:00
|
|
|
class PreferencesDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-09-11 06:16:45 +00:00
|
|
|
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
|
|
|
|
|
|
|
//! \brief Updates the date text of the last time updates where checked
|
2011-10-21 05:50:31 +00:00
|
|
|
void RefreshLastChecked();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
2011-08-03 03:09:57 +00:00
|
|
|
private slots:
|
2011-08-05 07:52:32 +00:00
|
|
|
void on_eventTable_doubleClicked(const QModelIndex &index);
|
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-10-21 05:50:31 +00:00
|
|
|
void on_checkForUpdatesButton_clicked();
|
|
|
|
|
2011-11-20 23:39:55 +00:00
|
|
|
void on_addImportLocation_clicked();
|
|
|
|
|
|
|
|
void on_removeImportLocation_clicked();
|
|
|
|
|
2011-11-27 14:35:25 +00:00
|
|
|
void on_graphView_activated(const QModelIndex &index);
|
|
|
|
|
|
|
|
void on_graphFilter_textChanged(const QString &arg1);
|
|
|
|
|
2011-12-08 11:41:44 +00:00
|
|
|
void graphModel_changed(QStandardItem * item);
|
2011-11-27 14:35:25 +00:00
|
|
|
|
|
|
|
void on_resetGraphButton_clicked();
|
|
|
|
|
2011-12-08 11:41:44 +00:00
|
|
|
//void on_genOpWidget_itemActivated(QListWidgetItem *item);
|
2011-11-30 06:01:38 +00:00
|
|
|
|
|
|
|
void on_maskTypeCombo_activated(int index);
|
|
|
|
|
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);
|
|
|
|
|
2011-08-02 22:37:15 +00:00
|
|
|
private:
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Populates the Graph Model view with data from the Daily, Overview & Oximetry gGraphView objects
|
2011-11-27 14:35:25 +00:00
|
|
|
void resetGraphModel();
|
2011-12-19 05:35:05 +00:00
|
|
|
|
2011-08-02 22:37:15 +00:00
|
|
|
Ui::PreferencesDialog *ui;
|
2011-09-11 06:16:45 +00:00
|
|
|
Profile * profile;
|
2011-09-23 05:22:52 +00:00
|
|
|
QHash<int,QColor> m_new_colors;
|
2011-11-20 23:39:55 +00:00
|
|
|
QStringList importLocations;
|
|
|
|
QStringListModel *importModel;
|
2011-11-27 14:35:25 +00:00
|
|
|
MySortFilterProxyModel *graphFilterModel;
|
|
|
|
QStandardItemModel *graphModel;
|
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
|