debugger: more tracepoint stuff

This commit is contained in:
hjk
2010-12-16 17:58:43 +01:00
parent 2074ce8f4d
commit 39c145bf93
5 changed files with 54 additions and 3 deletions

View File

@@ -267,6 +267,8 @@ void BreakHandler::saveBreakpoints()
map.insert(_("disabled"), _("1"));
if (data.useFullPath)
map.insert(_("usefullpath"), _("1"));
if (data.tracepoint)
map.insert(_("tracepoint"), _("1"));
list.append(map);
}
debuggerCore()->setSessionValue("Breakpoints", list);
@@ -310,6 +312,9 @@ void BreakHandler::loadBreakpoints()
v = map.value(_("usefullpath"));
if (v.isValid())
data.useFullPath = bool(v.toInt());
v = map.value(_("tracepoint"));
if (v.isValid())
data.tracepoint = bool(v.toInt());
v = map.value(_("type"));
if (v.isValid() && v.toInt() != UnknownType)
data.type = BreakpointType(v.toInt());
@@ -582,6 +587,26 @@ void BreakHandler::setEnabled(BreakpointId id, bool on)
scheduleSynchronization();
}
bool BreakHandler::isTracepoint(BreakpointId id) const
{
ConstIterator it = m_storage.find(id);
QTC_ASSERT(it != m_storage.end(), return false);
return it->data.tracepoint;
}
void BreakHandler::setTracepoint(BreakpointId id, bool on)
{
Iterator it = m_storage.find(id);
QTC_ASSERT(it != m_storage.end(), return);
if (it->data.tracepoint == on)
return;
it->data.tracepoint = on;
it->destroyMarker();
it->state = BreakpointChangeRequested;
updateMarker(id);
scheduleSynchronization();
}
void BreakHandler::setMarkerFileAndLine(BreakpointId id,
const QString &fileName, int lineNumber)
{