Implemented new features:
[someplayer] / src / timerdialog.h
diff --git a/src/timerdialog.h b/src/timerdialog.h
new file mode 100644 (file)
index 0000000..bc56b10
--- /dev/null
@@ -0,0 +1,30 @@
+#ifndef TIMERDIALOG_H
+#define TIMERDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+    class TimerDialog;
+}
+
+class TimerDialog : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit TimerDialog(QWidget *parent = 0);
+    ~TimerDialog();
+    void getTime(int *, int *, int *);
+    bool timerDisabled();
+
+public slots:
+    void init();
+    void setTime (int, int, int);
+    void showDisable();
+
+
+private:
+    Ui::TimerDialog *ui;
+};
+
+#endif // TIMERDIALOG_H