mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
935f47eeed
after changing the date closes the popup and sets the new date. * ESC closes the popup without setting a new date. svn path=/trunk/kdebase/kfind/; revision=314171
49 lines
1 KiB
C++
49 lines
1 KiB
C++
/***********************************************************************
|
|
*
|
|
* 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
|