Debugger: Add 'command[s]' to breakpoints, polish BP dialogs.

Add commands (CDB, gdb with '\n' delimiter for multiple),
rearrange dialogs, make ignore count a spin box.
This commit is contained in:
Friedemann Kleint
2011-02-04 11:33:45 +01:00
parent 9c48cd3bf2
commit 59b2aac1c4
9 changed files with 346 additions and 211 deletions

View File

@@ -187,6 +187,7 @@ QDataStream &operator<<(QDataStream &stream, const BreakpointParameters &s)
stream << s.useFullPath;
stream << s.tracepoint;
stream << s.module;
stream << s.command;
return stream;
}
@@ -205,6 +206,7 @@ QDataStream &operator>>(QDataStream &stream, BreakpointParameters &s)
stream >> b; s.useFullPath = b;
stream >> b; s.tracepoint = b;
stream >> str ; s.module = str;
stream >> str ; s.command = str;
return stream;
}