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