Address Book 2 - Adding Addresses
The next step to creating our basic address book application is to allow a little bit of user interaction.

We will provide a push button that the user can click to add a new contact and push buttons to allow new contact Also, some form of data structure is needed to store these contacts in an organized way.Defining the AddressBook Class
Now that we have the labels and input fields set up, we add push buttons to complete the process of adding a contact. This means that our addressbook.h file now has three QPushButton objects declared and three corresponding public slots.
Missing snippet: tutorials/addressbook/part2/addressbook.h.
A slot is a function that responds to a particular signal. We will discuss this concept in further detail when implementing the AddressBook class. However, for an overview of Qt's signals and slots concept, you can refer to the Signals and Slots document. Three QPushButton objects: addButton, submitButton and cancelButton, are now included in our private variable declarations, along with nameLine and addressText from the last chapter.
Missing snippet: tutorials/addressbook/part2/addressbook.h.
We need a container to store our address book contacts, so that we can traverse and display them. A QMap object, contacts, is used for this purpose as it holds a key-value pair: the contact's name as the key, and the contact's address as the value.
Missing snippet: tutorials/addressbook/part2/addressbook.h.
We also declare two private QString objects, oldName and oldAddress. These objects are needed to hold the name and address of the contact that was last displayed, before the user clicked "Add". So, when the user clicks "Cancel", we can revert to displaying the details of the last contact.Implementing the AddressBook Class
Within the constructor of AddressBook, we set the nameLine and addressText to read-only, so that we can only display but not edit existing cotact details....
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
...
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
Then, we instantiate our push buttons: addButton, submitButton, and cancelButton.
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
The addButton is displayed by invoking the show() function, while the submitButton and cancelButton are hidden by invoking hide(). These two push buttons will only be displayed when the user clicks "Add" and this is handled by the addContact() function discussed below.
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
We connect the push buttons' clicked() signal to their respective slots. The figure below illustrates this.

Next, we arrange our push buttons neatly to the right of our address book widget, using a QVBoxLayout to line them up vertically.
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
The addStretch() function is used to ensure the push buttons are not evenly spaced, but arranged closer to the top of the widget. The figure below shows the difference between using addStretch() and not using it.

We then add buttonLayout1 to mainLayout, using addLayout(). This gives us nested layouts as buttonLayout1 is now a child of mainLayout.
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
Our layout coordinates now look like this:

In the addContact() function, we store the last displayed contact details in oldName and oldAddress. Then we clear these input fields and turn off the read-only mode. The focus is set on nameLine and we display submitButton and cancelButton.
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
The submitContact() function can be divided into three parts: - We extract the contact's details from nameLine and addressText and store them in QString objects. We also validate to make sure that the user did not click "Submit" with empty input fields; otherwise, a QMessageBox is displayed to remind the user for a name and address.
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
- We then proceed to check if the contact already exists. If it does not exist, we add the contact to contacts and we display a QMessageBox to inform the user that the contact has been added.
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
If the contact already exists, again, we display a QMessageBox to inform the user about this, to prevent the user from adding duplicate contacts. Our contacts object is based on key-value pairs of name and addresses, hence, we want to ensure that key is unique.
- Once we have handled both cases mentioned above, we restore the push buttons to their normal state with the following code:
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
The screenshot below shows the QMessageBox object we use to display information messages to the user.

The cancel() function restores the last displayed contact details and enables addButton, as well as hides submitButton and cancelButton.
Missing snippet: tutorials/addressbook/part2/addressbook.cpp.
The general idea to add a contact is to give the user the flexibility to click "Submit" or "Cancel" at any time. The flowchart below further explains this concept:
