You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
408 B
C
29 lines
408 B
C
8 years ago
|
#ifndef PAYDIALOG_H
|
||
|
#define PAYDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QDecDouble.hh>
|
||
|
|
||
|
namespace Ui {
|
||
|
class PayDialog;
|
||
|
}
|
||
|
|
||
|
class PayDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit PayDialog(QDecDouble total, QWidget *parent = 0);
|
||
|
~PayDialog();
|
||
|
|
||
|
private slots:
|
||
|
|
||
|
void on_recieved_valueChanged(double value);
|
||
|
|
||
|
private:
|
||
|
Ui::PayDialog *ui;
|
||
|
QDecDouble m_total;
|
||
|
};
|
||
|
|
||
|
#endif // PAYDIALOG_H
|