Clementine-audio-player-Mac.../src/settingsdialog.h

33 lines
542 B
C
Raw Normal View History

2010-02-03 17:17:04 +01:00
#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H
#include <QDialog>
#include "ui_settingsdialog.h"
class LibraryDirectoryModel;
class SettingsDialog : public QDialog {
Q_OBJECT
public:
SettingsDialog(QWidget* parent = 0);
void SetLibraryDirectoryModel(LibraryDirectoryModel* model);
// QDialog
void accept();
// QWidget
void showEvent(QShowEvent* e);
2010-02-03 17:17:04 +01:00
private slots:
void CurrentTextChanged(const QString& text);
2010-02-03 18:21:25 +01:00
void NotificationTypeChanged();
2010-02-03 17:17:04 +01:00
private:
Ui::SettingsDialog ui_;
};
#endif // SETTINGSDIALOG_H