1 /**************************************************************************
2 *   Copyright (C) 2005-2020 by Oleksandr Shneyder                         *
3 *                              <o.shneyder@phoca-gmbh.de>                 *
4 *   Copyright (C) 2015-2020 by Mihai Moldovan <ionic@ionic.de>            *
5 *                                                                         *
6 *   This program is free software; you can redistribute it and/or modify  *
7 *   it under the terms of the GNU General Public License as published by  *
8 *   the Free Software Foundation; either version 2 of the License, or     *
9 *   (at your option) any later version.                                   *
10 *   This program is distributed in the hope that it will be useful,       *
11 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13 *   GNU General Public License for more details.                          *
14 *                                                                         *
15 *   You should have received a copy of the GNU General Public License     *
16 *   along with this program.  If not, see <https://www.gnu.org/licenses/>. *
17 ***************************************************************************/
18 
19 #ifndef HELPDIALOG_H
20 #define HELPDIALOG_H
21 
22 #include "ui_helpdialog.h"
23 
24 class HelpDialog : public QDialog, public Ui_HelpDialog {
25   public:
26     HelpDialog (QWidget *parent = 0);
27     void setText (QString text);
28 };
29 
30 #endif /* !defined (HELPDIALOG_H) */
31