2011-08-05 00:12:23 +00:00
|
|
|
/*
|
|
|
|
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>
|
2011-09-08 09:50:05 +00:00
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
|
2011-08-02 22:37:15 +00:00
|
|
|
namespace Ui {
|
|
|
|
class PreferencesDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PreferencesDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit PreferencesDialog(QWidget *parent = 0);
|
|
|
|
~PreferencesDialog();
|
2011-09-08 09:50:05 +00:00
|
|
|
void Save();
|
|
|
|
protected:
|
|
|
|
Profile * profile;
|
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-08 09:50:05 +00:00
|
|
|
void on_combineSlider_sliderMoved(int position);
|
2011-08-03 03:09:57 +00:00
|
|
|
|
2011-09-08 09:50:05 +00:00
|
|
|
void on_IgnoreSlider_sliderMoved(int position);
|
2011-08-03 03:09:57 +00:00
|
|
|
|
2011-08-02 22:37:15 +00:00
|
|
|
private:
|
|
|
|
Ui::PreferencesDialog *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PREFERENCESDIALOG_H
|