26 lines
589 B
C++
26 lines
589 B
C++
#ifndef ELACALENDARPICKER_H
|
|
#define ELACALENDARPICKER_H
|
|
|
|
#include <QPushButton>
|
|
|
|
#include "stdafx.h"
|
|
class ElaCalendarPickerPrivate;
|
|
class ELA_EXPORT ElaCalendarPicker : public QPushButton
|
|
{
|
|
Q_OBJECT
|
|
Q_Q_CREATE(ElaCalendarPicker)
|
|
Q_PROPERTY_CREATE_Q_H(int, BorderRadius)
|
|
Q_PRIVATE_CREATE_Q_H(QDate, SelectedDate)
|
|
public:
|
|
explicit ElaCalendarPicker(QWidget* parent = nullptr);
|
|
~ElaCalendarPicker();
|
|
|
|
Q_SIGNALS:
|
|
Q_SIGNAL void selectedDateChanged(QDate date);
|
|
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent* event) override;
|
|
};
|
|
|
|
#endif // ELACALENDARPICKER_H
|