mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 09:00:42 +08:00
More VarObj work.
This commit is contained in:
@@ -49,6 +49,11 @@ bool SeerGdbConfigPage::gdbRandomizeStartAddress () const {
|
||||
return gdbRandomizeStartAddressCheckBox->isChecked();
|
||||
}
|
||||
|
||||
bool SeerGdbConfigPage::gdbEnablePrettyPrinting () const {
|
||||
|
||||
return gdbEnablePrettyPrintingCheckBox->isChecked();
|
||||
}
|
||||
|
||||
void SeerGdbConfigPage::setGdbProgram (const QString& program) {
|
||||
|
||||
gdbProgramLineEdit->setText(program);
|
||||
@@ -74,6 +79,11 @@ void SeerGdbConfigPage::setGdbRandomizeStartAddress (bool flag) {
|
||||
gdbRandomizeStartAddressCheckBox->setChecked(flag);
|
||||
}
|
||||
|
||||
void SeerGdbConfigPage::setGdbEnablePrettyPrinting (bool flag) {
|
||||
|
||||
gdbEnablePrettyPrintingCheckBox->setChecked(flag);
|
||||
}
|
||||
|
||||
QString SeerGdbConfigPage::dprintfStyle () const {
|
||||
|
||||
if (styleGdbRadioButton->isChecked()) {
|
||||
@@ -128,6 +138,7 @@ void SeerGdbConfigPage::reset () {
|
||||
setGdbAsyncMode(true);
|
||||
setGdbHandleTerminatingException(true);
|
||||
setGdbRandomizeStartAddress(false);
|
||||
setGdbEnablePrettyPrinting(true);
|
||||
|
||||
setDprintfStyle("gdb");
|
||||
setDprintfFunction("printf");
|
||||
|
||||
Reference in New Issue
Block a user