1/*******************************************************************
2* aboutbugreportingdialog.h
3* Copyright 2009 Dario Andres Rodriguez <andresbajotierra@gmail.com>
4*
5* This program is free software; you can redistribute it and/or
6* modify it under the terms of the GNU General Public License as
7* published by the Free Software Foundation; either version 2 of
8* the License, or (at your option) any later version.
9*
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 <http://www.gnu.org/licenses/>.
17*
18******************************************************************/
19
20#ifndef ABOUTBUGREPORTINGDIALOG__H
21#define ABOUTBUGREPORTINGDIALOG__H
22
23#include <KDialog>
24
25class KTextBrowser;
26
27class AboutBugReportingDialog: public KDialog
28{
29 Q_OBJECT
30
31public:
32 explicit AboutBugReportingDialog(QWidget * parent = 0);
33 ~AboutBugReportingDialog();
34 void showSection(const QString&);
35
36private Q_SLOTS:
37 void handleInternalLinks(const QString&);
38
39private:
40 KTextBrowser * m_textBrowser;
41};
42
43#endif
44