Skip to content
Snippets Groups Projects
Commit 0e2c7b43 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

Polished the project manager, wizard titles, compiler warnings.

parent b210943b
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,33 @@
<property name="windowTitle">
<string>WizardPage</string>
</property>
<property name="title">
<string>Plugin and Collection Class Information</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="subTitleLabel">
<property name="text">
<string>Specify the properties of the plugin library and the collection class.</string>
</property>
</widget>
</item>
<item>
<spacer name="subTitleSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>0</width>
<height>10</height>
</size>
</property>
</spacer>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
......
......@@ -7,14 +7,17 @@
<x>0</x>
<y>0</y>
<width>668</width>
<height>430</height>
<height>454</height>
</rect>
</property>
<property name="windowTitle">
<string>Custom Qt Widget Wizard</string>
</property>
<property name="title">
<string>Custom Widget List</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<item row="2" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>Widget &amp;Classes:</string>
......@@ -24,7 +27,7 @@
</property>
</widget>
</item>
<item row="0" column="1" rowspan="2">
<item row="2" column="1" rowspan="2">
<widget class="QWidget" name="tabStackWidget" native="true">
<property name="minimumSize">
<size>
......@@ -34,7 +37,7 @@
</property>
</widget>
</item>
<item row="1" column="0">
<item row="3" column="0">
<widget class="Qt4ProjectManager::Internal::ClassList" name="classList">
<property name="minimumSize">
<size>
......@@ -44,6 +47,29 @@
</property>
</widget>
</item>
<item row="0" column="0" colspan="2">
<widget class="QLabel" name="subTitleLabel">
<property name="text">
<string>Specify the list of custom widgets and their properties.</string>
</property>
</widget>
</item>
<item row="1" column="0">
<spacer name="titleSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>0</width>
<height>10</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<customwidgets>
......
......@@ -308,6 +308,10 @@ void Qt4ProjectConfigWidget::updateToolChainCombo()
m_ui->toolChainComboBox->addItem(tr("gcce"), qVariantFromValue(ProjectExplorer::ToolChain::GCCE));
break;
#endif
case ProjectExplorer::ToolChain::OTHER:
case ProjectExplorer::ToolChain::INVALID:
case ProjectExplorer::ToolChain::UNKNOWN:
break;
}
}
m_ui->toolChainComboBox->setEnabled(toolchains.size() > 1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment