]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/help/help.h
3d11ef78bf66b0fe3c36e3e909775e0b33543ac5
[bacula/bacula] / bacula / src / qt-console / help / help.h
1 #ifndef _HELP_H_
2 #define _HELP_H_
3
4 /*
5    Bacula(R) - The Network Backup Solution
6
7    Copyright (C) 2000-2015 Kern Sibbald
8    Copyright (C) 2007-2014 Free Software Foundation Europe e.V.
9
10    The original author of Bacula is Kern Sibbald, with contributions
11    from many others, a complete list can be found in the file AUTHORS.
12
13    You may use this file and others of this release according to the
14    license defined in the LICENSE file, which includes the Affero General
15    Public License, v3.0 ("AGPLv3") and some additional permissions and
16    terms pursuant to its AGPLv3 Section 7.
17
18    This notice must be preserved when any source code is 
19    conveyed and/or propagated.
20
21    Bacula(R) is a registered trademark of Kern Sibbald.
22 */
23  
24 /*
25  *  Help Window class
26  *
27  *    It reads an html file and displays it in a "browser" window.
28  *
29  *   Kern Sibbald, May MMVII
30  *
31  *  $Id$
32  */ 
33
34 #include "bat.h"
35 #include "ui_help.h"
36
37 class Help : public QWidget, public Ui::helpForm
38 {
39    Q_OBJECT 
40
41 public:
42    Help(const QString &path, const QString &file, QWidget *parent = NULL);
43    virtual ~Help() { };
44    static void displayFile(const QString &file);
45
46 public slots:
47    void updateTitle();
48
49 private:
50 };
51
52 #endif /* _HELP_H_ */