fbf3dc97cb675f3c5cac6d9f1de0a59e2beab146
[aspt.git] / staffmember.h
1 /*******************************************************************
2 Jan Cermak | johniez | aspt.johniez.com
3 Creative Commons 2.5 Attribution-NonCommercial-NoDerivs 2.5 license
4 http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode
5 *******************************************************************/
6
7 #ifndef STAFFMEMBER__H__
8 #define STAFFMEMBER__H__
9
10 #include <QWidget>
11 #include <QTabWidget>
12 #include <QVBoxLayout>
13 #include <QPushButton>
14 #include <QLabel>
15
16 struct StaffMemberStruct {
17         QString id;
18         QString role;
19         QString name;
20         QString wage;
21         QString contr;
22         QString age;
23         QString birth;
24         QString inservice;
25         QString course;
26         QString rating;
27 };
28
29 extern StaffMemberStruct staff[];
30 extern int staffCnt;
31
32 class StaffMember: public QWidget {
33         Q_OBJECT
34         QVBoxLayout *mainLayout;
35         QLabel *player;
36         int i;
37 public:
38         StaffMember(int idx, QWidget *parent = 0);
39         ~StaffMember();
40 };
41
42 #endif