2018-12-25 15:34:59 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* gui/HelpDialog.h *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2006 Crypton <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
#ifndef _HELPDIALOG_H
|
|
|
|
#define _HELPDIALOG_H
|
|
|
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
2010-08-06 05:40:23 -04:00
|
|
|
#include <retroshare/rstypes.h>
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2015-06-14 13:45:26 -04:00
|
|
|
namespace Ui {
|
|
|
|
class HelpDialog;
|
|
|
|
}
|
|
|
|
|
2008-03-31 09:00:00 -04:00
|
|
|
class HelpDialog : public QDialog
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2015-06-14 13:45:26 -04:00
|
|
|
Q_OBJECT
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
public:
|
2015-06-14 13:45:26 -04:00
|
|
|
/** Default Constructor */
|
|
|
|
HelpDialog(QWidget *parent = 0);
|
|
|
|
/** Default Destructor */
|
|
|
|
virtual ~HelpDialog();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
private:
|
2015-06-14 13:45:26 -04:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::HelpDialog *ui;
|
2007-11-14 22:18:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|