compare: add search and replace.
This commit is contained in:
21
Gui/Control/cpTableWidget.h
Normal file
21
Gui/Control/cpTableWidget.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef CP_TABLEWIDET_H
|
||||
#define CP_TABLEWIDET_H
|
||||
|
||||
#include <QTableWidget>
|
||||
#include <QDropEvent>
|
||||
|
||||
class CpTableWidget : public QTableWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit CpTableWidget(QWidget* parent = nullptr);
|
||||
~CpTableWidget() override;
|
||||
|
||||
protected:
|
||||
void dragEnterEvent(QDragEnterEvent* event);
|
||||
|
||||
protected:
|
||||
QPoint startPos_;
|
||||
};
|
||||
|
||||
#endif // CP_TABLEWIDET_H
|
||||
Reference in New Issue
Block a user