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.
25 lines
470 B
25 lines
470 B
#ifndef SELLER_DIALOG_H |
|
#define SELLER_DIALOG_H |
|
|
|
#include "ui_sellerdialog.h" |
|
|
|
#include "sellermodel.h" |
|
|
|
#include <QDialog> |
|
|
|
class SellerDialog : public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
SellerDialog(QWidget* parent = nullptr, |
|
Qt::WindowFlags f = Qt::WindowTitleHint | Qt::WindowSystemMenuHint); |
|
|
|
private: |
|
void on_newButton_clicked(); |
|
void on_deleteButton_clicked(); |
|
virtual void accept() override; |
|
Ui::SellerDialog ui_; |
|
}; |
|
|
|
#endif |