data: added icon for gradle project setup

This commit is contained in:
mlangkabel
2017-10-03 13:25:13 +02:00
parent 2d0634ef10
commit e587f081d6
4 changed files with 5 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

@@ -563,6 +563,9 @@
<Component Id='Empty_icon_Png' Guid='*' Win64="$(var.Win64)">
<File Id='Empty_icon' Name='empty_icon.png' DiskId='1' Source='./../../../bin/app/data/gui/icon/empty_icon.png' KeyPath='yes' />
</Component>
<Component Id='Gradle_icon_Png' Guid='*' Win64="$(var.Win64)">
<File Id='Gradle_icon' Name='gradle_icon.png' DiskId='1' Source='./../../../bin/app/data/gui/icon/gradle_icon.png' KeyPath='yes' />
</Component>
<Component Id='Java_icon_Png' Guid='*' Win64="$(var.Win64)">
<File Id='Java_icon' Name='java_icon.png' DiskId='1' Source='./../../../bin/app/data/gui/icon/java_icon.png' KeyPath='yes' />
</Component>
@@ -328,6 +328,7 @@
<ComponentRef Id='SourcetrailIco'/>
<ComponentRef Id='Cpp_icon_Png'/>
<ComponentRef Id='Empty_icon_Png'/>
<ComponentRef Id='Gradle_icon_Png'/>
<ComponentRef Id='Java_icon_Png'/>
<ComponentRef Id='Logo_1024_1024_Png'/>
<ComponentRef Id='Mvn_icon_Png'/>
@@ -44,7 +44,7 @@ void QtProjectWizzardContentSelect::populate(QGridLayout* layout, int& row)
m_sourceGroupTypeIconName[SOURCE_GROUP_CXX_VS] = "vs_icon";
m_sourceGroupTypeIconName[SOURCE_GROUP_JAVA_EMPTY] = "empty_icon";
m_sourceGroupTypeIconName[SOURCE_GROUP_JAVA_MAVEN] = "mvn_icon";
m_sourceGroupTypeIconName[SOURCE_GROUP_JAVA_GRADLE] = "empty_icon"; // Todo: make and use gradle icon here
m_sourceGroupTypeIconName[SOURCE_GROUP_JAVA_GRADLE] = "gradle_icon";
// define descriptions for each kind of Source Group
m_sourceGroupTypeDescriptions[SOURCE_GROUP_C_EMPTY] = "Create a new Sourcetrail Source Group by defining which C files will be indexed.";