Implement layer move functionality using buttons

This commit is contained in:
Dan Paulat 2023-10-16 22:29:35 -05:00
parent b45ec9dfa5
commit 5d06f6bc21
3 changed files with 190 additions and 39 deletions

View file

@ -66,6 +66,11 @@ public:
bool removeRows(int row,
int count,
const QModelIndex& parent = QModelIndex()) override;
bool moveRows(const QModelIndex& sourceParent,
int sourceRow,
int count,
const QModelIndex& destinationParent,
int destinationChild) override;
public slots:
void HandlePlacefileRemoved(const std::string& name);