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.
22 lines
331 B
C++
22 lines
331 B
C++
#ifndef QTPLISTWIDGET_H
|
|
#define QTPLISTWIDGET_H
|
|
|
|
#include <QListWidget>
|
|
|
|
class QTpListWidget : public QListWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QTpListWidget(QWidget *parent);
|
|
~QTpListWidget();
|
|
|
|
private slots:
|
|
void onCurrentRowChanged(int index);
|
|
void onItemSelectionChanged();
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // QTPLISTWIDGET_H
|