KIMA2 ist ein kleines Kassenprogramm für Kindersachenmärkte.
https://www.rustysoft.de/?01_kima2
You can not 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
513 B
29 lines
513 B
#ifndef REPORT_DIALOG_H |
|
#define REPORT_DIALOG_H |
|
|
|
#include "ui_reportdialog.h" |
|
|
|
#include "reportmodel.h" |
|
|
|
#include <marketplace.h> |
|
|
|
#include <QDialog> |
|
|
|
class ReportDialog : public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
ReportDialog(QWidget* parent = nullptr, |
|
Qt::WindowFlags f = Qt::WindowTitleHint | Qt::WindowSystemMenuHint); |
|
|
|
private slots: |
|
void onExportCsvButtonClicked(); |
|
|
|
private: |
|
Ui::ReportDialog ui_; |
|
Marketplace* market_; |
|
std::unique_ptr<ReportModel> model_; |
|
}; |
|
|
|
#endif |