]> Shamusworld >> Repos - schematic/blob - src/contactwidget.h
Move DB access to NoteDialog class, new AlertDialog class.
[schematic] / src / contactwidget.h
1 //
2 // contactwidget.h: Vendor contact display
3 //
4 // by James Hammons
5 // (C) 2012 Underground Software
6 //
7
8 #ifndef __CONTACTWIDGET_H__
9 #define __CONTACTWIDGET_H__
10
11 #include <QtGui>
12
13 class ContactWidget: public QWidget
14 {
15         public:
16                 ContactWidget(QWidget * parent = 0);
17
18                 void SetFields(QString, QString, QString, QString, QString, QString, QString);
19
20         public:
21                 QLabel * field1;
22                 QLabel * field2;
23                 QLabel * field3;
24                 QLabel * field4;
25                 QLabel * field5;
26                 QLabel * field6;
27                 QLabel * field7;
28 };
29
30 #endif  // __CONTACTWIDGET_H__
31