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 <QAbstractItemModel>
10#include <QWidget>
11#include <QTableView>
12
13class MainWindow : public QMainWindow
14{
16public:
18
19private slots:
20 void fillSelection();
21 void clearSelection();
22 void selectAll();
23
24private:
25 QAbstractItemModel *model;
26 QItemSelectionModel *selectionModel;
28};
29
30#endif
MainWindow(QWidget *parent=nullptr)
The QMainWindow class provides a main application window.
Definition qmainwindow.h:25
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