blob: 0c6e814754277f469d9599095215ac4e136ca162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <QtGui>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget *window = new QWidget();
//! [create, lay out widgets and show]
QLabel *label = new QLabel(tr("Name:"));
QLineEdit *lineEdit = new QLineEdit();
QHBoxLayout *layout = new QHBoxLayout();
layout->addWidget(label);
layout->addWidget(lineEdit);
window->setLayout(layout);
//! [create, lay out widgets and show]
window->setWindowTitle(tr("Window layout"));
window->show();
return app.exec();
}
|