Debugger: Add a "Char Code Integer"

Fixes: QTCREATORBUG-22849
Change-Id: Id601eb5cbe1211cff595f04b5910a21f1ba33128
Reviewed-by: David Schulz <david.schulz@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
hjk
2021-12-10 11:03:32 +01:00
parent 035ba1c10e
commit e8ae475fcf
3 changed files with 37 additions and 4 deletions

View File

@@ -273,9 +273,9 @@ QString decodeData(const QString &baIn, const QString &encoding);
// "Change Value Display Format". They are passed from the frontend to
// the dumpers.
//
// Keep in sync with dumper.py.
// Keep in sync with share/qtcreator/debugger/utils.py
//
// \note Add new enum values only at the end, as the numeric values are
// \note Add new enum values only with increasing numeric values as they are
// persisted in user settings.
enum DisplayFormat
@@ -313,6 +313,7 @@ enum DisplayFormat
HexadecimalIntegerFormat = 23, // Frontend internal only
BinaryIntegerFormat = 24, // Frontend internal only
OctalIntegerFormat = 25, // Frontend internal only
CharCodeIntegerFormat = 28, // Frontend internal only
CompactFloatFormat = 26, // Frontend internal only
ScientificFloatFormat = 27 // Frontend internal only