OSCAR-code/preferencesdialog.h

105 lines
2.6 KiB
C
Raw Normal View History

/*
SleepyHead Preferences Dialog GUI Headers
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*/
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>
#include <QListWidgetItem>
#include <QStringListModel>
#include <QSortFilterProxyModel>
#include <QStandardItemModel>
#include "SleepLib/profiles.h"
2011-08-02 22:37:15 +00:00
namespace Ui {
class PreferencesDialog;
}
/*! \class MySortFilterProxyModel
\brief Enables the Graph tabs view to be filtered
*/
class MySortFilterProxyModel:public QSortFilterProxyModel
{
Q_OBJECT
public:
MySortFilterProxyModel(QObject *parent = 0);
protected:
//! \brief Simply extends filterAcceptRow to scan children as well
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
};
/*! \struct MaskProfile
\brief This in still a work in progress, and may be used in Unintentional leaks calculations.
*/
struct MaskProfile {
QString name;
EventDataType pflow[5][2];
};
/*! \class PreferencesDialog
\brief SleepyHead's Main Preferences Window
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:
explicit PreferencesDialog(QWidget *parent, Profile * _profile);
2011-08-02 22:37:15 +00:00
~PreferencesDialog();
//! \brief Save the current preferences, called when Ok button is clicked on
void Save();
//! \brief Updates the date text of the last time updates where checked
void RefreshLastChecked();
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);
void on_combineSlider_valueChanged(int value);
2011-08-03 03:09:57 +00:00
void on_IgnoreSlider_valueChanged(int value);
2011-08-03 03:09:57 +00:00
void on_checkForUpdatesButton_clicked();
void on_addImportLocation_clicked();
void on_removeImportLocation_clicked();
void on_graphView_activated(const QModelIndex &index);
void on_graphFilter_textChanged(const QString &arg1);
void graphModel_changed(QStandardItem * item);
void on_resetGraphButton_clicked();
//void on_genOpWidget_itemActivated(QListWidgetItem *item);
void on_maskTypeCombo_activated(int index);
2011-08-02 22:37:15 +00:00
private:
//! \brief Populates the Graph Model view with data from the Daily, Overview & Oximetry gGraphView objects
void resetGraphModel();
2011-08-02 22:37:15 +00:00
Ui::PreferencesDialog *ui;
Profile * profile;
QHash<int,QColor> m_new_colors;
QStringList importLocations;
QStringListModel *importModel;
MySortFilterProxyModel *graphFilterModel;
QStandardItemModel *graphModel;
QHash<QString,Preference> general;
2011-08-02 22:37:15 +00:00
};
2011-08-02 22:37:15 +00:00
#endif // PREFERENCESDIALOG_H