blob: dfba59bc114f3d35cf48771efc19c10f018ef71d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
#ifndef __MIAV_CPRQUERYDIALOG_H__
#define __MIAV_CPRQUERYDIALOG_H__
#include <config.h>
#ifdef USE_GUI
#define NAME_NOT_AVAILABLE_TITLE "Databasefejl"
#define NAME_NOT_AVAILABLE "Kunne ikke sl� navn op i cpr-database."
#define CONFIRM_INVALID_CPR_TITLE "Bekr�ft"
#define CONFIRM_INVALID_CPR "Ugyldigt CPR nummer, brug det alligevel?"
#include <qdialog.h>
#include <qpushbutton.h>
#include <qlayout.h>
#include <qlabel.h>
#include <qfont.h>
#include <qwidget.h>
#include <qlayout.h>
#include <qpushbutton.h>
#include <qdialog.h>
#include <qlabel.h>
#include <qsocket.h>
#include <qtextedit.h>
#include <qstring.h>
#include <qwidget.h>
#include <qevent.h>
#include <qpushbutton.h>
#include <qwidget.h>
#include <qlayout.h>
#include <qdialog.h>
#include <string>
using namespace std;
#include <qdialog.h>
#include <qlabel.h>
#include <qsocket.h>
#include <qtimer.h>
#include <qstatusbar.h>
#include "messagebox.h"
class CPRQueryDialog : public QDialog {
Q_OBJECT
public:
CPRQueryDialog(QLabel *lcpr,
QLabel *lname,
QWidget * parent = 0,
const char * name = 0,
QStatusBar *status = NULL);
~CPRQueryDialog();
public slots:
void bcancel_clicked();
void bedit_clicked();
void remove_digit();
void remove_all();
void insert_digit(int value);
void cprSocket_readyRead();
void cprSocket_connected();
void cprSocket_error(int errnum);
void cprSocket_timeout();
private:
QStatusBar *statusbar;
QLabel *lbl_cpr;
QLabel *lbl_name;
QSocket *cprSocket;
char cpr[12];
char internalCpr[11];
void verifycpr(char *cpr);
int test_cpr(const char *s);
string *CPR_HOST;
int CPR_PORT;
int CPR_TIMEOUT;
signals:
void bbs_clicked();
void bca_clicked();
void number_clicked(int);
public slots:
void b_1_clicked();
void b_2_clicked();
void b_3_clicked();
void b_4_clicked();
void b_5_clicked();
void b_6_clicked();
void b_7_clicked();
void b_8_clicked();
void b_9_clicked();
void b_0_clicked();
void b_b_clicked();
void b_c_clicked();
private:
void b_clicked(int value);
QPushButton *createButton(QWidget *parent, const char *text, int value);
int digits;
QTimer *timer;
};
#endif
#endif
|