Ready to be packaged
[kitchenalert] / src / selectsounddialog.h
diff --git a/src/selectsounddialog.h b/src/selectsounddialog.h
new file mode 100644 (file)
index 0000000..6e7c77f
--- /dev/null
@@ -0,0 +1,53 @@
+/**************************************************************************
+        KitchenAlert
+
+        Copyright (C) 2010  Heli Hyvättinen
+        
+        This file is part of KitchenAlert.
+
+        Kitchen Alert is free software: you can redistribute it and/or modify
+        it under the terms of the GNU General Public License as published by
+        the Free Software Foundation, either version 3 of the License, or
+        (at your option) any later version.
+
+        This program is distributed in the hope that it will be useful,
+        but WITHOUT ANY WARRANTY; without even the implied warranty of
+        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+        GNU General Public License for more details.
+
+        You should have received a copy of the GNU General Public License
+        along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+**************************************************************************/
+
+
+
+
+
+#ifndef SELECTSOUNDDIALOG_H
+#define SELECTSOUNDDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+    class SelectSoundDialog;
+}
+
+class SelectSoundDialog : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit SelectSoundDialog(QWidget *parent = 0);
+    ~SelectSoundDialog();
+    QString getSoundFileName();
+    bool isDefaultSoundChecked();
+
+public slots:
+    void browse();
+
+private:
+    Ui::SelectSoundDialog *ui;
+};
+
+#endif // SELECTSOUNDDIALOG_H