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