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 QTPTABLEWIDGET_H
|
|
#define QTPTABLEWIDGET_H
|
|
|
|
#include <QTableWidget>
|
|
|
|
class QTpTableWidget : public QTableWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QTpTableWidget(QWidget *parent);
|
|
~QTpTableWidget();
|
|
private Q_SLOTS:
|
|
void onItemSelectionChanged();
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // QTPTABLEWIDGET_H
|