blob: 95350eb1334ede7315a7bccc8bf0ee5fe2041d10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/***************************************************************************************************
Copyright (C) 2024 The Qt Company Ltd.
SPDX-License-Identifier: BSD-3-Clause-Clear
***************************************************************************************************/
#include "addressbook.h"
#include "adddialog.h"
AddressBook::AddressBook(QWidget *parent)
: QWidget(parent)
{
ui.setupUi(this);
}
AddressBook::~AddressBook()
{
}
void AddressBook::on_addButton_clicked()
{
AddDialog dialog(this);
if (dialog.exec()) {
QString name = dialog.nameEdit->text();
QString email = dialog.emailEdit->text();
if (!name.isEmpty() && !email.isEmpty()) {
QListWidgetItem *item = new QListWidgetItem(name, ui.addressList);
item->setData(Qt::UserRole, email);
ui.addressList->setCurrentItem(item);
}
}
}
void AddressBook::on_addressList_currentItemChanged()
{
QListWidgetItem *curItem = ui.addressList->currentItem();
if (curItem) {
ui.nameLabel->setText("Name: " + curItem->text());
ui.emailLabel->setText("Email: " + curItem->data(Qt::UserRole).toString());
} else {
ui.nameLabel->setText("<No item selected>");
ui.emailLabel->clear();
}
}
void AddressBook::on_deleteButton_clicked()
{
QListWidgetItem *curItem = ui.addressList->currentItem();
if (curItem) {
int row = ui.addressList->row(curItem);
ui.addressList->takeItem(row);
delete curItem;
if (ui.addressList->count() > 0)
ui.addressList->setCurrentRow(0);
else
on_addressList_currentItemChanged();
}
}
|