debugger: use symbolic constants for "Display in Seperate Window" modes

Change-Id: Iab2b918e94abddb1fb4132c27e0b5f29810d4598
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-10-05 08:07:01 +02:00
parent a19495ba20
commit 009c3f1a26
4 changed files with 36 additions and 29 deletions

View File

@@ -83,6 +83,17 @@ enum DebuggerEncoding
Hex2EncodedFloat8 = 26
};
// Keep in sync with dumper.py
enum DebuggerDisplay {
StopDisplay = 0,
DisplayImageData = 1,
DisplayUtf16String = 2,
DisplayImageFile = 3,
DisplayProcess = 4,
DisplayLatin1String = 5,
DisplayUtf8String = 6
};
bool isEditorDebuggable(Core::IEditor *editor);
QByteArray dotEscape(QByteArray str);
QString currentTime();