]> Shamusworld >> Repos - schematic/blobdiff - src/contacteditwidget.h
Added new classes, lots of new functionality.
[schematic] / src / contacteditwidget.h
diff --git a/src/contacteditwidget.h b/src/contacteditwidget.h
new file mode 100644 (file)
index 0000000..d9e1c46
--- /dev/null
@@ -0,0 +1,29 @@
+//
+// contacteditwidget.h: Editable vendor contact
+//
+// by James Hammons
+// (C) 2012 Underground Software
+//
+
+#ifndef __CONTACTEDITWIDGET_H__
+#define __CONTACTEDITWIDGET_H__
+
+#include <QtGui>
+
+class ContactEditWidget: public QWidget
+{
+       public:
+               ContactEditWidget(QWidget * parent = 0);
+
+       public:
+               QComboBox * field1;
+               QLineEdit * field2;
+               QLineEdit * field3;
+               QLineEdit * field4;
+               QLineEdit * field5;
+               QLineEdit * field6;
+               QLineEdit * field7;
+};
+
+#endif // __CONTACTEDITWIDGET_H__
+