diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 4aed2c8219774f5d797760606b8489a92ddc5163 (patch) | |
tree | 3f8c130f7d269626bf6a9447407ef6c35954426a /kfind/kdatecombo.h | |
download | tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.tar.gz tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kfind/kdatecombo.h')
-rw-r--r-- | kfind/kdatecombo.h | 49 |
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 |