File indexing completed on 2024-05-05 04:39:52

0001 /*
0002     SPDX-FileCopyrightText: 2005 Vladimir Prus <ghost@cs.msu.su>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef DEBUGGER_TRACING_DIALOG_VP_2005_08_22
0008 #define DEBUGGER_TRACING_DIALOG_VP_2005_08_22
0009 
0010 #include "ui_debuggertracingdialog.h"
0011 #include <QDialog>
0012 
0013 namespace KDevMI {
0014 namespace GDB
0015 {
0016     class Breakpoint;
0017 
0018     class DebuggerTracingDialog : public QDialog, public Ui::DebuggerTracingDialog
0019     {
0020         Q_OBJECT
0021     public:
0022         DebuggerTracingDialog(Breakpoint* bp, QWidget* parent);
0023 
0024     private Q_SLOTS:
0025         void enableOrDisable(int);
0026         void enableOrDisableCustomFormat(int);
0027 
0028     private:
0029         void accept();
0030 
0031     private:
0032         Breakpoint* bp_;
0033     };
0034 
0035 } // end of namespace GDB
0036 } // end of namespace KDevMI
0037 
0038 #endif