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

34 lines
613 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(QWidget *parent = 0);
~ReceiptSaveForm();
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;
};
#endif // RECEIPTSAVEFORM_H