mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
31 lines
857 B
C++
31 lines
857 B
C++
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#include <QtWidgets>
|
||
|
#include "addressbook.h"
|
||
|
|
||
|
//! [constructor and input fields]
|
||
|
AddressBook::AddressBook(QWidget *parent)
|
||
|
: QWidget(parent)
|
||
|
{
|
||
|
QLabel *nameLabel = new QLabel(tr("Name:"));
|
||
|
nameLine = new QLineEdit;
|
||
|
|
||
|
QLabel *addressLabel = new QLabel(tr("Address:"));
|
||
|
addressText = new QTextEdit;
|
||
|
//! [constructor and input fields]
|
||
|
|
||
|
//! [layout]
|
||
|
QGridLayout *mainLayout = new QGridLayout;
|
||
|
mainLayout->addWidget(nameLabel, 0, 0);
|
||
|
mainLayout->addWidget(nameLine, 0, 1);
|
||
|
mainLayout->addWidget(addressLabel, 1, 0, Qt::AlignTop);
|
||
|
mainLayout->addWidget(addressText, 1, 1);
|
||
|
//! [layout]
|
||
|
|
||
|
//![setting the layout]
|
||
|
setLayout(mainLayout);
|
||
|
setWindowTitle(tr("Simple Address Book"));
|
||
|
}
|
||
|
//! [setting the layout]
|