summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/targetsettingspanel.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2010-02-08 15:50:06 +0100
committerTobias Hunger <tobias.hunger@nokia.com>2010-02-09 16:57:37 +0100
commitd1bdfcc363970eca53077cdab79de2d3cf24218a (patch)
tree100cc0dc41f660b72277fa018c8a46454d0686b4 /src/plugins/projectexplorer/targetsettingspanel.h
parent8ee2521fe53cec55534b079b0d5b21b6b028676f (diff)
downloadqt-creator-d1bdfcc363970eca53077cdab79de2d3cf24218a.tar.gz
Integrate target support
* Ease cross device development by introducing 'targets' which group build- and runsettings that are valid for this one target Most of the kudos for the code review go to dt. Con, thorbjorn, ckandler and others did also review parts of this patch. Reviewed-by: dt
Diffstat (limited to 'src/plugins/projectexplorer/targetsettingspanel.h')
-rw-r--r--src/plugins/projectexplorer/targetsettingspanel.h104
1 files changed, 104 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/targetsettingspanel.h b/src/plugins/projectexplorer/targetsettingspanel.h
new file mode 100644
index 0000000000..3eb7834b86
--- /dev/null
+++ b/src/plugins/projectexplorer/targetsettingspanel.h
@@ -0,0 +1,104 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (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 http://qt.nokia.com/contact.
+**
+**************************************************************************/
+
+#ifndef TARGETSETTINGSPANEL_H
+#define TARGETSETTINGSPANEL_H
+
+#include "iprojectproperties.h"
+
+#include <QtGui/QStackedWidget>
+#include <QtGui/QWidget>
+
+namespace ProjectExplorer {
+
+class Target;
+
+namespace Internal {
+
+const char * const TARGETSETTINGS_PANEL_ID("ProjectExplorer.TargetSettingsPanel");
+
+class TargetSettingsWidget;
+class PanelsWidget;
+
+class TargetSettingsPanelFactory : public IPanelFactory
+{
+public:
+ QString id() const;
+ QString displayName() const;
+ bool supports(Project *project);
+ bool supports(Target *target);
+ IPropertiesPanel *createPanel(Project *project);
+ IPropertiesPanel *createPanel(Target *target);
+};
+
+class TargetSettingsPanelWidget;
+
+class TargetSettingsPanel : public IPropertiesPanel
+{
+public:
+ TargetSettingsPanel(Project *project);
+ ~TargetSettingsPanel();
+ QString displayName() const;
+ QWidget *widget() const;
+ QIcon icon() const;
+ PanelFlags flags() const { return IPropertiesPanel::NoAutomaticStyle; }
+
+private:
+ TargetSettingsPanelWidget *m_widget;
+};
+
+class TargetSettingsPanelWidget : public QWidget
+{
+ Q_OBJECT
+public:
+ TargetSettingsPanelWidget(Project *project);
+ ~TargetSettingsPanelWidget();
+
+ void setupUi();
+
+private slots:
+ void currentTargetIndexChanged(int targetIndex, int subIndex);
+ void addTarget();
+ void targetAdded(ProjectExplorer::Target *target);
+ void targetRemoved(ProjectExplorer::Target *target);
+ void activeTargetChanged(ProjectExplorer::Target *target);
+
+private:
+ int m_currentIndex;
+ Project *m_project;
+ TargetSettingsWidget *m_selector;
+ QStackedWidget *m_centralWidget;
+ QWidget *m_noTargetLabel;
+ PanelsWidget *m_panelWidgets[2];
+};
+
+} // namespace Internal
+} // namespace ProjectExplorer
+
+#endif // TARGETSETTINGSPANEL_H