2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2012-04-24 15:49:09 +02:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2012-04-24 15:49:09 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-04-24 15:49:09 +02: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.
|
2012-04-24 15:49:09 +02: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
|
2012-04-24 15:49:09 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-04-24 15:49:09 +02:00
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
#include "debuggerkitconfigwidget.h"
|
2012-04-24 15:49:09 +02:00
|
|
|
|
2013-02-20 14:15:42 +01:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/abi.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/pathchooser.h>
|
2013-02-08 14:09:04 +01:00
|
|
|
#include <utils/elidinglabel.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
#include <utils/winutils.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
#include <QFormLayout>
|
2012-09-05 14:56:08 +02:00
|
|
|
#include <QComboBox>
|
2012-09-11 14:03:08 +02:00
|
|
|
#include <QPushButton>
|
|
|
|
|
#include <QDialogButtonBox>
|
2012-04-24 15:49:09 +02:00
|
|
|
|
|
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2012-12-17 13:42:52 +01:00
|
|
|
static const char debuggingToolsWikiLinkC[] = "http://qt-project.org/wiki/Qt_Creator_Windows_Debugging";
|
2012-09-05 14:56:08 +02:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
// -----------------------------------------------------------------------
|
2012-09-03 18:31:44 +02:00
|
|
|
// DebuggerKitConfigWidget:
|
2012-04-24 15:49:09 +02:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
2013-01-29 17:53:47 +01:00
|
|
|
DebuggerKitConfigWidget::DebuggerKitConfigWidget(ProjectExplorer::Kit *workingCopy)
|
2012-11-16 13:30:59 +01:00
|
|
|
: KitConfigWidget(workingCopy),
|
2013-02-20 14:15:42 +01:00
|
|
|
m_main(new QWidget),
|
|
|
|
|
m_label(new Utils::ElidingLabel(m_main)),
|
|
|
|
|
m_autoDetectButton(new QPushButton(tr("Auto-detect"))),
|
|
|
|
|
m_editButton(new QPushButton(tr("Edit...")))
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
2013-02-20 14:15:42 +01:00
|
|
|
QHBoxLayout *mainLayout = new QHBoxLayout(m_main);
|
|
|
|
|
mainLayout->addWidget(m_label);
|
2013-02-20 16:17:30 +01:00
|
|
|
mainLayout->setMargin(0);
|
2013-02-20 14:15:42 +01:00
|
|
|
mainLayout->addWidget(m_autoDetectButton);
|
2013-02-20 16:17:30 +01:00
|
|
|
m_autoDetectButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Preferred);
|
2013-02-20 14:15:42 +01:00
|
|
|
|
|
|
|
|
connect(m_autoDetectButton, SIGNAL(pressed()), SLOT(autoDetectDebugger()));
|
|
|
|
|
connect(m_editButton, SIGNAL(pressed()), SLOT(showDialog()));
|
2012-10-10 15:34:35 +02:00
|
|
|
refresh();
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
|
|
|
|
|
2012-11-16 13:30:59 +01:00
|
|
|
QString DebuggerKitConfigWidget::toolTip() const
|
|
|
|
|
{
|
|
|
|
|
return tr("The debugger to use for this kit.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *DebuggerKitConfigWidget::mainWidget() const
|
|
|
|
|
{
|
2013-02-20 14:15:42 +01:00
|
|
|
return m_main;
|
2012-11-16 13:30:59 +01:00
|
|
|
}
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
QWidget *DebuggerKitConfigWidget::buttonWidget() const
|
2012-09-07 16:30:18 +02:00
|
|
|
{
|
2013-02-20 14:15:42 +01:00
|
|
|
return m_editButton;
|
2012-09-07 16:30:18 +02:00
|
|
|
}
|
|
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
QString DebuggerKitConfigWidget::displayName() const
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
2012-08-28 11:33:49 +02:00
|
|
|
return tr("Debugger:");
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
|
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
void DebuggerKitConfigWidget::makeReadOnly()
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
2013-02-20 14:15:42 +01:00
|
|
|
m_editButton->setEnabled(false);
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
|
|
|
|
|
2012-10-10 15:34:35 +02:00
|
|
|
void DebuggerKitConfigWidget::refresh()
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
2012-10-10 15:34:35 +02:00
|
|
|
m_label->setText(DebuggerKitInformation::userOutput(DebuggerKitInformation::debuggerItem(m_kit)));
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
void DebuggerKitConfigWidget::autoDetectDebugger()
|
2012-04-24 15:49:09 +02:00
|
|
|
{
|
2012-10-10 15:34:35 +02:00
|
|
|
DebuggerKitInformation::setDebuggerItem(m_kit, DebuggerKitInformation::autoDetectItem(m_kit));
|
2012-09-11 14:03:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerKitConfigWidget::showDialog()
|
|
|
|
|
{
|
2013-02-20 14:15:42 +01:00
|
|
|
DebuggerKitConfigDialog dialog(Core::ICore::mainWindow());
|
2012-09-11 14:03:08 +02:00
|
|
|
dialog.setWindowTitle(tr("Debugger for \"%1\"").arg(m_kit->displayName()));
|
2012-10-10 15:34:35 +02:00
|
|
|
dialog.setDebuggerItem(DebuggerKitInformation::debuggerItem(m_kit));
|
2012-09-11 14:03:08 +02:00
|
|
|
if (dialog.exec() == QDialog::Accepted)
|
2012-10-10 15:34:35 +02:00
|
|
|
DebuggerKitInformation::setDebuggerItem(m_kit, dialog.item());
|
2012-09-05 14:56:08 +02:00
|
|
|
}
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
// DebuggerKitConfigDialog:
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
DebuggerKitConfigDialog::DebuggerKitConfigDialog(QWidget *parent)
|
|
|
|
|
: QDialog(parent)
|
|
|
|
|
, m_comboBox(new QComboBox(this))
|
|
|
|
|
, m_label(new QLabel(this))
|
|
|
|
|
, m_chooser(new Utils::PathChooser(this))
|
|
|
|
|
{
|
|
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
|
|
|
QFormLayout *formLayout = new QFormLayout;
|
|
|
|
|
formLayout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow);
|
|
|
|
|
|
|
|
|
|
m_comboBox->addItem(DebuggerKitInformation::debuggerEngineName(GdbEngineType), QVariant(int(GdbEngineType)));
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
if (ProjectExplorer::Abi::hostAbi().os() == ProjectExplorer::Abi::WindowsOS)
|
2012-09-11 14:03:08 +02:00
|
|
|
m_comboBox->addItem(DebuggerKitInformation::debuggerEngineName(CdbEngineType), QVariant(int(CdbEngineType)));
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
else
|
2012-09-11 14:03:08 +02:00
|
|
|
m_comboBox->addItem(DebuggerKitInformation::debuggerEngineName(LldbEngineType), QVariant(int(LldbEngineType)));
|
|
|
|
|
connect(m_comboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(refreshLabel()));
|
|
|
|
|
QLabel *engineTypeLabel = new QLabel(tr("&Engine:"));
|
|
|
|
|
engineTypeLabel->setBuddy(m_comboBox);
|
|
|
|
|
formLayout->addRow(engineTypeLabel, m_comboBox);
|
|
|
|
|
|
|
|
|
|
m_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
|
|
|
|
m_label->setOpenExternalLinks(true);
|
|
|
|
|
formLayout->addRow(m_label);
|
|
|
|
|
|
|
|
|
|
QLabel *binaryLabel = new QLabel(tr("&Binary:"));
|
|
|
|
|
m_chooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
|
|
|
|
binaryLabel->setBuddy(m_chooser);
|
|
|
|
|
formLayout->addRow(binaryLabel, m_chooser);
|
|
|
|
|
layout->addLayout(formLayout);
|
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, this);
|
|
|
|
|
connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
|
|
|
|
|
connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
|
|
|
|
|
layout->addWidget(buttonBox);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DebuggerEngineType DebuggerKitConfigDialog::engineType() const
|
2012-09-05 14:56:08 +02:00
|
|
|
{
|
|
|
|
|
const int index = m_comboBox->currentIndex();
|
|
|
|
|
return static_cast<DebuggerEngineType>(m_comboBox->itemData(index).toInt());
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
void DebuggerKitConfigDialog::setEngineType(DebuggerEngineType et)
|
2012-09-05 14:56:08 +02:00
|
|
|
{
|
|
|
|
|
const int size = m_comboBox->count();
|
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
|
if (m_comboBox->itemData(i).toInt() == et) {
|
|
|
|
|
m_comboBox->setCurrentIndex(i);
|
|
|
|
|
refreshLabel();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
Utils::FileName DebuggerKitConfigDialog::fileName() const
|
2012-09-05 14:56:08 +02:00
|
|
|
{
|
|
|
|
|
return m_chooser->fileName();
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
void DebuggerKitConfigDialog::setFileName(const Utils::FileName &fn)
|
2012-09-05 14:56:08 +02:00
|
|
|
{
|
|
|
|
|
m_chooser->setFileName(fn);
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
void DebuggerKitConfigDialog::refreshLabel()
|
2012-09-05 14:56:08 +02:00
|
|
|
{
|
|
|
|
|
QString text;
|
2012-09-06 08:33:46 +02:00
|
|
|
const DebuggerEngineType type = engineType();
|
|
|
|
|
switch (type) {
|
2012-09-05 14:56:08 +02:00
|
|
|
case CdbEngineType: {
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
const bool is64bit = Utils::winIs64BitSystem();
|
|
|
|
|
#else
|
|
|
|
|
const bool is64bit = false;
|
|
|
|
|
#endif
|
|
|
|
|
const QString versionString = is64bit ? tr("64-bit version") : tr("32-bit version");
|
|
|
|
|
//: Label text for path configuration. %2 is "x-bit version".
|
|
|
|
|
text = tr("<html><body><p>Specify the path to the "
|
|
|
|
|
"<a href=\"%1\">Windows Console Debugger executable</a>"
|
2012-12-17 13:42:52 +01:00
|
|
|
" (%2) here.</p>""</body></html>").
|
|
|
|
|
arg(QLatin1String(debuggingToolsWikiLinkC), versionString);
|
2012-09-05 14:56:08 +02:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
m_label->setText(text);
|
|
|
|
|
m_label->setVisible(!text.isEmpty());
|
2012-09-06 08:33:46 +02:00
|
|
|
m_chooser->setCommandVersionArguments(type == CdbEngineType ?
|
|
|
|
|
QStringList(QLatin1String("-version")) :
|
|
|
|
|
QStringList(QLatin1String("--version")));
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
void DebuggerKitConfigDialog::setDebuggerItem(const DebuggerKitInformation::DebuggerItem &item)
|
|
|
|
|
{
|
|
|
|
|
setEngineType(item.engineType);
|
|
|
|
|
setFileName(item.binary);
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|