]> Shamusworld >> Repos - schematic/blob - src/newvendordialog.h
e224bb170982eb2b8449767ed3fa717c9832eb1a
[schematic] / src / newvendordialog.h
1 #ifndef __NEWVENDORDIALOG_H__
2 #define __NEWVENDORDIALOG_H__
3
4 #include <QtGui>
5
6 class NewVendorDialog: public QDialog
7 {
8         Q_OBJECT
9
10         public:
11                 NewVendorDialog(QWidget * parent = 0);
12                 ~NewVendorDialog();
13
14         private:
15                 QDialogButtonBox * buttonBox;
16
17         public:
18                 QLineEdit * edit1;
19                 QComboBox * combo1;
20                 QCheckBox * checkbox1;
21
22                 QLineEdit * edit2;
23                 QLineEdit * edit3;
24                 QLineEdit * edit4;
25                 QLineEdit * edit5;
26                 QLineEdit * edit6;
27
28                 QComboBox * combo2;
29                 QLineEdit * edit7;
30                 QLineEdit * edit8;
31                 QLineEdit * edit9;
32                 QLineEdit * edit10;
33                 QLineEdit * edit11;
34                 QLineEdit * edit12;
35
36                 QListWidget * list;
37 };
38
39 #endif  // __NEWVENDORDIALOG_H__