// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef WINDOW_H #define WINDOW_H #include #include #include #include #include class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow(QWidget *parent = nullptr); public slots: void updateSelection(const QItemSelection &selected, const QItemSelection &deselected); void changeCurrent(const QModelIndex ¤t, const QModelIndex &previous); private: QAbstractItemModel *model; QItemSelectionModel *selectionModel; QTableView *table; }; #endif