1 #ifndef HELPFORM_HPP
2 #define HELPFORM_HPP
3 /*
4     Copyright © 2011-13 Qtrac Ltd. All rights reserved.
5     This program or module is free software: you can redistribute it
6     and/or modify it under the terms of the GNU General Public License
7     as published by the Free Software Foundation, either version 2 of
8     the License, or (at your option) any later version. This program is
9     distributed in the hope that it will be useful, but WITHOUT ANY
10     WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12     for more details.
13 */
14 
15 #include <QMainWindow>
16 
17 class QMainWindow;
18 
19 class HelpForm : public QMainWindow
20 {
21     Q_OBJECT
22 
23 public:
24     HelpForm(const QString &language, QWidget *parent=0);
25 
26 protected:
27     void closeEvent(QCloseEvent *event);
28 };
29 
30 #endif // HELPFORM_HPP
31