File indexing completed on 2024-04-28 16:26:31

0001 /**************************************************************************
0002 *   Copyright (C) 2007-2019 by Michel Ludwig (michel.ludwig@kdemail.net)  *
0003 *                 2011 by Felix Mauch (felix_mauch@web.de)                *
0004 ***************************************************************************/
0005 
0006 /**************************************************************************
0007 *                                                                         *
0008 *   This program is free software; you can redistribute it and/or modify  *
0009 *   it under the terms of the GNU General Public License as published by  *
0010 *   the Free Software Foundation; either version 2 of the License, or     *
0011 *   (at your option) any later version.                                   *
0012 *                                                                         *
0013 ***************************************************************************/
0014 
0015 #ifndef HELPCONFIGWIDGET_H
0016 #define HELPCONFIGWIDGET_H
0017 
0018 #include <QWidget>
0019 
0020 #include "kilehelp.h"
0021 
0022 #include "ui_helpconfigwidget.h"
0023 
0024 class KileWidgetHelpConfig : public QWidget, public Ui::KileWidgetHelpConfig
0025 {
0026     Q_OBJECT
0027 
0028 public:
0029     explicit KileWidgetHelpConfig(QWidget *parent = 0);
0030     ~KileWidgetHelpConfig();
0031 
0032     void setHelp(KileHelp::Help *help);
0033 
0034 protected Q_SLOTS:
0035     void slotConfigure();
0036 
0037 protected:
0038     KileHelp::Help *m_help;
0039 };
0040 
0041 #endif