You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.2 KiB
79 lines
2.2 KiB
/******************************************************************* |
|
* drkonqidialog.h |
|
* Copyright 2009 Dario Andres Rodriguez <andresbajotierra@gmail.com> |
|
* |
|
* This program is free software; you can redistribute it and/or |
|
* modify it under the terms of the GNU General Public License as |
|
* published by the Free Software Foundation; either version 2 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 General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License |
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
* |
|
******************************************************************/ |
|
|
|
#ifndef DRKONQIDIALOG__H |
|
#define DRKONQIDIALOG__H |
|
|
|
#include <QtCore/QPointer> |
|
#include <QtCore/QHash> |
|
|
|
#include <QDialog> |
|
|
|
#include "ui_maindialog.h" |
|
|
|
class BacktraceWidget; |
|
class AboutBugReportingDialog; |
|
class QTabWidget; |
|
class AbstractDebuggerLauncher; |
|
class QDialogButtonBox; |
|
|
|
class DrKonqiDialog: public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit DrKonqiDialog(QWidget * parent = 0); |
|
~DrKonqiDialog(); |
|
|
|
private Q_SLOTS: |
|
void linkActivated(const QString&); |
|
void startBugReportAssistant(); |
|
|
|
void applicationRestarted(bool success); |
|
|
|
void addDebugger(AbstractDebuggerLauncher *launcher); |
|
void removeDebugger(AbstractDebuggerLauncher *launcher); |
|
void enableDebugMenu(bool); |
|
|
|
//GUI |
|
void buildIntroWidget(); |
|
void buildDialogButtons(); |
|
|
|
void tabIndexChanged(int); |
|
|
|
private: |
|
void showAboutBugReporting(); |
|
|
|
QTabWidget * m_tabWidget; |
|
|
|
QPointer<AboutBugReportingDialog> m_aboutBugReportingDialog; |
|
|
|
QWidget * m_introWidget; |
|
Ui::MainWidget ui; |
|
|
|
BacktraceWidget * m_backtraceWidget; |
|
|
|
QMenu *m_debugMenu; |
|
QHash<AbstractDebuggerLauncher*, QAction*> m_debugMenuActions; |
|
QDialogButtonBox* m_buttonBox; |
|
QPushButton* m_debugButton; |
|
QPushButton* m_restartButton; |
|
}; |
|
|
|
#endif
|
|
|