summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/kitmanagerconfigwidget.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2012-09-03 18:31:44 +0200
committerEike Ziller <eike.ziller@nokia.com>2012-09-04 15:24:25 +0200
commit8ba422d07c4371a47b575bdef3051554cd4063e0 (patch)
treeafe879082b3b5d35eacc1db3142ece2076cdb3bd /src/plugins/projectexplorer/kitmanagerconfigwidget.cpp
parent328d205b624a94cf2f515ae8934b86b934c43f48 (diff)
downloadqt-creator-8ba422d07c4371a47b575bdef3051554cd4063e0.tar.gz
s/profile/kit/
* Rename profiles to kits. * Update some strings: * projects mode has a Kits tab, not a Targets tab. * " Settings" was dropped from the sub-tabs of the Kits tab * menu entry "Build/Open Build/Run Target Selector" was renamed to "Build/Open Build and Run Kits Selector". * Use "Kit" instead of "Target" in miniprojecttargetselector. (The class was not renamed as it does indeed select targets, not kits) Change-Id: I0727e086e2dfa0e8aaaf89fdc6f2e3596c7a4314 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/projectexplorer/kitmanagerconfigwidget.cpp')
-rw-r--r--src/plugins/projectexplorer/kitmanagerconfigwidget.cpp164
1 files changed, 164 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/kitmanagerconfigwidget.cpp b/src/plugins/projectexplorer/kitmanagerconfigwidget.cpp
new file mode 100644
index 0000000000..452127be96
--- /dev/null
+++ b/src/plugins/projectexplorer/kitmanagerconfigwidget.cpp
@@ -0,0 +1,164 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: http://www.qt-project.org/
+**
+**
+** GNU Lesser General Public License Usage
+**
+** 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, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** Other Usage
+**
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**************************************************************************/
+
+#include "kitmanagerconfigwidget.h"
+
+#include "kit.h"
+
+#include <utils/detailswidget.h>
+
+#include <QHBoxLayout>
+#include <QFileDialog>
+#include <QGridLayout>
+#include <QLabel>
+#include <QToolButton>
+#include <QScrollArea>
+#include <QSizePolicy>
+#include <QStyle>
+
+namespace ProjectExplorer {
+namespace Internal {
+
+KitManagerConfigWidget::KitManagerConfigWidget(Kit *k, QWidget *parent) :
+ KitConfigWidget(parent),
+ m_layout(new QGridLayout),
+ m_iconButton(new QToolButton),
+ m_kit(k)
+{
+ m_layout->setMargin(0);
+ m_layout->setSpacing(6);
+ m_layout->setContentsMargins(0, 0, 0, 0);
+
+ QVBoxLayout *top = new QVBoxLayout(this);
+ top->setMargin(0);
+
+ QScrollArea *scroll = new QScrollArea;
+ scroll->setFrameShape(QFrame::NoFrame);
+ scroll->setWidgetResizable(true);
+ scroll->setFocusPolicy(Qt::NoFocus);
+ top->addWidget(scroll);
+
+ Utils::DetailsWidget *details = new Utils::DetailsWidget;
+ details->setState(Utils::DetailsWidget::NoSummary);
+ scroll->setWidget(details);
+
+ QWidget *widget = new QWidget;
+ details->setWidget(widget);
+
+ QVBoxLayout *iconLayout = new QVBoxLayout;
+ iconLayout->addWidget(m_iconButton);
+ iconLayout->addStretch();
+
+ QGridLayout *masterLayout = new QGridLayout(widget);
+ masterLayout->setMargin(0);
+ masterLayout->setContentsMargins(6, 0, 6, 0);
+ masterLayout->addLayout(iconLayout, 0, 0);
+ masterLayout->addLayout(m_layout, 0, 1);
+ masterLayout->setRowStretch(1, 1);
+
+ discard();
+
+ connect(m_iconButton, SIGNAL(clicked()), this, SLOT(setIcon()));
+}
+
+QString KitManagerConfigWidget::displayName() const
+{
+ return tr("Kits");
+}
+
+void KitManagerConfigWidget::apply()
+{
+ foreach (KitConfigWidget *w, m_widgets)
+ w->apply();
+ m_kit->setIconPath(m_iconPath);
+}
+
+void KitManagerConfigWidget::discard()
+{
+ foreach (KitConfigWidget *w, m_widgets)
+ w->discard();
+ m_iconButton->setIcon(m_kit->icon());
+ m_iconPath = m_kit->iconPath();
+}
+
+bool KitManagerConfigWidget::isDirty() const
+{
+ foreach (KitConfigWidget *w, m_widgets)
+ if (w->isDirty())
+ return true;
+ return m_kit->iconPath() != m_iconPath;
+}
+
+void KitManagerConfigWidget::addConfigWidget(ProjectExplorer::KitConfigWidget *widget)
+{
+ Q_ASSERT(widget);
+ Q_ASSERT(!m_widgets.contains(widget));
+
+ connect(widget, SIGNAL(dirty()), this, SIGNAL(dirty()));
+ int row = m_layout->rowCount();
+ QLabel *label = new QLabel(widget->displayName());
+ label->setToolTip(widget->toolTip());
+ m_layout->addWidget(label, row, 0,
+ Qt::Alignment(style()->styleHint(QStyle::SH_FormLayoutLabelAlignment)));
+ m_layout->addWidget(widget, row, 1);
+ QWidget *buttonWidget = widget->buttonWidget();
+ if (buttonWidget) {
+ if (buttonWidget->toolTip().isEmpty())
+ buttonWidget->setToolTip(widget->toolTip());
+ m_layout->addWidget(widget->buttonWidget(), row, 2);
+ }
+
+ m_widgets.append(widget);
+}
+
+void KitManagerConfigWidget::makeReadOnly()
+{
+ foreach (KitConfigWidget *w, m_widgets)
+ w->makeReadOnly();
+ m_iconButton->setEnabled(false);
+}
+
+void KitManagerConfigWidget::setIcon()
+{
+ const QString path = QFileDialog::getOpenFileName(0, tr("Select Icon"), m_iconPath, tr("Images (*.png *.xpm *.jpg)"));
+ if (path.isEmpty())
+ return;
+
+ const QIcon icon = QIcon(path);
+ if (icon.isNull())
+ return;
+
+ m_iconButton->setIcon(icon);
+ m_iconPath = path;
+ emit dirty();
+}
+
+} // namespace Internal
+} // namespace ProjectExplorer