Menu

[r13166]: / branches / release-17.12 / src / plugins / debuggergdb / debuggeroptionsprjdlg.h  Maximize  Restore  History

Download this file

52 lines (43 with data), 1.6 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
* http://www.gnu.org/licenses/gpl-3.0.html
*/
#ifndef DEBUGGEROPTIONSPRJDLG_H
#define DEBUGGEROPTIONSPRJDLG_H
#include <wx/intl.h>
#include "configurationpanel.h"
#include <settings.h>
#include "remotedebugging.h"
class cbProject;
class wxListBox;
class DebuggerGDB;
class CodeBlocksEvent;
class DebuggerOptionsProjectDlg : public cbConfigurationPanel
{
public:
DebuggerOptionsProjectDlg(wxWindow* parent, DebuggerGDB* debugger, cbProject* project);
virtual ~DebuggerOptionsProjectDlg();
virtual wxString GetTitle() const { return _("Debugger"); }
virtual wxString GetBitmapBaseName() const { return _T("debugger"); }
virtual void OnApply();
virtual void OnCancel(){}
protected:
void OnTargetSel(wxCommandEvent& event);
void OnAdd(wxCommandEvent& event);
void OnEdit(wxCommandEvent& event);
void OnDelete(wxCommandEvent& event);
void OnUpdateUI(wxUpdateUIEvent& event);
private:
void OnBuildTargetRemoved(CodeBlocksEvent& event);
void OnBuildTargetAdded(CodeBlocksEvent& event);
void OnBuildTargetRenamed(CodeBlocksEvent& event);
void LoadCurrentRemoteDebuggingRecord();
void SaveCurrentRemoteDebuggingRecord();
DebuggerGDB* m_pDBG;
cbProject* m_pProject;
wxArrayString m_OldPaths;
RemoteDebuggingMap m_CurrentRemoteDebugging;
int m_LastTargetSel;
DECLARE_EVENT_TABLE()
};
#endif // DEBUGGEROPTIONSPRJDLG_H
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.