Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
imagedialog.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4#include <QMessageBox>
5
6#include "imagedialog.h"
7
8//! [0]
9ImageDialog::ImageDialog(QWidget *parent)
10 : QDialog(parent)
11{
12 setupUi(this);
13 okButton->setAutoDefault(false);
14 cancelButton->setAutoDefault(false);
15//! [0]
16
17 colorDepthCombo->addItem(tr("2 colors (1 bit per pixel)"));
18 colorDepthCombo->addItem(tr("4 colors (2 bits per pixel)"));
19 colorDepthCombo->addItem(tr("16 colors (4 bits per pixel)"));
20 colorDepthCombo->addItem(tr("256 colors (8 bits per pixel)"));
21 colorDepthCombo->addItem(tr("65536 colors (16 bits per pixel)"));
22 colorDepthCombo->addItem(tr("16 million colors (24 bits per pixel)"));
23
24 connect(cancelButton, &QAbstractButton::clicked, this, &QDialog::reject);
25//! [1]
26 connect(okButton, &QAbstractButton::clicked, this, &ImageDialog::checkValues);
27}
28//! [1]
29
30//! [2]
31void ImageDialog::checkValues()
32{
33 if (nameLineEdit->text().isEmpty()) {
34 QMessageBox::information(this, tr("No Image Name"),
35 tr("Please supply a name for the image."), QMessageBox::Cancel);
36 } else {
37 accept();
38 }
39}
40//! [2]