4b6986db32
Amends commit 723e331f0a
Pick-to: 6.6 6.5
Task-number: QTBUG-111228
Change-Id: Ib9a094ab432a80b8b2dbbbecb497dca13d23a553
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
36 lines
590 B
C++
36 lines
590 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QTreeWidget;
|
|
QT_END_NAMESPACE
|
|
|
|
//! [0]
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow();
|
|
|
|
public slots:
|
|
void open();
|
|
void saveAs();
|
|
void about();
|
|
#if QT_CONFIG(clipboard) && QT_CONFIG(contextmenu)
|
|
void onCustomContextMenuRequested(const QPoint &pos);
|
|
#endif
|
|
private:
|
|
void createMenus();
|
|
|
|
QTreeWidget *treeWidget;
|
|
};
|
|
//! [0]
|
|
|
|
#endif
|