Added a find items dialog to select items based on if they contain a specific text.

This commit is contained in:
2026-01-12 15:02:34 +01:00
parent e915846b8a
commit 232b9ceb78
2 changed files with 30 additions and 11 deletions

View File

@ -60,13 +60,14 @@ class MainWindow : public QMainWindow {
void importCSV();
void exportCSV();
/// 'Edit' slots
void findItems();
private:
Ui::MainWindow* ui;
// GenericCore* m_core;
unique_ptr<GenericCore> m_core;
shared_ptr<TableModel> m_tableModel;
shared_ptr<GeneralSortFilterModel> m_sortModel;
shared_ptr<GeneralSortFilterModel> m_proxyModel;
QUndoStack* m_modelUndoStack;
unique_ptr<QUndoView> m_modelUndoView;