aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/kitmanagerconfigwidget.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2014-04-25 15:18:36 +0200
committerFriedemann Kleint <Friedemann.Kleint@digia.com>2014-04-28 14:50:04 +0200
commite933524a4f42e87fbd9419aac674b85682f64ee5 (patch)
tree52aeadbe75e5cff7157de22f070598b72b12c83f /src/plugins/projectexplorer/kitmanagerconfigwidget.h
parent063b95d970ea2211ff0454926dec373398da2b08 (diff)
Make a kit's file system friendly name configureable.
This makes it possible to use concise names for shadow-build directories, for example {projectname}_5s for Qt 5 / stable instead of the long, auto-generated names. Also, users can then manually configure names for kits with non-latin names, which would otherwise result in underscores and dashes with numbers. Change-Id: If0eab746942246d1aba6a5dd04f59d3219be47b8 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/kitmanagerconfigwidget.h')
-rw-r--r--src/plugins/projectexplorer/kitmanagerconfigwidget.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/kitmanagerconfigwidget.h b/src/plugins/projectexplorer/kitmanagerconfigwidget.h
index 13e79c8305..0187b43623 100644
--- a/src/plugins/projectexplorer/kitmanagerconfigwidget.h
+++ b/src/plugins/projectexplorer/kitmanagerconfigwidget.h
@@ -78,6 +78,7 @@ signals:
private slots:
void setIcon();
void setDisplayName();
+ void setFileSystemFriendlyName();
void workingCopyWasUpdated(ProjectExplorer::Kit *k);
void kitWasUpdated(ProjectExplorer::Kit *k);
void updateMutableState();
@@ -95,6 +96,7 @@ private:
QGridLayout *m_layout;
QToolButton *m_iconButton;
QLineEdit *m_nameEdit;
+ QLineEdit *m_fileSystemFriendlyNameLineEdit;
QList<KitConfigWidget *> m_widgets;
QList<QLabel *> m_labels;
Kit *m_kit;