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 QTPTABWIDGET_H
|
|
#define QTPTABWIDGET_H
|
|
|
|
#include <QtWidgets\qtabwidget.h>
|
|
|
|
class QTpTabWidget : public QTabWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QTpTabWidget(QWidget *parent);
|
|
~QTpTabWidget();
|
|
private Q_SLOTS:
|
|
void OnCurrentChanged(int index);
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // QTPTABWIDGET_H
|