/* SleepyHead Preferences Dialog GUI Headers Copyright (c)2011 Mark Watkins License: GPL */ #ifndef PREFERENCESDIALOG_H #define PREFERENCESDIALOG_H #include #include #include "SleepLib/profiles.h" namespace Ui { class PreferencesDialog; } class PreferencesDialog : public QDialog { Q_OBJECT public: explicit PreferencesDialog(QWidget *parent, Profile * _profile); ~PreferencesDialog(); void Save(); private slots: void on_eventTable_doubleClicked(const QModelIndex &index); void on_combineSlider_valueChanged(int value); void on_IgnoreSlider_valueChanged(int value); private: Ui::PreferencesDialog *ui; Profile * profile; }; #endif // PREFERENCESDIALOG_H