blob: ee8d045ee36172546397d80b95457270a50d6b0a (
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
|
#ifndef __MIAV_INFO_GUI_H__
#define __MIAV_INFO_GUI_H__
#define TXT_ERROR_TITLE "Der er opst�et en fejl!"
#define TXT_WARNING_TITLE "Advarsel"
#define TXT_INFO_TITLE "Information"
#include "info.h"
#include "miav_config.h"
#include <QWidget>
#include <QApplication>
#include <QEvent>
#include <pthread.h>
#include <semaphore.h>
#include "messagebox.h"
#define TYPE_SHOW_MESSAGEBOX 65432
class ShowMessageEvent : public QEvent {
public:
ShowMessageEvent(QString message, QString title, msg_icon icon) :
QEvent((QEvent::Type)TYPE_SHOW_MESSAGEBOX),
m(message), t(title), i(icon) {}
QString message() const { return m; }
QString title() const { return t; }
msg_icon icon() const { return i; }
private:
QString m;
QString t;
msg_icon i;
};
class InfoEventHandler : public QObject {
protected:
bool eventFilter( QObject *o, QEvent *e );
};
class InfoGui: public Info {
public:
InfoGui(MiavConfig *config);
~InfoGui();
void error(char* fmt, ...);
void warn(char* fmt, ...);
void info(char* fmt, ...);
private:
void showmsg(char *msg, char *title, msg_icon icon);
};
#endif
|