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.
|
#ifndef QTPCHECKBOX_H
|
|
#define QTPCHECKBOX_H
|
|
|
|
#include <QtWidgets\qcheckbox.h>
|
|
|
|
class QTpCheckBox : public QCheckBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QTpCheckBox(QWidget *parent);
|
|
~QTpCheckBox();
|
|
|
|
private Q_SLOTS:
|
|
void OnStateChanged(int nState);
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // QTPCHECKBOX_H
|