1 /**
2 *  Copyright Mikael H�gdahl - triyana@users.sourceforge.net
3 *
4 *  This source is distributed under the terms of the Q Public License version 1.0,
5 *  created by Trolltech (www.trolltech.com).
6 */
7 
8 #ifndef InfoDlg_h
9 #define InfoDlg_h
10 
11 #include <fl/Fl_Dialog.h>
12 #include <FL/Fl_Return_Button.H>
13 #include <FL/Fl_Browser.H>
14 
15 
16 
17 /**
18 *  Showe info for user
19 */
20 class InfoDlg : public Fl_Dialog {
21 public:
22                             InfoDlg (const char* label, const char* text);
23 
cb1()24     void                    cb1 () {aRetVal = 0;}
25 
26 private:
27     Fl_Return_Button*       aClose;
28     Fl_Browser*             aInfo;
29 };
30 
31 #endif
32