summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/interfaces/debuggerclient.cpp
blob: 38ab9b67ae49ace2ce4c8f6a6cc4d4613d63bab6 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/***************************************************************************
                              debuggerclient.cpp
                             -------------------
    begin                : 2004-03-12
    copyright            : (C) 2004 Linus McCabe <linus@mccabe.nu>
    Based on work by Mathieu Kooiman
 ***************************************************************************/

/****************************************************************************
 *                                                                          *
 *   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.                                    *
 *                                                                          *
 ***************************************************************************/

#include "debuggerclient.h"
#include "debuggerinterface.h"
#include <kdebug.h>
#include <tdelocale.h>
#include <tdemessagebox.h>


// CTor
DebuggerClient::DebuggerClient(TQObject *parent, const char* name)
 : TQObject(parent, name)
{
  m_active = false;
}


DebuggerInterface* DebuggerClient::debuggerInterface()
{
  return static_cast<DebuggerInterface*>( parent()->child( 0, "DebuggerInterface" ) );
}

// Active state of session
bool DebuggerClient::isActive()
{
  return m_active;
}

void DebuggerClient::unSupportedAction(const TQString &action)
{
  KMessageBox::error(NULL, i18n("The current debugger, %1, does not support the \"%2\" instruction.").arg(this->getName()).arg(action), i18n("Unsupported Debugger Function"));

}

// Unimplemented defaults - Pause execution
void DebuggerClient::pause()
{
 unSupportedAction(i18n("Pause"));
}

// Unimplemented defaults - Send Request
void DebuggerClient::request()
{
 unSupportedAction(i18n("Send HTTP Request"));
}

// Unimplemented defaults - step over
void DebuggerClient::stepOver()
{
  unSupportedAction(i18n("Step Over"));

}

// Unimplemented defaults - step out
void DebuggerClient::stepOut()
{
  unSupportedAction(i18n("Step Out"));

}

// Unimplemented defaults - trace
void DebuggerClient::trace()
{
  unSupportedAction(i18n("Trace"));
}
// Unimplemented defaults - Run
void DebuggerClient::run()
{
  unSupportedAction(i18n("Run"));
}
// Unimplemented defaults - skip
void DebuggerClient::skip()
{
  unSupportedAction(i18n("Skip"));
}
// Unimplemented defaults - stepInto
void DebuggerClient::stepInto()
{
  unSupportedAction(i18n("Step Into"));
}
// Unimplemented defaults - kill
void DebuggerClient::kill()
{
  unSupportedAction(i18n("Kill"));

}

// Unimplemented defaults
void DebuggerClient::profilerOpen( )
{
  unSupportedAction(i18n("Open Profiler Output"));
}

// Unimplemented defaults
void DebuggerClient::fileOpened(const TQString&)
{
   return;
}

// Unimplemented defaults
void DebuggerClient::addBreakpoint(DebuggerBreakpoint*)
{
  unSupportedAction(i18n("Set Breakpoint"));

}

// Unimplemented defaults
void DebuggerClient::removeBreakpoint(DebuggerBreakpoint*)
{
  unSupportedAction(i18n("Remove Breakpoint"));
}


// Unimplemented defaults
void DebuggerClient::showConfig(TQDomNode)
{
   KMessageBox::error(NULL, i18n("%1 does not have any specific settings.").arg(this->getName()), i18n("Settings"));
}

// Unimplemented defaults
void DebuggerClient::readConfig(TQDomNode)
{

}

//  Unimplemented defaults: add watch
void DebuggerClient::addWatch(const TQString &)
{
  KMessageBox::error(NULL, i18n("%1 does not support watches.").arg(this->getName()), i18n("Unsupported Debugger Function"));
}

//  Unimplemented defaults: Remove watch
void DebuggerClient::removeWatch(DebuggerVariable *)
{
  // Giving an error seems pointless, since you shouldnt be able to add a watch in the first place...
  KMessageBox::error(NULL, i18n("%1 does not support watches.").arg(this->getName()), i18n("Unsupported Debugger Function"));
}

// Unimplemented defaults: set value of varialbe
void DebuggerClient::variableSetValue(const DebuggerVariable &)
{
  KMessageBox::error(NULL, i18n("%1 does not support setting the value of variables.").arg(this->getName()), i18n("Unsupported Debugger Function"));
}

#include "debuggerclient.moc"