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