FGx  1
messagebox.h
1 // -=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-
2 // FGx FlightGear Launcher // messagebox.h
3 // -=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-
4 // (c) 2010-2012
5 // Yves Sablonier, Pete Morgan
6 // Geoff McLane
7 // GNU GPLv2, see main.cpp and shipped licence.txt for further information
8 
9 #ifndef MESSAGEBOX_H
10 #define MESSAGEBOX_H
11 
12 #include <QMessageBox>
13 
14 class MessageBox : public QMessageBox
15 {
16 Q_OBJECT
17 public:
18  explicit MessageBox(QWidget *parent = 0);
19 
20  void showWindowMessage(QString alertMessage);
21 
22 
23 signals:
24 
25 public slots:
26 
27 };
28 
29 #endif // MESSAGEBOX_H
Definition: messagebox.h:14