aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qqcstylegenerator/howto.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qqcstylegenerator/howto.txt')
-rw-r--r--tools/qqcstylegenerator/howto.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/qqcstylegenerator/howto.txt b/tools/qqcstylegenerator/howto.txt
index 30bd601188..31ffcce54d 100644
--- a/tools/qqcstylegenerator/howto.txt
+++ b/tools/qqcstylegenerator/howto.txt
@@ -13,3 +13,11 @@ If you want to use compile time selection of the style, import the style directl
<code>import "qrc:/qt/qml/@styleName@"</code>
+The style also contains theme icons. In order to use them, you need to add the following line to main.cpp:
+
+<code>QIcon::setThemeName("@styleName@");</code>
+
+You can then use the them from e.g a Button:
+
+<code>Button { icon.name: "navigation_settings" }</code>
+