2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-05-09 12:46:33 +02: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
|
2011-05-09 12:46:33 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-05-09 12:46:33 +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.
|
2011-05-09 12:46:33 +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
|
2011-05-09 12:46:33 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-05-09 12:46:33 +02:00
|
|
|
|
2011-04-04 15:03:31 +02:00
|
|
|
#include "qmlprofilerattachdialog.h"
|
2013-04-26 10:23:14 +02:00
|
|
|
|
|
|
|
|
#include <projectexplorer/kitchooser.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/id.h>
|
|
|
|
|
|
|
|
|
|
#include <QSpinBox>
|
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
|
#include <QFormLayout>
|
|
|
|
|
#include <QPushButton>
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
2011-04-04 15:03:31 +02:00
|
|
|
|
|
|
|
|
namespace QmlProfiler {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2013-04-26 10:23:14 +02:00
|
|
|
class QmlProfilerAttachDialogPrivate
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
QSpinBox *portSpinBox;
|
|
|
|
|
KitChooser *kitChooser;
|
|
|
|
|
};
|
|
|
|
|
|
2011-04-04 15:03:31 +02:00
|
|
|
QmlProfilerAttachDialog::QmlProfilerAttachDialog(QWidget *parent) :
|
|
|
|
|
QDialog(parent),
|
2013-04-26 10:23:14 +02:00
|
|
|
d(new QmlProfilerAttachDialogPrivate)
|
2011-04-04 15:03:31 +02:00
|
|
|
{
|
2013-04-26 10:23:14 +02:00
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
|
|
|
setWindowTitle(tr("Start QML Profiler"));
|
2011-04-04 15:03:31 +02:00
|
|
|
|
2013-04-26 10:23:14 +02:00
|
|
|
d->kitChooser = new KitChooser(this);
|
|
|
|
|
d->kitChooser->populate();
|
2011-04-04 15:03:31 +02:00
|
|
|
|
2013-04-26 10:23:14 +02:00
|
|
|
d->portSpinBox = new QSpinBox(this);
|
|
|
|
|
d->portSpinBox->setMaximum(65535);
|
|
|
|
|
d->portSpinBox->setValue(3768);
|
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(this);
|
|
|
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
|
|
|
|
|
buttonBox->button(QDialogButtonBox::Ok)->setDefault(true);
|
|
|
|
|
|
|
|
|
|
QFormLayout *formLayout = new QFormLayout();
|
|
|
|
|
formLayout->addRow(tr("Kit:"), d->kitChooser);
|
|
|
|
|
formLayout->addRow(tr("&Port:"), d->portSpinBox);
|
|
|
|
|
|
|
|
|
|
QVBoxLayout *verticalLayout = new QVBoxLayout(this);
|
|
|
|
|
verticalLayout->addLayout(formLayout);
|
|
|
|
|
verticalLayout->addWidget(buttonBox);
|
|
|
|
|
|
|
|
|
|
connect(buttonBox, SIGNAL(accepted()), SLOT(accept()));
|
|
|
|
|
connect(buttonBox, SIGNAL(rejected()), SLOT(reject()));
|
2011-04-04 15:03:31 +02:00
|
|
|
}
|
|
|
|
|
|
2013-04-26 10:23:14 +02:00
|
|
|
QmlProfilerAttachDialog::~QmlProfilerAttachDialog()
|
2011-04-04 15:03:31 +02:00
|
|
|
{
|
2013-04-26 10:23:14 +02:00
|
|
|
delete d;
|
2011-04-04 15:03:31 +02:00
|
|
|
}
|
|
|
|
|
|
2013-04-26 10:23:14 +02:00
|
|
|
int QmlProfilerAttachDialog::port() const
|
2011-10-15 11:32:55 +02:00
|
|
|
{
|
2013-04-26 10:23:14 +02:00
|
|
|
return d->portSpinBox->value();
|
2011-10-15 11:32:55 +02:00
|
|
|
}
|
|
|
|
|
|
2013-04-26 10:23:14 +02:00
|
|
|
void QmlProfilerAttachDialog::setPort(const int port)
|
2011-04-04 15:03:31 +02:00
|
|
|
{
|
2013-04-26 10:23:14 +02:00
|
|
|
d->portSpinBox->setValue(port);
|
2011-04-04 15:03:31 +02:00
|
|
|
}
|
|
|
|
|
|
2013-04-26 10:23:14 +02:00
|
|
|
ProjectExplorer::Kit *QmlProfilerAttachDialog::kit() const
|
2011-04-04 15:03:31 +02:00
|
|
|
{
|
2013-04-26 10:23:14 +02:00
|
|
|
return d->kitChooser->currentKit();
|
2011-04-04 15:03:31 +02:00
|
|
|
}
|
|
|
|
|
|
2013-04-26 10:23:14 +02:00
|
|
|
void QmlProfilerAttachDialog::setKitId(const Core::Id &id)
|
2011-10-15 11:32:55 +02:00
|
|
|
{
|
2013-04-26 10:23:14 +02:00
|
|
|
d->kitChooser->setCurrentKitId(id);
|
2011-10-15 11:32:55 +02:00
|
|
|
}
|
|
|
|
|
|
2011-04-04 15:03:31 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlProfiler
|