]> Shamusworld >> Repos - schematic/blobdiff - src/newvendordialog.h
Added a bunch of new functionality
[schematic] / src / newvendordialog.h
diff --git a/src/newvendordialog.h b/src/newvendordialog.h
new file mode 100644 (file)
index 0000000..e224bb1
--- /dev/null
@@ -0,0 +1,39 @@
+#ifndef __NEWVENDORDIALOG_H__
+#define __NEWVENDORDIALOG_H__
+
+#include <QtGui>
+
+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__