2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-05-07 20:57:49 +00:00
|
|
|
#include <QtWidgets>
|
2011-04-27 10:05:43 +00:00
|
|
|
#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]
|
|
|
|
|
2013-03-14 23:42:15 +00:00
|
|
|
//![setting the layout]
|
2011-04-27 10:05:43 +00:00
|
|
|
setLayout(mainLayout);
|
|
|
|
setWindowTitle(tr("Simple Address Book"));
|
|
|
|
}
|
|
|
|
//! [setting the layout]
|