2009-03-02 14:04:03 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
|
** contact the sales department at qt-sales@nokia.com.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "debuggerdialogs.h"
|
|
|
|
|
|
2009-03-02 15:14:12 +01:00
|
|
|
#include "ui_attachcoredialog.h"
|
|
|
|
|
#include "ui_attachexternaldialog.h"
|
|
|
|
|
#include "ui_startexternaldialog.h"
|
2009-05-06 13:27:11 +02:00
|
|
|
#include "ui_startremotedialog.h"
|
2009-03-02 15:14:12 +01:00
|
|
|
|
2009-03-04 16:00:43 +01:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
# include "dbgwinutils.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-03-02 14:04:03 +01:00
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QDir>
|
|
|
|
|
#include <QtCore/QFile>
|
2009-03-04 16:48:13 +01:00
|
|
|
#include <QtCore/QCoreApplication>
|
2009-03-02 14:04:03 +01:00
|
|
|
#include <QtGui/QStandardItemModel>
|
|
|
|
|
#include <QtGui/QHeaderView>
|
|
|
|
|
#include <QtGui/QFileDialog>
|
|
|
|
|
#include <QtGui/QPushButton>
|
2009-03-04 16:00:43 +01:00
|
|
|
#include <QtGui/QProxyModel>
|
|
|
|
|
#include <QtGui/QSortFilterProxyModel>
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2009-03-05 17:30:29 +01:00
|
|
|
|
|
|
|
|
namespace Debugger {
|
2009-05-04 14:47:45 +02:00
|
|
|
namespace Internal {
|
2009-03-05 17:30:29 +01:00
|
|
|
|
|
|
|
|
bool operator<(const ProcData &p1, const ProcData &p2)
|
|
|
|
|
{
|
|
|
|
|
return p1.name < p2.name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// A filterable process list model
|
2009-05-04 14:47:45 +02:00
|
|
|
class ProcessListFilterModel : public QSortFilterProxyModel
|
|
|
|
|
{
|
2009-03-05 17:30:29 +01:00
|
|
|
public:
|
|
|
|
|
explicit ProcessListFilterModel(QObject *parent);
|
|
|
|
|
QString processIdAt(const QModelIndex &index) const;
|
|
|
|
|
void populate(QList<ProcData> processes, const QString &excludePid = QString());
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QStandardItemModel *m_model;
|
|
|
|
|
};
|
|
|
|
|
|
2009-05-04 14:47:45 +02:00
|
|
|
ProcessListFilterModel::ProcessListFilterModel(QObject *parent)
|
|
|
|
|
: QSortFilterProxyModel(parent),
|
|
|
|
|
m_model(new QStandardItemModel(this))
|
2009-03-05 17:30:29 +01:00
|
|
|
{
|
|
|
|
|
QStringList columns;
|
|
|
|
|
columns << AttachExternalDialog::tr("Process ID")
|
|
|
|
|
<< AttachExternalDialog::tr("Name")
|
|
|
|
|
<< AttachExternalDialog::tr("State");
|
|
|
|
|
m_model->setHorizontalHeaderLabels(columns);
|
|
|
|
|
setSourceModel(m_model);
|
|
|
|
|
setFilterCaseSensitivity(Qt::CaseInsensitive);
|
|
|
|
|
setFilterKeyColumn(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProcessListFilterModel::processIdAt(const QModelIndex &index) const
|
|
|
|
|
{
|
|
|
|
|
if (index.isValid()) {
|
|
|
|
|
const QModelIndex index0 = mapToSource(index);
|
|
|
|
|
QModelIndex index = index0.sibling(index0.row(), 0);
|
|
|
|
|
if (const QStandardItem *item = m_model->itemFromIndex(index))
|
|
|
|
|
return item->text();
|
|
|
|
|
}
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProcessListFilterModel::populate(QList<ProcData> processes, const QString &excludePid)
|
|
|
|
|
{
|
|
|
|
|
qStableSort(processes);
|
|
|
|
|
|
|
|
|
|
if (const int rowCount = m_model->rowCount())
|
|
|
|
|
m_model->removeRows(0, rowCount);
|
|
|
|
|
|
|
|
|
|
QStandardItem *root = m_model->invisibleRootItem();
|
|
|
|
|
foreach(const ProcData &proc, processes) {
|
|
|
|
|
QList<QStandardItem *> row;
|
|
|
|
|
row.append(new QStandardItem(proc.ppid));
|
|
|
|
|
row.append(new QStandardItem(proc.name));
|
|
|
|
|
if (!proc.image.isEmpty())
|
|
|
|
|
row.back()->setToolTip(proc.image);
|
|
|
|
|
row.append(new QStandardItem(proc.state));
|
|
|
|
|
if (proc.ppid == excludePid)
|
|
|
|
|
foreach(QStandardItem *i, row)
|
|
|
|
|
i->setEnabled(false);
|
|
|
|
|
root->appendRow(row);
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2009-05-04 14:47:45 +02:00
|
|
|
|
2009-03-02 14:04:03 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// AttachCoreDialog
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
AttachCoreDialog::AttachCoreDialog(QWidget *parent)
|
2009-03-02 15:14:12 +01:00
|
|
|
: QDialog(parent), m_ui(new Ui::AttachCoreDialog)
|
2009-03-02 14:04:03 +01:00
|
|
|
{
|
2009-03-02 15:14:12 +01:00
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
|
|
|
|
|
m_ui->execFileName->setExpectedKind(Core::Utils::PathChooser::File);
|
|
|
|
|
m_ui->execFileName->setPromptDialogTitle(tr("Select Executable"));
|
|
|
|
|
|
|
|
|
|
m_ui->coreFileName->setExpectedKind(Core::Utils::PathChooser::File);
|
2009-04-10 02:40:16 +02:00
|
|
|
m_ui->coreFileName->setPromptDialogTitle(tr("Select Core File"));
|
2009-03-02 15:14:12 +01:00
|
|
|
|
|
|
|
|
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setDefault(true);
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2009-03-02 15:14:12 +01:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
|
|
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AttachCoreDialog::~AttachCoreDialog()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2009-03-02 15:14:12 +01:00
|
|
|
QString AttachCoreDialog::executableFile() const
|
|
|
|
|
{
|
|
|
|
|
return m_ui->execFileName->path();
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
2009-03-02 15:14:12 +01:00
|
|
|
void AttachCoreDialog::setExecutableFile(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
m_ui->execFileName->setPath(fileName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString AttachCoreDialog::coreFile() const
|
|
|
|
|
{
|
|
|
|
|
return m_ui->coreFileName->path();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AttachCoreDialog::setCoreFile(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
m_ui->coreFileName->setPath(fileName);
|
|
|
|
|
}
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2009-05-04 14:47:45 +02:00
|
|
|
|
2009-03-02 14:04:03 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2009-05-04 14:47:45 +02:00
|
|
|
// Process model helpers
|
2009-03-02 14:04:03 +01:00
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-03-04 16:48:13 +01:00
|
|
|
static bool isUnixProcessId(const QString &procname)
|
2009-03-02 14:04:03 +01:00
|
|
|
{
|
|
|
|
|
for (int i = 0; i != procname.size(); ++i)
|
|
|
|
|
if (!procname.at(i).isDigit())
|
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 16:00:43 +01:00
|
|
|
// Determine UNIX processes by reading "/proc"
|
|
|
|
|
static QList<ProcData> unixProcessList()
|
2009-03-02 14:04:03 +01:00
|
|
|
{
|
2009-03-04 16:00:43 +01:00
|
|
|
QList<ProcData> rc;
|
2009-03-04 16:48:13 +01:00
|
|
|
const QStringList procIds = QDir(QLatin1String("/proc/")).entryList();
|
|
|
|
|
if (procIds.isEmpty())
|
2009-03-04 16:00:43 +01:00
|
|
|
return rc;
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2009-03-04 16:48:13 +01:00
|
|
|
foreach (const QString &procId, procIds) {
|
|
|
|
|
if (!isUnixProcessId(procId))
|
2009-03-02 14:04:03 +01:00
|
|
|
continue;
|
2009-03-04 16:00:43 +01:00
|
|
|
QString filename = QLatin1String("/proc/");
|
2009-03-04 16:48:13 +01:00
|
|
|
filename += procId;
|
2009-03-04 16:00:43 +01:00
|
|
|
filename += QLatin1String("/stat");
|
2009-03-02 14:04:03 +01:00
|
|
|
QFile file(filename);
|
|
|
|
|
file.open(QIODevice::ReadOnly);
|
2009-03-04 16:00:43 +01:00
|
|
|
const QStringList data = QString::fromLocal8Bit(file.readAll()).split(' ');
|
2009-03-02 14:04:03 +01:00
|
|
|
ProcData proc;
|
2009-03-04 16:48:13 +01:00
|
|
|
proc.ppid = procId;
|
2009-03-02 14:04:03 +01:00
|
|
|
proc.name = data.at(1);
|
2009-03-04 16:48:13 +01:00
|
|
|
if (proc.name.startsWith(QLatin1Char('(')) && proc.name.endsWith(QLatin1Char(')'))) {
|
|
|
|
|
proc.name.truncate(proc.name.size() - 1);
|
|
|
|
|
proc.name.remove(0, 1);
|
|
|
|
|
}
|
2009-03-02 14:04:03 +01:00
|
|
|
proc.state = data.at(2);
|
2009-03-04 16:48:13 +01:00
|
|
|
// PPID is element 3
|
2009-03-04 16:00:43 +01:00
|
|
|
rc.push_back(proc);
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
2009-03-04 16:00:43 +01:00
|
|
|
return rc;
|
|
|
|
|
}
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2009-03-05 17:30:29 +01:00
|
|
|
static QList<ProcData> processList()
|
2009-03-04 16:00:43 +01:00
|
|
|
{
|
|
|
|
|
#ifdef Q_OS_WIN
|
2009-03-05 17:30:29 +01:00
|
|
|
return winProcessList();
|
2009-03-04 16:00:43 +01:00
|
|
|
#else
|
2009-03-05 17:30:29 +01:00
|
|
|
return unixProcessList();
|
2009-03-04 16:00:43 +01:00
|
|
|
#endif
|
|
|
|
|
}
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2009-03-04 16:00:43 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// AttachExternalDialog
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-05-04 14:47:45 +02:00
|
|
|
AttachExternalDialog::AttachExternalDialog(QWidget *parent)
|
|
|
|
|
: QDialog(parent),
|
|
|
|
|
m_selfPid(QString::number(QCoreApplication::applicationPid())),
|
|
|
|
|
m_ui(new Ui::AttachExternalDialog),
|
|
|
|
|
m_model(new ProcessListFilterModel(this))
|
2009-03-04 16:00:43 +01:00
|
|
|
{
|
|
|
|
|
m_ui->setupUi(this);
|
2009-03-04 16:48:13 +01:00
|
|
|
okButton()->setDefault(true);
|
|
|
|
|
okButton()->setEnabled(false);
|
2009-03-04 16:00:43 +01:00
|
|
|
|
2009-03-05 17:30:29 +01:00
|
|
|
m_ui->procView->setModel(m_model);
|
2009-03-04 16:00:43 +01:00
|
|
|
m_ui->procView->setSortingEnabled(true);
|
|
|
|
|
|
|
|
|
|
connect(m_ui->buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
|
|
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
|
|
|
|
|
QPushButton *refreshButton = new QPushButton(tr("Refresh"));
|
|
|
|
|
connect(refreshButton, SIGNAL(clicked()), this, SLOT(rebuildProcessList()));
|
|
|
|
|
m_ui->buttonBox->addButton(refreshButton, QDialogButtonBox::ActionRole);
|
|
|
|
|
|
2009-03-05 17:30:29 +01:00
|
|
|
// Do not use activated, will be single click in Oxygen
|
|
|
|
|
connect(m_ui->procView, SIGNAL(doubleClicked(QModelIndex)),
|
2009-03-04 16:00:43 +01:00
|
|
|
this, SLOT(procSelected(QModelIndex)));
|
2009-03-04 16:48:13 +01:00
|
|
|
connect(m_ui->pidLineEdit, SIGNAL(textChanged(QString)),
|
|
|
|
|
this, SLOT(pidChanged(QString)));
|
|
|
|
|
|
2009-03-04 16:00:43 +01:00
|
|
|
connect(m_ui->filterClearToolButton, SIGNAL(clicked()),
|
|
|
|
|
m_ui->filterLineEdit, SLOT(clear()));
|
|
|
|
|
connect(m_ui->filterLineEdit, SIGNAL(textChanged(QString)),
|
2009-03-05 17:30:29 +01:00
|
|
|
m_model, SLOT(setFilterFixedString(QString)));
|
2009-03-04 16:00:43 +01:00
|
|
|
|
|
|
|
|
rebuildProcessList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AttachExternalDialog::~AttachExternalDialog()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 16:48:13 +01:00
|
|
|
QPushButton *AttachExternalDialog::okButton() const
|
|
|
|
|
{
|
|
|
|
|
return m_ui->buttonBox->button(QDialogButtonBox::Ok);
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 16:00:43 +01:00
|
|
|
void AttachExternalDialog::rebuildProcessList()
|
|
|
|
|
{
|
2009-03-05 17:30:29 +01:00
|
|
|
m_model->populate(processList(), m_selfPid);
|
2009-03-02 15:14:12 +01:00
|
|
|
m_ui->procView->expandAll();
|
|
|
|
|
m_ui->procView->resizeColumnToContents(0);
|
|
|
|
|
m_ui->procView->resizeColumnToContents(1);
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
2009-03-04 16:00:43 +01:00
|
|
|
void AttachExternalDialog::procSelected(const QModelIndex &proxyIndex)
|
2009-03-02 14:04:03 +01:00
|
|
|
{
|
2009-03-05 17:30:29 +01:00
|
|
|
const QString proccessId = m_model->processIdAt(proxyIndex);
|
|
|
|
|
if (!proccessId.isEmpty()) {
|
|
|
|
|
m_ui->pidLineEdit->setText(proccessId);
|
2009-03-04 16:48:13 +01:00
|
|
|
if (okButton()->isEnabled())
|
|
|
|
|
okButton()->animateClick();
|
2009-03-04 16:00:43 +01:00
|
|
|
}
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int AttachExternalDialog::attachPID() const
|
|
|
|
|
{
|
2009-03-02 15:14:12 +01:00
|
|
|
return m_ui->pidLineEdit->text().toInt();
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
2009-03-04 16:48:13 +01:00
|
|
|
void AttachExternalDialog::pidChanged(const QString &pid)
|
|
|
|
|
{
|
2009-05-04 14:47:45 +02:00
|
|
|
bool enabled = !pid.isEmpty() && pid != QLatin1String("0") && pid != m_selfPid;;
|
|
|
|
|
okButton()->setEnabled(enabled);
|
2009-03-04 16:48:13 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-04 14:47:45 +02:00
|
|
|
|
2009-03-02 14:04:03 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2009-05-06 13:27:11 +02:00
|
|
|
// StartRemoteDialog
|
2009-03-02 14:04:03 +01:00
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-05-06 13:27:11 +02:00
|
|
|
StartRemoteDialog::StartRemoteDialog(QWidget *parent)
|
2009-05-04 14:47:45 +02:00
|
|
|
: QDialog(parent),
|
2009-05-06 13:27:11 +02:00
|
|
|
m_ui(new Ui::StartRemoteDialog)
|
2009-03-02 14:04:03 +01:00
|
|
|
{
|
2009-03-02 15:14:12 +01:00
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setDefault(true);
|
2009-05-04 14:47:45 +02:00
|
|
|
|
2009-03-02 15:14:12 +01:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
|
|
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-06 13:27:11 +02:00
|
|
|
StartRemoteDialog::~StartRemoteDialog()
|
2009-03-02 15:14:12 +01:00
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-06 13:27:11 +02:00
|
|
|
void StartRemoteDialog::setRemoteChannel(const QString &channel)
|
2009-03-05 17:30:29 +01:00
|
|
|
{
|
2009-05-04 14:47:45 +02:00
|
|
|
m_ui->channelLineEdit->setText(channel);
|
2009-03-05 17:30:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-06 13:27:11 +02:00
|
|
|
QString StartRemoteDialog::remoteChannel() const
|
2009-03-02 14:04:03 +01:00
|
|
|
{
|
2009-05-04 14:47:45 +02:00
|
|
|
return m_ui->channelLineEdit->text();
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-06 13:27:11 +02:00
|
|
|
void StartRemoteDialog::setRemoteArchitectures(const QStringList &list)
|
2009-05-04 14:47:45 +02:00
|
|
|
{
|
|
|
|
|
m_ui->architectureComboBox->clear();
|
|
|
|
|
if (!list.isEmpty()) {
|
|
|
|
|
m_ui->architectureComboBox->insertItems(0, list);
|
|
|
|
|
m_ui->architectureComboBox->setCurrentIndex(0);
|
2009-03-05 17:30:29 +01:00
|
|
|
}
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-06 13:27:11 +02:00
|
|
|
void StartRemoteDialog::setRemoteArchitecture(const QString &arch)
|
2009-03-02 14:04:03 +01:00
|
|
|
{
|
2009-05-04 14:47:45 +02:00
|
|
|
int index = m_ui->architectureComboBox->findText(arch);
|
|
|
|
|
if (index != -1)
|
|
|
|
|
m_ui->architectureComboBox->setCurrentIndex(index);
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
2009-05-06 13:27:11 +02:00
|
|
|
QString StartRemoteDialog::remoteArchitecture() const
|
2009-03-05 17:30:29 +01:00
|
|
|
{
|
2009-05-04 14:47:45 +02:00
|
|
|
int index = m_ui->architectureComboBox->currentIndex();
|
|
|
|
|
return m_ui->architectureComboBox->itemText(index);
|
2009-03-05 17:30:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-03-02 14:04:03 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// StartExternalDialog
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StartExternalDialog::StartExternalDialog(QWidget *parent)
|
2009-03-02 15:14:12 +01:00
|
|
|
: QDialog(parent), m_ui(new Ui::StartExternalDialog)
|
2009-03-02 14:04:03 +01:00
|
|
|
{
|
2009-03-02 15:14:12 +01:00
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
m_ui->execFile->setExpectedKind(Core::Utils::PathChooser::File);
|
|
|
|
|
m_ui->execFile->setPromptDialogTitle(tr("Select Executable"));
|
|
|
|
|
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setDefault(true);
|
2009-03-02 14:04:03 +01:00
|
|
|
|
|
|
|
|
//execLabel->setHidden(false);
|
|
|
|
|
//execEdit->setHidden(false);
|
|
|
|
|
//browseButton->setHidden(false);
|
|
|
|
|
|
2009-03-02 15:14:12 +01:00
|
|
|
m_ui->execLabel->setText(tr("Executable:"));
|
|
|
|
|
m_ui->argLabel->setText(tr("Arguments:"));
|
2009-03-02 14:04:03 +01:00
|
|
|
|
2009-03-02 15:14:12 +01:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
|
|
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StartExternalDialog::~StartExternalDialog()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StartExternalDialog::setExecutableFile(const QString &str)
|
|
|
|
|
{
|
2009-03-02 15:14:12 +01:00
|
|
|
m_ui->execFile->setPath(str);
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StartExternalDialog::setExecutableArguments(const QString &str)
|
|
|
|
|
{
|
2009-03-02 15:14:12 +01:00
|
|
|
m_ui->argsEdit->setText(str);
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString StartExternalDialog::executableFile() const
|
|
|
|
|
{
|
2009-03-02 15:14:12 +01:00
|
|
|
return m_ui->execFile->path();
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString StartExternalDialog::executableArguments() const
|
|
|
|
|
{
|
2009-03-02 15:14:12 +01:00
|
|
|
return m_ui->argsEdit->text();
|
2009-03-02 14:04:03 +01:00
|
|
|
}
|
2009-03-05 17:30:29 +01:00
|
|
|
|
2009-05-04 14:47:45 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|