Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
window.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4#ifndef WINDOW_H
5#define WINDOW_H
6
7#include <QItemSelection>
8#include <QMainWindow>
9#include <QModelIndex>
10#include <QWidget>
11#include <QTableView>
12
13class MainWindow : public QMainWindow
14{
16public:
18
19public slots:
20 void updateSelection(const QItemSelection &selected,
21 const QItemSelection &deselected);
22 void changeCurrent(const QModelIndex &current, const QModelIndex &previous);
23
24private:
25 QAbstractItemModel *model;
26 QItemSelectionModel *selectionModel;
28};
29
30#endif
MainWindow(QWidget *parent=nullptr)
void changeCurrent(const QModelIndex &current, const QModelIndex &previous)
void updateSelection(const QItemSelection &selected, const QItemSelection &deselected)
[0]
Definition window.cpp:40
\inmodule QtCore
The QMainWindow class provides a main application window.
Definition qmainwindow.h:25
\inmodule QtCore
QObject * parent() const
Returns a pointer to the parent object.
Definition qobject.h:346
The QTableView class provides a default model/view implementation of a table view.
Definition qtableview.h:18
The QWidget class is the base class of all user interface objects.
Definition qwidget.h:99
GLenum GLenum GLsizei void * table
#define Q_OBJECT
#define slots