Qt/CheatSearchWidget: Add a checkbox to force parsing a value as hexadecimal.

This commit is contained in:
Admiral H. Curtiss 2021-10-28 02:00:38 +02:00
commit 6e814cbb8f
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
4 changed files with 49 additions and 15 deletions

View file

@ -52,7 +52,7 @@ private:
void OnAddressTableItemChanged(QTableWidgetItem* item);
void OnAddressTableContextMenu();
void OnValueSourceChanged();
void OnHexCheckboxStateChanged();
void OnDisplayHexCheckboxStateChanged();
bool RefreshValues();
void UpdateGuiTable();
@ -75,6 +75,7 @@ private:
QPushButton* m_next_scan_button;
QPushButton* m_refresh_values_button;
QPushButton* m_reset_button;
QCheckBox* m_parse_values_as_hex_checkbox;
QCheckBox* m_display_values_in_hex_checkbox;
QTableWidget* m_address_table;
};