OSCAR-code/preferencesdialog.h

40 lines
772 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>
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-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-08-03 03:09:57 +00:00
2011-08-05 07:52:32 +00:00
void on_timeEdit_editingFinished();
2011-08-03 03:09:57 +00:00
2011-08-05 07:52:32 +00:00
void on_memoryHogCheckbox_toggled(bool checked);
void on_combineSlider_valueChanged(int value);
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;
};
#endif // PREFERENCESDIALOG_H