FactDev  0.1
dialogaddcustomer.h
1 #ifndef DIALOGADDCUSTOMER_H
2 #define DIALOGADDCUSTOMER_H
3 
4 #include <QDialog>
5 #include "models/customer.h"
6 
7 using namespace Models;
8 
9 namespace Ui {
10 class DialogAddCustomer;
11 }
12 
13 namespace Gui {
14 namespace Dialogs {
15 
20 class DialogAddCustomer : public QDialog
21 {
22  Q_OBJECT
23 
24 public:
31  explicit DialogAddCustomer(int id = 0, QWidget *parent = 0);
33 
38  void fillFields();
39 
44  void accept();
45 
50  void reject();
51 public slots:
55  void checkFields();
56 
57 private:
58  QSharedPointer<Models::Customer> _custom;
59  Ui::DialogAddCustomer *ui;
60 };
61 }
62 }
63 #endif // DIALOGADDCUSTOMER_H
The DialogAddCustomer class Window to add or modify a Customer.
Definition: dialogaddcustomer.h:20