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
8ImageDialog::ImageDialog(QWidget *parent)
9 : QDialog(parent)
10{
11 setupUi(this);
12 okButton->setAutoDefault(false);
13 cancelButton->setAutoDefault(false);
14
15 colorDepthCombo->addItem(tr("2 colors (1 bit per pixel)"));
16 colorDepthCombo->addItem(tr("4 colors (2 bits per pixel)"));
17 colorDepthCombo->addItem(tr("16 colors (4 bits per pixel)"));
18 colorDepthCombo->addItem(tr("256 colors (8 bits per pixel)"));
19 colorDepthCombo->addItem(tr("65536 colors (16 bits per pixel)"));
20 colorDepthCombo->addItem(tr("16 million colors (24 bits per pixel)"));
21
22 connect(cancelButton, &QAbstractButton::clicked, this, &QDialog::reject);
23}
24
25void ImageDialog::on_okButton_clicked()
26{
27 if (nameLineEdit->text().isEmpty()) {
28 QMessageBox::information(this, tr("No Image Name"),
29 tr("Please supply a name for the image."), QMessageBox::Cancel);
30 } else {
31 accept();
32 }
33}