2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-12-10 19:02:19 +01: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
|
2010-12-10 19:02:19 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-12-10 19:02:19 +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-12-10 19:02:19 +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
|
2011-02-17 17:53:52 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
#ifndef DEBUGGER_DEBUGGERKITCONFIGWIDGET_H
|
|
|
|
|
#define DEBUGGER_DEBUGGERKITCONFIGWIDGET_H
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
#include "debuggerkitinformation.h"
|
2012-09-05 14:56:08 +02:00
|
|
|
|
2013-08-14 18:30:40 +02:00
|
|
|
#include <coreplugin/dialogs/ioptionspage.h>
|
|
|
|
|
#include <projectexplorer/kitconfigwidget.h>
|
|
|
|
|
#include <projectexplorer/abi.h>
|
|
|
|
|
#include <utils/detailswidget.h>
|
|
|
|
|
#include <utils/fileutils.h>
|
|
|
|
|
#include <utils/pathchooser.h>
|
|
|
|
|
#include <utils/persistentsettings.h>
|
|
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
#include <QDialog>
|
2013-08-14 18:30:40 +02:00
|
|
|
#include <QStandardItemModel>
|
|
|
|
|
#include <QTreeView>
|
2012-09-11 14:03:08 +02:00
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QComboBox;
|
2013-08-14 18:30:40 +02:00
|
|
|
class QLabel;
|
2012-09-11 14:03:08 +02:00
|
|
|
class QPushButton;
|
|
|
|
|
QT_END_NAMESPACE
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
namespace Debugger {
|
2010-12-10 19:02:19 +01:00
|
|
|
namespace Internal {
|
2013-08-14 18:30:40 +02:00
|
|
|
|
|
|
|
|
class DebuggerItemConfigWidget;
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
// -----------------------------------------------------------------------
|
2013-08-14 18:30:40 +02:00
|
|
|
// DebuggerItemManager
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
class DebuggerItemManager : public QStandardItemModel
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DebuggerItemManager(QObject *parent);
|
|
|
|
|
~DebuggerItemManager();
|
|
|
|
|
|
|
|
|
|
QList<DebuggerItem *> debuggers() const { return m_debuggers; }
|
|
|
|
|
QList<DebuggerItem *> findDebuggers(const ProjectExplorer::Abi &abi) const;
|
|
|
|
|
DebuggerItem *currentDebugger() const { return m_currentDebugger; }
|
|
|
|
|
static DebuggerItem *debuggerFromId(const QVariant &id);
|
2013-08-30 11:19:55 +02:00
|
|
|
static DebuggerItem *debuggerFromPath(const QString &path);
|
2013-08-14 18:30:40 +02:00
|
|
|
QModelIndex currentIndex() const;
|
|
|
|
|
void setCurrentIndex(const QModelIndex &index);
|
|
|
|
|
|
|
|
|
|
bool isLoaded() const;
|
|
|
|
|
void updateCurrentItem();
|
|
|
|
|
// Returns id.
|
|
|
|
|
QVariant defaultDebugger(ProjectExplorer::ToolChain *tc);
|
|
|
|
|
// Adds item unless present. Return id of a matching item.
|
|
|
|
|
QVariant maybeAddDebugger(const DebuggerItem &item, bool makeCurrent = true);
|
|
|
|
|
static void restoreDebuggers();
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void saveDebuggers();
|
|
|
|
|
void autoDetectDebuggers();
|
|
|
|
|
void addDebugger();
|
|
|
|
|
void cloneDebugger();
|
|
|
|
|
void removeDebugger();
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void debuggerAdded(DebuggerItem *item);
|
|
|
|
|
void debuggerRemoved(DebuggerItem *item);
|
|
|
|
|
void debuggerUpdated(DebuggerItem *item);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
friend class DebuggerOptionsPage;
|
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
|
|
|
|
|
|
|
|
|
void autoDetectCdbDebugger();
|
|
|
|
|
|
|
|
|
|
QMap<QString, Utils::FileName> m_abiToDebugger;
|
|
|
|
|
Utils::PersistentSettingsWriter *m_writer;
|
|
|
|
|
QList<DebuggerItem *> m_debuggers;
|
|
|
|
|
DebuggerItem *m_currentDebugger;
|
|
|
|
|
|
|
|
|
|
QStandardItem *m_autoRoot;
|
|
|
|
|
QStandardItem *m_manualRoot;
|
|
|
|
|
QStringList added;
|
|
|
|
|
QStringList removed;
|
|
|
|
|
QHash<DebuggerItem *, QStandardItem *> m_itemFromDebugger;
|
|
|
|
|
QHash<QStandardItem *, DebuggerItem *> m_debuggerFromItem;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
// DebuggerKitConfigWidget
|
2012-04-24 15:49:09 +02:00
|
|
|
// -----------------------------------------------------------------------
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
class DebuggerKitConfigWidget : public ProjectExplorer::KitConfigWidget
|
2010-12-10 19:02:19 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2012-04-24 15:49:09 +02:00
|
|
|
|
2010-12-10 19:02:19 +01:00
|
|
|
public:
|
2013-05-06 17:11:33 +02:00
|
|
|
DebuggerKitConfigWidget(ProjectExplorer::Kit *workingCopy, bool sticky);
|
2012-04-24 15:49:09 +02:00
|
|
|
|
|
|
|
|
QString displayName() const;
|
2012-11-16 13:30:59 +01:00
|
|
|
QString toolTip() const;
|
2012-04-24 15:49:09 +02:00
|
|
|
void makeReadOnly();
|
2012-10-10 15:34:35 +02:00
|
|
|
void refresh();
|
2012-06-21 16:05:30 +02:00
|
|
|
QWidget *buttonWidget() const;
|
2012-11-16 13:30:59 +01:00
|
|
|
QWidget *mainWidget() const;
|
2012-09-05 14:56:08 +02:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
private slots:
|
2013-08-14 18:30:40 +02:00
|
|
|
void manageDebuggers();
|
|
|
|
|
void currentDebuggerChanged(int idx);
|
|
|
|
|
void onDebuggerAdded(DebuggerItem *);
|
|
|
|
|
void onDebuggerUpdated(DebuggerItem *);
|
|
|
|
|
void onDebuggerRemoved(DebuggerItem *);
|
2010-12-10 19:02:19 +01:00
|
|
|
|
|
|
|
|
private:
|
2013-08-14 18:30:40 +02:00
|
|
|
int indexOf(const DebuggerItem *debugger);
|
|
|
|
|
QVariant currentId() const;
|
|
|
|
|
void updateComboBox(const QVariant &id);
|
|
|
|
|
|
|
|
|
|
bool m_isReadOnly;
|
|
|
|
|
QComboBox *m_comboBox;
|
|
|
|
|
QPushButton *m_manageButton;
|
2012-09-11 14:03:08 +02:00
|
|
|
};
|
|
|
|
|
|
2013-08-14 18:30:40 +02:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
// DebuggerOptionsPage
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
class DebuggerOptionsPage : public Core::IOptionsPage
|
2012-09-11 14:03:08 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2013-08-14 18:30:40 +02:00
|
|
|
|
2012-09-11 14:03:08 +02:00
|
|
|
public:
|
2013-08-14 18:30:40 +02:00
|
|
|
DebuggerOptionsPage();
|
2012-09-11 14:03:08 +02:00
|
|
|
|
2013-08-14 18:30:40 +02:00
|
|
|
QWidget *createPage(QWidget *parent);
|
|
|
|
|
void apply();
|
|
|
|
|
void finish();
|
|
|
|
|
bool matches(const QString &) const;
|
2012-09-11 14:03:08 +02:00
|
|
|
|
|
|
|
|
private slots:
|
2013-08-14 18:30:40 +02:00
|
|
|
void debuggerSelectionChanged();
|
|
|
|
|
void debuggerModelChanged();
|
|
|
|
|
void updateState();
|
|
|
|
|
void cloneDebugger();
|
|
|
|
|
void addDebugger();
|
|
|
|
|
void removeDebugger();
|
2012-09-11 14:03:08 +02:00
|
|
|
|
|
|
|
|
private:
|
2013-08-14 18:30:40 +02:00
|
|
|
QWidget *m_configWidget;
|
|
|
|
|
QString m_searchKeywords;
|
|
|
|
|
|
|
|
|
|
DebuggerItemManager *m_manager;
|
|
|
|
|
DebuggerItemConfigWidget *m_itemConfigWidget;
|
|
|
|
|
QTreeView *m_debuggerView;
|
|
|
|
|
Utils::DetailsWidget *m_container;
|
|
|
|
|
QPushButton *m_addButton;
|
|
|
|
|
QPushButton *m_cloneButton;
|
|
|
|
|
QPushButton *m_delButton;
|
2010-12-10 19:02:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2012-04-24 15:49:09 +02:00
|
|
|
} // namespace Debugger
|
2010-12-10 19:02:19 +01:00
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
#endif // DEBUGGER_DEBUGGERKITINFORMATION_H
|