转码工具页面功能

This commit is contained in:
taocong
2026-05-25 10:18:19 +08:00
commit 3db5fe7f13
107 changed files with 8591 additions and 0 deletions
@@ -0,0 +1,25 @@
#ifndef ELACALENDARPICKER_H
#define ELACALENDARPICKER_H
#include "ElaProperty.h"
#include <QDate>
#include <QPushButton>
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() override;
Q_SIGNALS:
Q_SIGNAL void selectedDateChanged(QDate date);
protected:
virtual void paintEvent(QPaintEvent* event) override;
};
#endif // ELACALENDARPICKER_H