compare: add search and replace.

This commit is contained in:
2025-06-18 10:42:53 +08:00
parent 95e4d322e1
commit 3248713cea
4 changed files with 51 additions and 1 deletions

View 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