]> Shamusworld >> Repos - schematic/blobdiff - src/addresswidget.h
Added new classes, lots of new functionality.
[schematic] / src / addresswidget.h
diff --git a/src/addresswidget.h b/src/addresswidget.h
new file mode 100644 (file)
index 0000000..afb477c
--- /dev/null
@@ -0,0 +1,29 @@
+//
+// addresswidget.h: Vendor address display
+//
+// by James Hammons
+// (C) 2012 Underground Software
+//
+
+#ifndef __ADDRESSWIDGET_H__
+#define __ADDRESSWIDGET_H__
+
+#include <QtGui>
+
+class AddressWidget: public QWidget
+{
+       public:
+               AddressWidget(QWidget * parent = 0);
+
+               void SetFields(QString, QString, QString, QString, QString);
+
+       public:
+               QLabel * field1;
+               QLabel * field2;
+               QLabel * field3;
+               QLabel * field4;
+               QLabel * field5;
+};
+
+#endif // __ADDRESSWIDGET_H__
+