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.
42 lines
666 B
C++
42 lines
666 B
C++
#ifndef SHOPFORM_H
|
|
#define SHOPFORM_H
|
|
|
|
#include <QWidget>
|
|
#include <QList>
|
|
#include "data/shop-data.h"
|
|
#include <autotablemodel.h>
|
|
|
|
namespace Ui {
|
|
class ShopForm;
|
|
}
|
|
|
|
class ShopForm : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ShopForm(QWidget *parent = 0);
|
|
~ShopForm();
|
|
void loadLast();
|
|
|
|
private slots:
|
|
void on_directSale_clicked();
|
|
|
|
void on_temporarySaveButton_clicked();
|
|
|
|
void on_saveButton_clicked();
|
|
|
|
void on_loadButton_clicked();
|
|
|
|
void onCountChanged();
|
|
|
|
private:
|
|
Ui::ShopForm *ui;
|
|
QSharedPointer<Voucher> m_voucher;
|
|
AutoTableModel<VoucherItem> *m_itemsModel;
|
|
|
|
void createVoucher();
|
|
};
|
|
|
|
#endif // SHOPFORM_H
|