X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fnewvendordialog.h;fp=src%2Fnewvendordialog.h;h=e224bb170982eb2b8449767ed3fa717c9832eb1a;hb=f3116511d09acfd5b32d3412c82c4337d89f2ad9;hp=0000000000000000000000000000000000000000;hpb=6c9ba10f64c4880fd4c58527c462ef1f7841bf17;p=schematic diff --git a/src/newvendordialog.h b/src/newvendordialog.h new file mode 100644 index 0000000..e224bb1 --- /dev/null +++ b/src/newvendordialog.h @@ -0,0 +1,39 @@ +#ifndef __NEWVENDORDIALOG_H__ +#define __NEWVENDORDIALOG_H__ + +#include + +class NewVendorDialog: public QDialog +{ + Q_OBJECT + + public: + NewVendorDialog(QWidget * parent = 0); + ~NewVendorDialog(); + + private: + QDialogButtonBox * buttonBox; + + public: + QLineEdit * edit1; + QComboBox * combo1; + QCheckBox * checkbox1; + + QLineEdit * edit2; + QLineEdit * edit3; + QLineEdit * edit4; + QLineEdit * edit5; + QLineEdit * edit6; + + QComboBox * combo2; + QLineEdit * edit7; + QLineEdit * edit8; + QLineEdit * edit9; + QLineEdit * edit10; + QLineEdit * edit11; + QLineEdit * edit12; + + QListWidget * list; +}; + +#endif // __NEWVENDORDIALOG_H__