2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-01-04 11:36:55 +01:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-01-04 11:36:55 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-01-04 11:36:55 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2010-01-04 11:36:55 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-01-04 11:36:55 +01:00
|
|
|
|
2009-04-17 09:03:32 +02:00
|
|
|
#include "gdboptionspage.h"
|
2013-08-29 16:36:42 +02:00
|
|
|
#include <debugger/commonoptionspage.h>
|
|
|
|
|
#include <debugger/debuggeractions.h>
|
|
|
|
|
#include <debugger/debuggercore.h>
|
|
|
|
|
#include <debugger/debuggerinternalconstants.h>
|
2009-04-17 09:03:32 +02:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2010-11-10 16:33:11 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDebug>
|
2009-04-17 09:03:32 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QFormLayout>
|
|
|
|
|
#include <QSpinBox>
|
|
|
|
|
#include <QTextEdit>
|
2011-02-22 11:35:03 +01:00
|
|
|
|
2009-04-17 09:03:32 +02:00
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2013-03-21 17:10:47 +01:00
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// GdbOptionsPageWidget - harmless options
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2012-08-27 13:58:47 +02:00
|
|
|
class GdbOptionsPageWidget : public QWidget
|
2011-11-29 13:30:09 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2013-12-03 14:17:03 +01:00
|
|
|
explicit GdbOptionsPageWidget(QWidget *parent = 0);
|
2012-08-13 17:39:29 +02:00
|
|
|
|
2011-11-29 13:30:09 +01:00
|
|
|
QGroupBox *groupBoxGeneral;
|
|
|
|
|
QLabel *labelGdbWatchdogTimeout;
|
|
|
|
|
QSpinBox *spinBoxGdbWatchdogTimeout;
|
|
|
|
|
QCheckBox *checkBoxSkipKnownFrames;
|
|
|
|
|
QCheckBox *checkBoxUseMessageBoxForSignals;
|
|
|
|
|
QCheckBox *checkBoxAdjustBreakpointLocations;
|
|
|
|
|
QCheckBox *checkBoxUseDynamicType;
|
|
|
|
|
QCheckBox *checkBoxLoadGdbInit;
|
2013-03-21 17:32:34 +01:00
|
|
|
QCheckBox *checkBoxLoadGdbDumpers;
|
2012-11-09 19:11:19 +01:00
|
|
|
QCheckBox *checkBoxIntelFlavor;
|
2013-03-21 18:00:18 +01:00
|
|
|
QCheckBox *checkBoxIdentifyDebugInfoPackages;
|
2011-11-29 13:30:09 +01:00
|
|
|
|
|
|
|
|
QGroupBox *groupBoxStartupCommands;
|
|
|
|
|
QTextEdit *textEditStartupCommands;
|
2012-10-23 10:51:32 +02:00
|
|
|
QGroupBox *groupBoxPostAttachCommands;
|
|
|
|
|
QTextEdit *textEditPostAttachCommands;
|
2013-06-03 14:27:53 +02:00
|
|
|
QGroupBox *groupBoxCustomDumperCommands;
|
|
|
|
|
QTextEdit *textEditCustomDumperCommands;
|
2011-11-29 13:30:09 +01:00
|
|
|
|
|
|
|
|
//QGroupBox *groupBoxPluginDebugging;
|
|
|
|
|
//QRadioButton *radioButtonAllPluginBreakpoints;
|
|
|
|
|
//QRadioButton *radioButtonSelectedPluginBreakpoints;
|
|
|
|
|
//QRadioButton *radioButtonNoPluginBreakpoints;
|
|
|
|
|
//QLabel *labelSelectedPluginBreakpoints;
|
|
|
|
|
//QLineEdit *lineEditSelectedPluginBreakpointsPattern;
|
|
|
|
|
|
2012-08-13 17:39:29 +02:00
|
|
|
Utils::SavedActionSet group;
|
2011-11-29 13:30:09 +01:00
|
|
|
};
|
|
|
|
|
|
2012-08-27 13:58:47 +02:00
|
|
|
GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent)
|
2012-08-13 17:39:29 +02:00
|
|
|
: QWidget(parent)
|
|
|
|
|
{
|
|
|
|
|
groupBoxGeneral = new QGroupBox(this);
|
|
|
|
|
groupBoxGeneral->setTitle(GdbOptionsPage::tr("General"));
|
|
|
|
|
|
|
|
|
|
labelGdbWatchdogTimeout = new QLabel(groupBoxGeneral);
|
|
|
|
|
labelGdbWatchdogTimeout->setText(GdbOptionsPage::tr("GDB timeout:"));
|
|
|
|
|
labelGdbWatchdogTimeout->setToolTip(GdbOptionsPage::tr(
|
2012-08-15 16:47:16 +02:00
|
|
|
"The number of seconds Qt Creator will wait before it terminates\n"
|
|
|
|
|
"a non-responsive GDB process. The default value of 20 seconds should\n"
|
|
|
|
|
"be sufficient for most applications, but there are situations when\n"
|
|
|
|
|
"loading big libraries or listing source files takes much longer than\n"
|
|
|
|
|
"that on slow machines. In this case, the value should be increased."));
|
2012-08-13 17:39:29 +02:00
|
|
|
|
|
|
|
|
spinBoxGdbWatchdogTimeout = new QSpinBox(groupBoxGeneral);
|
|
|
|
|
spinBoxGdbWatchdogTimeout->setToolTip(labelGdbWatchdogTimeout->toolTip());
|
|
|
|
|
spinBoxGdbWatchdogTimeout->setSuffix(GdbOptionsPage::tr("sec"));
|
|
|
|
|
spinBoxGdbWatchdogTimeout->setLayoutDirection(Qt::LeftToRight);
|
|
|
|
|
spinBoxGdbWatchdogTimeout->setMinimum(20);
|
|
|
|
|
spinBoxGdbWatchdogTimeout->setMaximum(1000000);
|
|
|
|
|
spinBoxGdbWatchdogTimeout->setSingleStep(20);
|
|
|
|
|
spinBoxGdbWatchdogTimeout->setValue(20);
|
|
|
|
|
|
|
|
|
|
checkBoxSkipKnownFrames = new QCheckBox(groupBoxGeneral);
|
|
|
|
|
checkBoxSkipKnownFrames->setText(GdbOptionsPage::tr("Skip known frames when stepping"));
|
|
|
|
|
checkBoxSkipKnownFrames->setToolTip(GdbOptionsPage::tr(
|
|
|
|
|
"<html><head/><body><p>"
|
|
|
|
|
"Allows <i>Step Into</i> to compress several steps into one step\n"
|
|
|
|
|
"for less noisy debugging. For example, the atomic reference\n"
|
|
|
|
|
"counting code is skipped, and a single <i>Step Into</i> for a signal\n"
|
|
|
|
|
"emission ends up directly in the slot connected to it."));
|
|
|
|
|
|
|
|
|
|
checkBoxUseMessageBoxForSignals = new QCheckBox(groupBoxGeneral);
|
|
|
|
|
checkBoxUseMessageBoxForSignals->setText(GdbOptionsPage::tr(
|
|
|
|
|
"Show a message box when receiving a signal"));
|
|
|
|
|
checkBoxUseMessageBoxForSignals->setToolTip(GdbOptionsPage::tr(
|
2012-08-15 16:47:16 +02:00
|
|
|
"Displays a message box as soon as your application\n"
|
2012-08-13 17:39:29 +02:00
|
|
|
"receives a signal like SIGSEGV during debugging."));
|
|
|
|
|
|
|
|
|
|
checkBoxAdjustBreakpointLocations = new QCheckBox(groupBoxGeneral);
|
|
|
|
|
checkBoxAdjustBreakpointLocations->setText(GdbOptionsPage::tr(
|
|
|
|
|
"Adjust breakpoint locations"));
|
|
|
|
|
checkBoxAdjustBreakpointLocations->setToolTip(GdbOptionsPage::tr(
|
|
|
|
|
"GDB allows setting breakpoints on source lines for which no code \n"
|
|
|
|
|
"was generated. In such situations the breakpoint is shifted to the\n"
|
|
|
|
|
"next source code line for which code was actually generated.\n"
|
|
|
|
|
"This option reflects such temporary change by moving the breakpoint\n"
|
|
|
|
|
"markers in the source code editor."));
|
|
|
|
|
|
|
|
|
|
checkBoxUseDynamicType = new QCheckBox(groupBoxGeneral);
|
|
|
|
|
checkBoxUseDynamicType->setText(GdbOptionsPage::tr(
|
|
|
|
|
"Use dynamic object type for display"));
|
|
|
|
|
checkBoxUseDynamicType->setToolTip(GdbOptionsPage::tr(
|
2012-08-28 13:18:50 +02:00
|
|
|
"Specifies whether the dynamic or the static type of objects will be "
|
2012-08-13 17:39:29 +02:00
|
|
|
"displayed. Choosing the dynamic type might be slower."));
|
|
|
|
|
|
|
|
|
|
checkBoxLoadGdbInit = new QCheckBox(groupBoxGeneral);
|
|
|
|
|
checkBoxLoadGdbInit->setText(GdbOptionsPage::tr("Load .gdbinit file on startup"));
|
|
|
|
|
checkBoxLoadGdbInit->setToolTip(GdbOptionsPage::tr(
|
2012-08-15 16:47:16 +02:00
|
|
|
"Allows or inhibits reading the user's default\n"
|
2012-08-13 17:39:29 +02:00
|
|
|
".gdbinit file on debugger startup."));
|
|
|
|
|
|
2013-03-21 17:32:34 +01:00
|
|
|
checkBoxLoadGdbDumpers = new QCheckBox(groupBoxGeneral);
|
2013-05-14 17:36:28 +02:00
|
|
|
checkBoxLoadGdbDumpers->setText(GdbOptionsPage::tr("Load system GDB pretty printers"));
|
2013-03-21 17:32:34 +01:00
|
|
|
checkBoxLoadGdbDumpers->setToolTip(GdbOptionsPage::tr(
|
2013-05-14 17:36:28 +02:00
|
|
|
"Uses the default GDB pretty printers installed in your "
|
|
|
|
|
"system or linked to the libraries your application uses.\n"));
|
2013-03-21 17:32:34 +01:00
|
|
|
|
2012-11-09 19:11:19 +01:00
|
|
|
checkBoxIntelFlavor = new QCheckBox(groupBoxGeneral);
|
|
|
|
|
checkBoxIntelFlavor->setText(GdbOptionsPage::tr("Use Intel style disassembly"));
|
|
|
|
|
checkBoxIntelFlavor->setToolTip(GdbOptionsPage::tr(
|
|
|
|
|
"<html><head/><body>GDB shows by default AT&&T style disassembly."
|
|
|
|
|
"</body></html>"));
|
|
|
|
|
|
2013-03-21 18:00:18 +01:00
|
|
|
checkBoxIdentifyDebugInfoPackages = new QCheckBox(groupBoxGeneral);
|
|
|
|
|
checkBoxIdentifyDebugInfoPackages->setText(GdbOptionsPage::tr("Create tasks from missing packages"));
|
|
|
|
|
checkBoxIdentifyDebugInfoPackages->setToolTip(GdbOptionsPage::tr(
|
2013-05-14 17:36:28 +02:00
|
|
|
"<html><head/><body><p>Attempts to identify missing debug info packages "
|
|
|
|
|
"and lists them in the Issues output pane.</p><p>"
|
2013-06-10 15:58:12 +02:00
|
|
|
"<b>Note:</b> This feature needs special support from the Linux "
|
|
|
|
|
"distribution and GDB build and is not available everywhere.</p></body></html>"));
|
2013-03-21 18:00:18 +01:00
|
|
|
|
2013-06-03 14:27:53 +02:00
|
|
|
QString howToUsePython = GdbOptionsPage::tr(
|
2012-11-17 15:22:36 +01:00
|
|
|
"<p>To execute simple Python commands, prefix them with \"python\".</p>"
|
|
|
|
|
"<p>To execute sequences of Python commands spanning multiple lines "
|
|
|
|
|
"prepend the block with \"python\" on a separate line, and append "
|
|
|
|
|
"\"end\" on a separate line.</p>"
|
|
|
|
|
"<p>To execute arbitrary Python scripts, "
|
2013-06-03 14:27:53 +02:00
|
|
|
"use <i>python execfile('/path/to/script.py')</i>.</p>");
|
|
|
|
|
|
|
|
|
|
groupBoxStartupCommands = new QGroupBox(this);
|
|
|
|
|
groupBoxStartupCommands->setTitle(GdbOptionsPage::tr("Additional Startup Commands"));
|
|
|
|
|
groupBoxStartupCommands->setToolTip(GdbOptionsPage::tr(
|
|
|
|
|
"<html><head/><body><p>GDB commands entered here will be executed after "
|
|
|
|
|
"GDB has been started, but before the debugged program is started or "
|
|
|
|
|
"attached, and before the debugging helpers are initialized.</p>%1"
|
2013-06-05 09:39:11 +02:00
|
|
|
"</body></html>").arg(howToUsePython));
|
2012-08-13 17:39:29 +02:00
|
|
|
|
|
|
|
|
textEditStartupCommands = new QTextEdit(groupBoxStartupCommands);
|
|
|
|
|
textEditStartupCommands->setAcceptRichText(false);
|
|
|
|
|
textEditStartupCommands->setToolTip(groupBoxStartupCommands->toolTip());
|
|
|
|
|
|
2012-10-23 10:51:32 +02:00
|
|
|
groupBoxPostAttachCommands = new QGroupBox(this);
|
|
|
|
|
groupBoxPostAttachCommands->setTitle(GdbOptionsPage::tr("Additional Attach Commands"));
|
|
|
|
|
groupBoxPostAttachCommands->setToolTip(GdbOptionsPage::tr(
|
|
|
|
|
"<html><head/><body><p>GDB commands entered here will be executed after "
|
|
|
|
|
"GDB has successfully attached to remote targets.</p>"
|
|
|
|
|
"<p>You can add commands to further set up the target here, "
|
|
|
|
|
"such as \"monitor reset\" or \"load\"."
|
|
|
|
|
"</body></html>"));
|
|
|
|
|
|
|
|
|
|
textEditPostAttachCommands = new QTextEdit(groupBoxPostAttachCommands);
|
|
|
|
|
textEditPostAttachCommands->setAcceptRichText(false);
|
|
|
|
|
textEditPostAttachCommands->setToolTip(groupBoxPostAttachCommands->toolTip());
|
|
|
|
|
|
2013-06-03 14:27:53 +02:00
|
|
|
groupBoxCustomDumperCommands = new QGroupBox(this);
|
|
|
|
|
groupBoxCustomDumperCommands->setTitle(GdbOptionsPage::tr("Debugging Helper Customization"));
|
|
|
|
|
groupBoxCustomDumperCommands->setToolTip(GdbOptionsPage::tr(
|
|
|
|
|
"<html><head/><body><p>GDB commands entered here will be executed after "
|
|
|
|
|
"Qt Creator's debugging helpers have been loaded and fully initialized. "
|
|
|
|
|
"You can load additional debugging helpers or modify existing ones here.</p>"
|
|
|
|
|
"%1</body></html>").arg(howToUsePython));
|
|
|
|
|
|
2013-12-04 08:56:50 +01:00
|
|
|
textEditCustomDumperCommands = new QTextEdit(groupBoxCustomDumperCommands);
|
2013-06-03 14:27:53 +02:00
|
|
|
textEditCustomDumperCommands->setAcceptRichText(false);
|
2013-12-04 08:56:50 +01:00
|
|
|
textEditCustomDumperCommands->setToolTip(groupBoxCustomDumperCommands->toolTip());
|
2013-06-03 14:27:53 +02:00
|
|
|
|
2012-08-13 17:39:29 +02:00
|
|
|
/*
|
|
|
|
|
groupBoxPluginDebugging = new QGroupBox(q);
|
|
|
|
|
groupBoxPluginDebugging->setTitle(GdbOptionsPage::tr(
|
|
|
|
|
"Behavior of Breakpoint Setting in Plugins"));
|
|
|
|
|
|
|
|
|
|
radioButtonAllPluginBreakpoints = new QRadioButton(groupBoxPluginDebugging);
|
|
|
|
|
radioButtonAllPluginBreakpoints->setText(GdbOptionsPage::tr(
|
|
|
|
|
"Always try to set breakpoints in plugins automatically"));
|
|
|
|
|
radioButtonAllPluginBreakpoints->setToolTip(GdbOptionsPage::tr(
|
|
|
|
|
"This is the slowest but safest option."));
|
|
|
|
|
|
|
|
|
|
radioButtonSelectedPluginBreakpoints = new QRadioButton(groupBoxPluginDebugging);
|
|
|
|
|
radioButtonSelectedPluginBreakpoints->setText(GdbOptionsPage::tr(
|
|
|
|
|
"Try to set breakpoints in selected plugins"));
|
|
|
|
|
|
|
|
|
|
radioButtonNoPluginBreakpoints = new QRadioButton(groupBoxPluginDebugging);
|
|
|
|
|
radioButtonNoPluginBreakpoints->setText(GdbOptionsPage::tr(
|
|
|
|
|
"Never set breakpoints in plugins automatically"));
|
|
|
|
|
|
|
|
|
|
lineEditSelectedPluginBreakpointsPattern = new QLineEdit(groupBoxPluginDebugging);
|
|
|
|
|
|
|
|
|
|
labelSelectedPluginBreakpoints = new QLabel(groupBoxPluginDebugging);
|
|
|
|
|
labelSelectedPluginBreakpoints->setText(GdbOptionsPage::tr(
|
|
|
|
|
"Matching regular expression: "));
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
QFormLayout *formLayout = new QFormLayout(groupBoxGeneral);
|
|
|
|
|
formLayout->addRow(labelGdbWatchdogTimeout, spinBoxGdbWatchdogTimeout);
|
|
|
|
|
formLayout->addRow(checkBoxSkipKnownFrames);
|
|
|
|
|
formLayout->addRow(checkBoxUseMessageBoxForSignals);
|
|
|
|
|
formLayout->addRow(checkBoxAdjustBreakpointLocations);
|
|
|
|
|
formLayout->addRow(checkBoxUseDynamicType);
|
|
|
|
|
formLayout->addRow(checkBoxLoadGdbInit);
|
2013-03-21 17:32:34 +01:00
|
|
|
formLayout->addRow(checkBoxLoadGdbDumpers);
|
2012-11-09 19:11:19 +01:00
|
|
|
formLayout->addRow(checkBoxIntelFlavor);
|
2013-03-21 18:00:18 +01:00
|
|
|
formLayout->addRow(checkBoxIdentifyDebugInfoPackages);
|
2012-08-13 17:39:29 +02:00
|
|
|
|
|
|
|
|
QGridLayout *startLayout = new QGridLayout(groupBoxStartupCommands);
|
|
|
|
|
startLayout->addWidget(textEditStartupCommands, 0, 0, 1, 1);
|
|
|
|
|
|
2012-10-23 10:51:32 +02:00
|
|
|
QGridLayout *postAttachLayout = new QGridLayout(groupBoxPostAttachCommands);
|
|
|
|
|
postAttachLayout->addWidget(textEditPostAttachCommands, 0, 0, 1, 1);
|
|
|
|
|
|
2013-06-03 14:27:53 +02:00
|
|
|
QGridLayout *customDumperLayout = new QGridLayout(groupBoxCustomDumperCommands);
|
|
|
|
|
customDumperLayout->addWidget(textEditCustomDumperCommands, 0, 0, 1, 1);
|
|
|
|
|
|
2012-08-13 17:39:29 +02:00
|
|
|
//QHBoxLayout *horizontalLayout = new QHBoxLayout();
|
|
|
|
|
//horizontalLayout->addItem(new QSpacerItem(10, 10, QSizePolicy::Preferred, QSizePolicy::Minimum));
|
|
|
|
|
//horizontalLayout->addWidget(labelSelectedPluginBreakpoints);
|
|
|
|
|
//horizontalLayout->addWidget(lineEditSelectedPluginBreakpointsPattern);
|
|
|
|
|
|
|
|
|
|
QGridLayout *gridLayout = new QGridLayout(this);
|
2012-10-23 10:51:32 +02:00
|
|
|
gridLayout->addWidget(groupBoxGeneral, 0, 0, 2, 1);
|
|
|
|
|
gridLayout->addWidget(groupBoxStartupCommands, 0, 1, 1, 1);
|
|
|
|
|
gridLayout->addWidget(groupBoxPostAttachCommands, 1, 1, 1, 1);
|
2013-06-03 14:27:53 +02:00
|
|
|
gridLayout->addWidget(groupBoxCustomDumperCommands, 2, 1, 1, 1);
|
2012-08-13 17:39:29 +02:00
|
|
|
|
|
|
|
|
//gridLayout->addWidget(groupBoxStartupCommands, 0, 1, 1, 1);
|
|
|
|
|
//gridLayout->addWidget(radioButtonAllPluginBreakpoints, 0, 0, 1, 1);
|
|
|
|
|
//gridLayout->addWidget(radioButtonSelectedPluginBreakpoints, 1, 0, 1, 1);
|
|
|
|
|
|
|
|
|
|
//gridLayout->addLayout(horizontalLayout, 2, 0, 1, 1);
|
|
|
|
|
//gridLayout->addWidget(radioButtonNoPluginBreakpoints, 3, 0, 1, 1);
|
|
|
|
|
//gridLayout->addWidget(groupBoxPluginDebugging, 1, 0, 1, 2);
|
|
|
|
|
|
|
|
|
|
DebuggerCore *dc = debuggerCore();
|
|
|
|
|
group.insert(dc->action(GdbStartupCommands), textEditStartupCommands);
|
2013-06-03 14:27:53 +02:00
|
|
|
group.insert(dc->action(GdbCustomDumperCommands), textEditCustomDumperCommands);
|
2012-10-23 10:51:32 +02:00
|
|
|
group.insert(dc->action(GdbPostAttachCommands), textEditPostAttachCommands);
|
2012-08-13 17:39:29 +02:00
|
|
|
group.insert(dc->action(LoadGdbInit), checkBoxLoadGdbInit);
|
2013-03-21 17:32:34 +01:00
|
|
|
group.insert(dc->action(LoadGdbDumpers), checkBoxLoadGdbDumpers);
|
2012-08-13 17:39:29 +02:00
|
|
|
group.insert(dc->action(UseDynamicType), checkBoxUseDynamicType);
|
|
|
|
|
group.insert(dc->action(AdjustBreakpointLocations), checkBoxAdjustBreakpointLocations);
|
|
|
|
|
group.insert(dc->action(GdbWatchdogTimeout), spinBoxGdbWatchdogTimeout);
|
2012-11-09 19:11:19 +01:00
|
|
|
group.insert(dc->action(IntelFlavor), checkBoxIntelFlavor);
|
2013-03-21 18:00:18 +01:00
|
|
|
group.insert(dc->action(IdentifyDebugInfoPackages), checkBoxIdentifyDebugInfoPackages);
|
2012-08-13 17:39:29 +02:00
|
|
|
group.insert(dc->action(UseMessageBoxForSignals), checkBoxUseMessageBoxForSignals);
|
|
|
|
|
group.insert(dc->action(SkipKnownFrames), checkBoxSkipKnownFrames);
|
|
|
|
|
|
|
|
|
|
//lineEditSelectedPluginBreakpointsPattern->
|
|
|
|
|
// setEnabled(dc->action(SelectedPluginBreakpoints)->value().toBool());
|
|
|
|
|
//connect(radioButtonSelectedPluginBreakpoints, SIGNAL(toggled(bool)),
|
|
|
|
|
// lineEditSelectedPluginBreakpointsPattern, SLOT(setEnabled(bool)));
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
GdbOptionsPage::GdbOptionsPage()
|
2010-03-26 17:34:10 +01:00
|
|
|
{
|
2013-01-16 15:22:58 +01:00
|
|
|
setId("M.Gdb");
|
2012-05-22 11:17:13 +02:00
|
|
|
setDisplayName(tr("GDB"));
|
2012-12-29 03:37:27 +01:00
|
|
|
setCategory(Constants::DEBUGGER_SETTINGS_CATEGORY);
|
2012-05-22 11:17:13 +02:00
|
|
|
setDisplayCategory(QCoreApplication::translate("Debugger", Constants::DEBUGGER_SETTINGS_TR_CATEGORY));
|
|
|
|
|
setCategoryIcon(QLatin1String(Constants::DEBUGGER_COMMON_SETTINGS_CATEGORY_ICON));
|
2010-03-26 17:34:10 +01:00
|
|
|
}
|
|
|
|
|
|
2012-07-13 14:21:49 +02:00
|
|
|
GdbOptionsPage::~GdbOptionsPage()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-03 14:17:03 +01:00
|
|
|
QWidget *GdbOptionsPage::widget()
|
2009-04-17 09:03:32 +02:00
|
|
|
{
|
2013-12-03 14:17:03 +01:00
|
|
|
if (!m_widget)
|
|
|
|
|
m_widget = new GdbOptionsPageWidget;
|
2012-08-27 13:58:47 +02:00
|
|
|
return m_widget;
|
2009-04-17 09:03:32 +02:00
|
|
|
}
|
2010-11-10 16:33:11 +01:00
|
|
|
|
2009-04-17 09:03:32 +02:00
|
|
|
void GdbOptionsPage::apply()
|
|
|
|
|
{
|
2012-08-27 13:58:47 +02:00
|
|
|
if (m_widget)
|
|
|
|
|
m_widget->group.apply(Core::ICore::settings());
|
2009-04-17 09:03:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GdbOptionsPage::finish()
|
|
|
|
|
{
|
2013-12-03 14:17:03 +01:00
|
|
|
if (m_widget) {
|
2012-08-27 13:58:47 +02:00
|
|
|
m_widget->group.finish();
|
2013-12-03 14:17:03 +01:00
|
|
|
delete m_widget;
|
|
|
|
|
}
|
2009-11-24 15:05:02 +01:00
|
|
|
}
|
|
|
|
|
|
2013-03-21 17:10:47 +01:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// GdbOptionsPageWidget2 - dangerous options
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
class GdbOptionsPageWidget2 : public QWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
2013-12-03 14:17:03 +01:00
|
|
|
explicit GdbOptionsPageWidget2(QWidget *parent = 0);
|
2013-03-21 17:10:47 +01:00
|
|
|
|
|
|
|
|
QGroupBox *groupBoxDangerous;
|
|
|
|
|
QLabel *labelDangerous;
|
|
|
|
|
QCheckBox *checkBoxTargetAsync;
|
|
|
|
|
QCheckBox *checkBoxAutoEnrichParameters;
|
|
|
|
|
QCheckBox *checkBoxBreakOnWarning;
|
|
|
|
|
QCheckBox *checkBoxBreakOnFatal;
|
|
|
|
|
QCheckBox *checkBoxBreakOnAbort;
|
|
|
|
|
QCheckBox *checkBoxEnableReverseDebugging;
|
|
|
|
|
QCheckBox *checkBoxAttemptQuickStart;
|
|
|
|
|
QCheckBox *checkBoxMultiInferior;
|
|
|
|
|
|
|
|
|
|
Utils::SavedActionSet group;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
GdbOptionsPageWidget2::GdbOptionsPageWidget2(QWidget *parent)
|
|
|
|
|
: QWidget(parent)
|
|
|
|
|
{
|
|
|
|
|
groupBoxDangerous = new QGroupBox(this);
|
|
|
|
|
groupBoxDangerous->setTitle(GdbOptionsPage::tr("Extended"));
|
|
|
|
|
|
|
|
|
|
labelDangerous = new QLabel(GdbOptionsPage::tr(
|
|
|
|
|
"The options below should be used with care."));
|
|
|
|
|
labelDangerous->setToolTip(GdbOptionsPage::tr(
|
|
|
|
|
"<html><head/><body>The options below give access to advanced "
|
|
|
|
|
"or experimental functions of GDB. Enabling them may negatively "
|
|
|
|
|
"impact your debugging experience.</body></html>"));
|
|
|
|
|
QFont f = labelDangerous->font();
|
|
|
|
|
f.setItalic(true);
|
|
|
|
|
labelDangerous->setFont(f);
|
|
|
|
|
|
|
|
|
|
checkBoxTargetAsync = new QCheckBox(groupBoxDangerous);
|
|
|
|
|
checkBoxTargetAsync->setText(GdbOptionsPage::tr(
|
|
|
|
|
"Use asynchronous mode to control the inferior"));
|
|
|
|
|
|
|
|
|
|
checkBoxAutoEnrichParameters = new QCheckBox(groupBoxDangerous);
|
|
|
|
|
checkBoxAutoEnrichParameters->setText(GdbOptionsPage::tr(
|
|
|
|
|
"Use common locations for debug information"));
|
|
|
|
|
checkBoxAutoEnrichParameters->setToolTip(GdbOptionsPage::tr(
|
2013-12-04 12:01:17 +01:00
|
|
|
"<html><head/><body>Adds common paths to locations "
|
2013-03-21 17:10:47 +01:00
|
|
|
"of debug information such as <i>/usr/src/debug</i> "
|
|
|
|
|
"when starting GDB.</body></html>"));
|
|
|
|
|
|
|
|
|
|
// #fixme: 2.7 Move to common settings page.
|
|
|
|
|
checkBoxBreakOnWarning = new QCheckBox(groupBoxDangerous);
|
|
|
|
|
checkBoxBreakOnWarning->setText(CommonOptionsPage::msgSetBreakpointAtFunction("qWarning"));
|
|
|
|
|
checkBoxBreakOnWarning->setToolTip(CommonOptionsPage::msgSetBreakpointAtFunctionToolTip("qWarning"));
|
|
|
|
|
|
|
|
|
|
checkBoxBreakOnFatal = new QCheckBox(groupBoxDangerous);
|
|
|
|
|
checkBoxBreakOnFatal->setText(CommonOptionsPage::msgSetBreakpointAtFunction("qFatal"));
|
|
|
|
|
checkBoxBreakOnFatal->setToolTip(CommonOptionsPage::msgSetBreakpointAtFunctionToolTip("qFatal"));
|
|
|
|
|
|
|
|
|
|
checkBoxBreakOnAbort = new QCheckBox(groupBoxDangerous);
|
|
|
|
|
checkBoxBreakOnAbort->setText(CommonOptionsPage::msgSetBreakpointAtFunction("abort"));
|
|
|
|
|
checkBoxBreakOnAbort->setToolTip(CommonOptionsPage::msgSetBreakpointAtFunctionToolTip("abort"));
|
|
|
|
|
|
|
|
|
|
checkBoxEnableReverseDebugging = new QCheckBox(groupBoxDangerous);
|
|
|
|
|
checkBoxEnableReverseDebugging->setText(GdbOptionsPage::tr("Enable reverse debugging"));
|
|
|
|
|
checkBoxEnableReverseDebugging->setToolTip(GdbOptionsPage::tr(
|
2013-12-04 12:01:17 +01:00
|
|
|
"<html><head/><body><p>Enables stepping backwards.</p><p>"
|
2013-03-21 17:10:47 +01:00
|
|
|
"<b>Note:</b> This feature is very slow and unstable on the GDB side. "
|
|
|
|
|
"It exhibits unpredictable behavior when going backwards over system "
|
|
|
|
|
"calls and is very likely to destroy your debugging session.</p></body></html>"));
|
|
|
|
|
|
|
|
|
|
checkBoxAttemptQuickStart = new QCheckBox(groupBoxDangerous);
|
|
|
|
|
checkBoxAttemptQuickStart->setText(GdbOptionsPage::tr("Attempt quick start"));
|
|
|
|
|
checkBoxAttemptQuickStart->setToolTip(GdbOptionsPage::tr(
|
2013-12-04 12:01:17 +01:00
|
|
|
"<html><head/><body>Postpones reading debug information as long as possible. "
|
2013-03-21 17:10:47 +01:00
|
|
|
"This can result in faster startup times at the price of not being able to "
|
|
|
|
|
"set breakpoints by file and number.</body></html>"));
|
|
|
|
|
|
|
|
|
|
checkBoxMultiInferior = new QCheckBox(groupBoxDangerous);
|
|
|
|
|
checkBoxMultiInferior->setText(GdbOptionsPage::tr("Debug all children"));
|
|
|
|
|
checkBoxMultiInferior->setToolTip(GdbOptionsPage::tr(
|
2013-12-04 12:01:17 +01:00
|
|
|
"<html><head/><body>Keeps debugging all children after a fork."
|
2013-03-21 17:10:47 +01:00
|
|
|
"</body></html>"));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QFormLayout *formLayout = new QFormLayout(groupBoxDangerous);
|
|
|
|
|
formLayout->addRow(labelDangerous);
|
|
|
|
|
formLayout->addRow(checkBoxTargetAsync);
|
|
|
|
|
formLayout->addRow(checkBoxAutoEnrichParameters);
|
|
|
|
|
formLayout->addRow(checkBoxBreakOnWarning);
|
|
|
|
|
formLayout->addRow(checkBoxBreakOnFatal);
|
|
|
|
|
formLayout->addRow(checkBoxBreakOnAbort);
|
|
|
|
|
formLayout->addRow(checkBoxEnableReverseDebugging);
|
|
|
|
|
formLayout->addRow(checkBoxAttemptQuickStart);
|
|
|
|
|
formLayout->addRow(checkBoxMultiInferior);
|
|
|
|
|
|
|
|
|
|
QGridLayout *gridLayout = new QGridLayout(this);
|
|
|
|
|
gridLayout->addWidget(groupBoxDangerous, 0, 0, 2, 1);
|
|
|
|
|
|
|
|
|
|
DebuggerCore *dc = debuggerCore();
|
|
|
|
|
group.insert(dc->action(AutoEnrichParameters), checkBoxAutoEnrichParameters);
|
|
|
|
|
group.insert(dc->action(TargetAsync), checkBoxTargetAsync);
|
|
|
|
|
group.insert(dc->action(BreakOnWarning), checkBoxBreakOnWarning);
|
|
|
|
|
group.insert(dc->action(BreakOnFatal), checkBoxBreakOnFatal);
|
|
|
|
|
group.insert(dc->action(BreakOnAbort), checkBoxBreakOnAbort);
|
|
|
|
|
group.insert(dc->action(AttemptQuickStart), checkBoxAttemptQuickStart);
|
|
|
|
|
group.insert(dc->action(MultiInferior), checkBoxMultiInferior);
|
|
|
|
|
group.insert(dc->action(EnableReverseDebugging), checkBoxEnableReverseDebugging);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GdbOptionsPage2::GdbOptionsPage2()
|
|
|
|
|
{
|
|
|
|
|
setId("M.Gdb2");
|
|
|
|
|
setDisplayName(tr("GDB Extended"));
|
|
|
|
|
setCategory(Constants::DEBUGGER_SETTINGS_CATEGORY);
|
|
|
|
|
setDisplayCategory(QCoreApplication::translate("Debugger", Constants::DEBUGGER_SETTINGS_TR_CATEGORY));
|
|
|
|
|
setCategoryIcon(QLatin1String(Constants::DEBUGGER_COMMON_SETTINGS_CATEGORY_ICON));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GdbOptionsPage2::~GdbOptionsPage2()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-03 14:17:03 +01:00
|
|
|
QWidget *GdbOptionsPage2::widget()
|
2013-03-21 17:10:47 +01:00
|
|
|
{
|
2013-12-03 14:17:03 +01:00
|
|
|
if (!m_widget)
|
|
|
|
|
m_widget = new GdbOptionsPageWidget2;
|
2013-03-21 17:10:47 +01:00
|
|
|
return m_widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GdbOptionsPage2::apply()
|
|
|
|
|
{
|
|
|
|
|
if (m_widget)
|
|
|
|
|
m_widget->group.apply(Core::ICore::settings());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GdbOptionsPage2::finish()
|
|
|
|
|
{
|
2013-12-03 14:17:03 +01:00
|
|
|
if (m_widget) {
|
2013-03-21 17:10:47 +01:00
|
|
|
m_widget->group.finish();
|
2013-12-03 14:17:03 +01:00
|
|
|
delete m_widget;
|
|
|
|
|
}
|
2013-03-21 17:10:47 +01:00
|
|
|
}
|
|
|
|
|
|
2009-04-17 09:03:32 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|