OSCAR-code/preferencesdialog.h

38 lines
763 B
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 "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, Profile * _profile);
2011-08-02 22:37:15 +00:00
~PreferencesDialog();
void Save();
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
2011-08-02 22:37:15 +00:00
private:
Ui::PreferencesDialog *ui;
Profile * profile;
2011-08-02 22:37:15 +00:00
};
#endif // PREFERENCESDIALOG_H