1 /********************************************************************************
2 *                                                                               *
3 *                            H e l p   W i n d o w                              *
4 *                                                                               *
5 *********************************************************************************
6 * Copyright (C) 1998,2005 by Jeroen van der Zijp.   All Rights Reserved.        *
7 *********************************************************************************
8 * This program is free software; you can redistribute it and/or modify          *
9 * it under the terms of the GNU General Public License as published by          *
10 * the Free Software Foundation; either version 2 of the License, or             *
11 * (at your option) any later version.                                           *
12 *                                                                               *
13 * This program is distributed in the hope that it will be useful,               *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of                *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                 *
16 * GNU General Public License for more details.                                  *
17 *                                                                               *
18 * You should have received a copy of the GNU General Public License             *
19 * along with this program; if not, write to the Free Software                   *
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.    *
21 *********************************************************************************
22 * $Id: HelpWindow.h,v 1.5 2005/01/16 16:06:06 fox Exp $                         *
23 ********************************************************************************/
24 #ifndef HELPWINDOW_H
25 #define HELPWINDOW_H
26 
27 
28 //class FXText;
29 
30 
31 /// Online help dialog box
32 class HelpWindow : public FXDialogBox {
FXDECLARE(HelpWindow)33   FXDECLARE(HelpWindow)
34 protected:
35   FXText *helptext;         // Help display
36 private:
37   HelpWindow(){}
38   HelpWindow(const HelpWindow&);
39 public:
40   HelpWindow(FXWindow *owner,const FXString& title);
41   void setHelp(const FXString& help);
42   FXString getHelp() const;
43   virtual ~HelpWindow();
44   };
45 
46 #endif
47