parent
ee8c059441
commit
97d05c93dd
@ -1,12 +1,24 @@
|
||||
#include "pricedialog.h"
|
||||
|
||||
#include <cmath>
|
||||
|
||||
#include <QMessageBox>
|
||||
|
||||
PriceDialog::PriceDialog(QWidget* parent, Qt::WindowFlags f) : QDialog(parent, f)
|
||||
{
|
||||
ui_.setupUi(this);
|
||||
ui_.priceSpinBox->setFocus();
|
||||
}
|
||||
|
||||
int PriceDialog::getPrice() const
|
||||
int PriceDialog::getPrice() const { return static_cast<int>(ui_.priceSpinBox->value() * 100); }
|
||||
|
||||
void PriceDialog::accept()
|
||||
{
|
||||
return static_cast<int>(ui_.priceSpinBox->value() * 100);
|
||||
if (static_cast<int>(std::round(ui_.priceSpinBox->value() * 100.0L)) % 50 != 0) {
|
||||
QMessageBox(QMessageBox::Icon::Warning, "Falsche Preiseingabe",
|
||||
"Es sind 0,50 Cent-Schritte erlaubt", QMessageBox::StandardButton::Ok, this)
|
||||
.exec();
|
||||
} else {
|
||||
QDialog::accept();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue