summaryrefslogtreecommitdiffstats
path: root/karm/ktimewidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'karm/ktimewidget.h')
-rw-r--r--karm/ktimewidget.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/karm/ktimewidget.h b/karm/ktimewidget.h
new file mode 100644
index 000000000..9c6eb3b42
--- /dev/null
+++ b/karm/ktimewidget.h
@@ -0,0 +1,25 @@
+#ifndef KARM_K_TIME_WIDGET_H
+#define KARM_K_TIME_WIDGET_H
+
+class QLineEdit;
+class QWidget;
+
+class KarmLineEdit;
+
+/**
+ * Widget used for entering minutes and seconds with validation.
+ */
+
+class KArmTimeWidget : public QWidget
+{
+ public:
+ KArmTimeWidget( QWidget* parent = 0, const char* name = 0 );
+ void setTime( long minutes );
+ long time() const;
+
+ private:
+ QLineEdit *_hourLE;
+ KarmLineEdit *_minuteLE;
+};
+
+#endif // KARM_K_TIME_WIDGET_H