forked from qt-creator/qt-creator
Debugger: Replace cdb output encoding enum by strings
Change-Id: I05225f5be61fdaa448b9991b14056e89228c26a4 Reviewed-by: hjk <hjk@theqtcompany.com> Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
@@ -241,15 +241,24 @@ enum DisplayFormat
|
||||
// They are never stored in settings.
|
||||
|
||||
// Keep in sync with dumper.py, symbolgroupvalue.cpp of CDB
|
||||
enum DebuggerDisplay
|
||||
class DebuggerDisplay
|
||||
{
|
||||
StopDisplay = 0,
|
||||
DisplayImageData = 1,
|
||||
DisplayUtf16String = 2,
|
||||
DisplayImageFile = 3,
|
||||
DisplayLatin1String = 4,
|
||||
DisplayUtf8String = 5,
|
||||
DisplayPlotData = 6
|
||||
public:
|
||||
enum DisplayType {
|
||||
StopDisplay = 0,
|
||||
DisplayImageData = 1,
|
||||
DisplayUtf16String = 2,
|
||||
DisplayImageFile = 3,
|
||||
DisplayLatin1String = 4,
|
||||
DisplayUtf8String = 5,
|
||||
DisplayPlotData = 6
|
||||
};
|
||||
|
||||
DebuggerDisplay() {}
|
||||
DebuggerDisplay(const QByteArray &data);
|
||||
|
||||
DisplayType type = StopDisplay;
|
||||
bool separate = false;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user