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.
prodejna/shop/receiptsaveform.h

42 lines
805 B
C

#ifndef RECEIPTSAVEFORM_H
#define RECEIPTSAVEFORM_H
#include <QDialog>
#include <objectbinder.h>
#include <autotablemodel.h>
#include "data/voucher.h"
namespace Ui {
class ReceiptSaveForm;
}
class ReceiptSaveForm : public QDialog
{
Q_OBJECT
public:
explicit ReceiptSaveForm(QSharedPointer<Voucher> voucher, QWidget *parent = 0);
~ReceiptSaveForm();
VoucherPtr selectedVoucher();
bool saveAsNew();
private slots:
void on_lineEdit_textChanged(const QString &text);
void on_radioAdd_toggled(bool checked);
private:
Ui::ReceiptSaveForm *ui;
ObjectBinder m_binder;
AutoTableModel<Voucher> *m_voucherModel;
bool m_saveAsNew;
VoucherPtr m_voucher;
// QDialog interface
public slots:
virtual void accept() override;
};
#endif // RECEIPTSAVEFORM_H