yhkylin-backup-tools/kybackup/component/mypushbutton.h

17 lines
270 B
C
Raw Normal View History

2021-10-26 09:24:05 +08:00
#ifndef MYPUSHBUTTON_H
#define MYPUSHBUTTON_H
#include <QPushButton>
class MyPushButton : public QPushButton
{
Q_OBJECT
public:
MyPushButton(QWidget* parent = nullptr);
virtual ~MyPushButton();
2021-12-01 15:12:38 +08:00
void setFontSize(int size);
2021-10-26 09:24:05 +08:00
};
#endif // MYPUSHBUTTON_H