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.cpp
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#include "window.h"
5
9
11{
12 // Cannot be called by the meta-object system.
13 show();
14}
15
17{
18 // Can be called by the meta-object system.
19 show();
20}
void show()
Shows the widget and its child widgets.
Definition qwidget.cpp:7875
void normalMethod()
Definition window.cpp:10
Q_INVOKABLE void invokableMethod()
Definition window.cpp:16
Window()
Definition window.cpp:6