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
main.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 <QApplication>
5#include <QTextEdit>
6
7#include "filterobject.h"
8
9int main(int argc, char *argv[])
10{
11 QApplication app(argc, argv);
12 QTextEdit editor;
15 editor.show();
16 return app.exec();
17}
void setFilteredObject(QObject *object)
[0]
The QApplication class manages the GUI application's control flow and main settings.
static int exec()
Enters the main event loop and waits until exit() is called, then returns the value that was set to e...
The QTextEdit class provides a widget that is used to edit and display both plain and rich text.
Definition qtextedit.h:27
int main()
[0]
GLint GLint GLint GLint GLint GLint GLint GLbitfield GLenum filter
QApplication app(argc, argv)
[0]