You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
389 B
C
24 lines
389 B
C
3 weeks ago
|
#ifndef CUIPUSHBUTTON_H
|
||
|
#define CUIPUSHBUTTON_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include<QPushButton>
|
||
|
|
||
|
class CUIConfig;
|
||
|
class CUI;
|
||
|
|
||
|
class CUIPushButton : public QPushButton
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit CUIPushButton(CUIConfig* conf, QVector<CUI*> &subCUI, QWidget *parent = nullptr);
|
||
|
|
||
|
private:
|
||
|
void iniUI(QVector<CUI*> &subCUI);
|
||
|
CUIConfig* conf;
|
||
|
signals:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // CUIPUSHBUTTON_H
|