mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
69 lines
1.8 KiB
C
69 lines
1.8 KiB
C
![]() |
/*******************************************************************
|
||
|
* 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 <KDialog>
|
||
|
|
||
|
#include "ui_maindialog.h"
|
||
|
|
||
|
class BacktraceWidget;
|
||
|
class KTabWidget;
|
||
|
class AbstractDebuggerLauncher;
|
||
|
class KMenu;
|
||
|
|
||
|
class DrKonqiDialog: public KDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit DrKonqiDialog(QWidget * parent = 0);
|
||
|
~DrKonqiDialog();
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void startBugReportAssistant();
|
||
|
|
||
|
void applicationRestarted(bool success);
|
||
|
|
||
|
void addDebugger(AbstractDebuggerLauncher *launcher);
|
||
|
void removeDebugger(AbstractDebuggerLauncher *launcher);
|
||
|
void enableDebugMenu(bool);
|
||
|
|
||
|
//GUI
|
||
|
void buildIntroWidget();
|
||
|
void buildDialogButtons();
|
||
|
|
||
|
private:
|
||
|
KTabWidget * m_tabWidget;
|
||
|
|
||
|
QWidget * m_introWidget;
|
||
|
Ui::MainWidget ui;
|
||
|
|
||
|
BacktraceWidget * m_backtraceWidget;
|
||
|
|
||
|
KMenu *m_debugMenu;
|
||
|
QHash<AbstractDebuggerLauncher*, QAction*> m_debugMenuActions;
|
||
|
};
|
||
|
|
||
|
#endif
|