summaryrefslogtreecommitdiffstats
path: root/kfind/kdatecombo.h
diff options
context:
space:
mode:
Diffstat (limited to 'kfind/kdatecombo.h')
-rw-r--r--kfind/kdatecombo.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/kfind/kdatecombo.h b/kfind/kdatecombo.h
new file mode 100644
index 000000000..12f66174a
--- /dev/null
+++ b/kfind/kdatecombo.h
@@ -0,0 +1,49 @@
+/***********************************************************************
+ *
+ * kdatecombo.h
+ *
+ ***********************************************************************/
+
+#ifndef KDATECOMBO_H
+#define KDATECOMBO_H
+
+#include <qwidget.h>
+#include <qcombobox.h>
+#include <qdatetime.h>
+
+/**
+ *@author Beppe Grimaldi
+ */
+
+class KDatePicker;
+class KPopupFrame;
+
+class KDateCombo : public QComboBox {
+ Q_OBJECT
+
+public:
+ KDateCombo(QWidget *parent=0, const char *name=0);
+ KDateCombo(const QDate & date, QWidget *parent=0, const char *name=0);
+ ~KDateCombo();
+
+ QDate & getDate(QDate *currentDate);
+ bool setDate(const QDate & newDate);
+
+private:
+ KPopupFrame * popupFrame;
+ KDatePicker * datePicker;
+
+ void initObject(const QDate & date, QWidget *parent, const char *name);
+
+ QString date2String(const QDate &);
+ QDate & string2Date(const QString &, QDate * );
+
+protected:
+ bool eventFilter (QObject*, QEvent*);
+ virtual void mousePressEvent (QMouseEvent * e);
+
+protected slots:
+ void dateEnteredEvent(QDate d=QDate());
+};
+
+#endif