forked from qt-creator/qt-creator
Change-Id: Ic11936fd2a6da2153a52e39249d49d174ffb8466 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
42 lines
820 B
C++
42 lines
820 B
C++
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include "layoutbuilder.h"
|
|
|
|
#include <QApplication>
|
|
|
|
using namespace Layouting;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Id textId;
|
|
|
|
Application app
|
|
{
|
|
resize(600, 400),
|
|
title("Hello World"),
|
|
|
|
Column {
|
|
TextEdit {
|
|
id(textId),
|
|
text("Hallo")
|
|
},
|
|
|
|
Row {
|
|
SpinBox {
|
|
onTextChanged([&](const QString &text) { setText(textId, text); })
|
|
},
|
|
|
|
Stretch(),
|
|
|
|
PushButton {
|
|
text("Quit"),
|
|
onClicked(QApplication::quit)
|
|
},
|
|
}
|
|
}
|
|
};
|
|
|
|
return app.exec(argc, argv);
|
|
}
|