2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2009-03-02 14:04:03 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
2009-03-02 14:04:03 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2009-03-02 14:04:03 +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.
|
2009-03-02 14:04:03 +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
|
|
|
****************************************************************************/
|
2009-03-02 14:04:03 +01:00
|
|
|
|
|
|
|
|
#ifndef DEBUGGER_DIALOGS_H
|
|
|
|
|
#define DEBUGGER_DIALOGS_H
|
|
|
|
|
|
2012-09-05 10:55:05 +02:00
|
|
|
#include <projectexplorer/kitchooser.h>
|
|
|
|
|
#include <projectexplorer/abi.h>
|
|
|
|
|
|
2012-06-26 15:25:49 +02:00
|
|
|
#include <QDialog>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QHash>
|
|
|
|
|
#include <QStringList>
|
2009-03-02 14:04:03 +01:00
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
2009-03-02 15:14:12 +01:00
|
|
|
class QModelIndex;
|
2009-03-04 16:48:13 +01:00
|
|
|
class QPushButton;
|
2009-08-19 14:41:51 +02:00
|
|
|
class QLineEdit;
|
|
|
|
|
class QDialogButtonBox;
|
2012-02-06 15:15:57 +01:00
|
|
|
class QSettings;
|
2011-11-24 13:00:01 +01:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2012-06-28 10:00:04 +02:00
|
|
|
namespace Core { class Id; }
|
2012-09-03 18:31:44 +02:00
|
|
|
namespace ProjectExplorer { class Kit; }
|
2009-03-02 15:14:12 +01:00
|
|
|
|
2011-11-23 15:15:01 +00:00
|
|
|
namespace Debugger {
|
2012-02-06 15:15:57 +01:00
|
|
|
class DebuggerStartParameters;
|
|
|
|
|
|
2011-11-23 15:15:01 +00:00
|
|
|
namespace Internal {
|
2011-11-24 13:00:01 +01:00
|
|
|
|
2012-06-28 13:30:09 +02:00
|
|
|
class AttachCoreDialogPrivate;
|
|
|
|
|
class AttachToQmlPortDialogPrivate;
|
2009-03-05 17:30:29 +01:00
|
|
|
class ProcessListFilterModel;
|
2012-08-08 13:09:31 +02:00
|
|
|
class StartApplicationParameters;
|
|
|
|
|
class StartApplicationDialogPrivate;
|
2012-06-28 13:30:09 +02:00
|
|
|
class StartRemoteEngineDialogPrivate;
|
2009-03-05 17:30:29 +01:00
|
|
|
|
2012-09-05 10:55:05 +02:00
|
|
|
class DebuggerKitChooser : public ProjectExplorer::KitChooser {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
enum Mode { RemoteDebugging, LocalDebugging };
|
|
|
|
|
|
|
|
|
|
explicit DebuggerKitChooser(Mode mode = RemoteDebugging, QWidget *parent = 0);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
bool kitMatches(const ProjectExplorer::Kit *k) const;
|
|
|
|
|
QString kitToolTip(ProjectExplorer::Kit *k) const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const ProjectExplorer::Abi m_hostAbi;
|
|
|
|
|
const Mode m_mode;
|
|
|
|
|
};
|
|
|
|
|
|
2012-08-08 13:09:31 +02:00
|
|
|
class StartApplicationDialog : public QDialog
|
2009-05-07 09:35:11 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2012-08-08 13:09:31 +02:00
|
|
|
explicit StartApplicationDialog(QWidget *parent);
|
|
|
|
|
~StartApplicationDialog();
|
2009-03-02 15:14:12 +01:00
|
|
|
|
2012-02-06 15:15:57 +01:00
|
|
|
static bool run(QWidget *parent, QSettings *settings,
|
2012-08-08 13:09:31 +02:00
|
|
|
DebuggerStartParameters *sp);
|
2010-05-12 11:48:00 +02:00
|
|
|
|
2012-02-06 15:15:57 +01:00
|
|
|
private slots:
|
|
|
|
|
void historyIndexChanged(int);
|
2012-08-08 13:09:31 +02:00
|
|
|
void updateState();
|
2011-05-03 14:57:05 +02:00
|
|
|
|
2012-02-06 15:15:57 +01:00
|
|
|
private:
|
2012-08-08 13:09:31 +02:00
|
|
|
StartApplicationParameters parameters() const;
|
|
|
|
|
void setParameters(const StartApplicationParameters &p);
|
|
|
|
|
void setHistory(const QList<StartApplicationParameters> &l);
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2012-08-08 13:09:31 +02:00
|
|
|
StartApplicationDialogPrivate *d;
|
2009-03-02 14:04:03 +01:00
|
|
|
};
|
|
|
|
|
|
2011-09-13 17:26:02 +02:00
|
|
|
class AttachToQmlPortDialog : public QDialog
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit AttachToQmlPortDialog(QWidget *parent);
|
|
|
|
|
~AttachToQmlPortDialog();
|
|
|
|
|
|
|
|
|
|
int port() const;
|
|
|
|
|
void setPort(const int port);
|
|
|
|
|
|
2012-09-03 18:31:44 +02:00
|
|
|
ProjectExplorer::Kit *kit() const;
|
|
|
|
|
void setKitId(const Core::Id &id);
|
2011-10-11 15:21:00 +02:00
|
|
|
|
2011-09-13 17:26:02 +02:00
|
|
|
private:
|
2012-06-28 10:00:04 +02:00
|
|
|
AttachToQmlPortDialogPrivate *d;
|
2011-09-13 17:26:02 +02:00
|
|
|
};
|
|
|
|
|
|
2010-11-19 16:13:22 +01:00
|
|
|
class StartRemoteCdbDialog : public QDialog
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit StartRemoteCdbDialog(QWidget *parent);
|
|
|
|
|
~StartRemoteCdbDialog();
|
|
|
|
|
|
|
|
|
|
QString connection() const;
|
|
|
|
|
void setConnection(const QString &);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void textChanged(const QString &);
|
|
|
|
|
|
|
|
|
|
private:
|
2012-06-26 15:25:49 +02:00
|
|
|
void accept();
|
|
|
|
|
|
2010-11-19 16:13:22 +01:00
|
|
|
QPushButton *m_okButton;
|
|
|
|
|
QLineEdit *m_lineEdit;
|
|
|
|
|
};
|
|
|
|
|
|
2011-05-30 12:56:26 +02:00
|
|
|
class AddressDialog : public QDialog
|
|
|
|
|
{
|
2009-08-19 14:41:51 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit AddressDialog(QWidget *parent = 0);
|
2011-05-04 11:58:54 +02:00
|
|
|
|
|
|
|
|
void setAddress(quint64 a);
|
2009-08-19 14:41:51 +02:00
|
|
|
quint64 address() const;
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void textChanged();
|
|
|
|
|
|
|
|
|
|
private:
|
2012-06-26 15:25:49 +02:00
|
|
|
void accept();
|
|
|
|
|
|
2009-08-19 14:41:51 +02:00
|
|
|
void setOkButtonEnabled(bool v);
|
|
|
|
|
bool isOkButtonEnabled() const;
|
|
|
|
|
|
|
|
|
|
bool isValid() const;
|
|
|
|
|
|
|
|
|
|
QLineEdit *m_lineEdit;
|
|
|
|
|
QDialogButtonBox *m_box;
|
|
|
|
|
};
|
2009-08-12 10:51:25 +02:00
|
|
|
|
2011-11-07 20:07:14 +01:00
|
|
|
typedef QHash<QString, QStringList> TypeFormats;
|
|
|
|
|
|
2010-12-01 15:41:08 +01:00
|
|
|
class StartRemoteEngineDialog : public QDialog
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit StartRemoteEngineDialog(QWidget *parent);
|
|
|
|
|
~StartRemoteEngineDialog();
|
|
|
|
|
QString username() const;
|
|
|
|
|
QString host() const;
|
|
|
|
|
QString password() const;
|
|
|
|
|
QString enginePath() const;
|
|
|
|
|
QString inferiorPath() const;
|
|
|
|
|
|
|
|
|
|
private:
|
2012-06-28 13:30:09 +02:00
|
|
|
StartRemoteEngineDialogPrivate *d;
|
2010-12-01 15:41:08 +01:00
|
|
|
};
|
|
|
|
|
|
2011-11-07 20:07:14 +01:00
|
|
|
class TypeFormatsDialogUi;
|
|
|
|
|
|
|
|
|
|
class TypeFormatsDialog : public QDialog
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit TypeFormatsDialog(QWidget *parent);
|
|
|
|
|
~TypeFormatsDialog();
|
|
|
|
|
|
|
|
|
|
void addTypeFormats(const QString &type, const QStringList &formats,
|
|
|
|
|
int currentFormat);
|
|
|
|
|
TypeFormats typeFormats() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
TypeFormatsDialogUi *m_ui;
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-02 14:04:03 +01:00
|
|
|
} // namespace Debugger
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
|
|
|
|
|
#endif // DEBUGGER_DIALOGS_H
|