From f0b1c33ba47ab5f0523e771ee40e05cec2a175c4 Mon Sep 17 00:00:00 2001
From: Roberto Raggi <roberto.raggi@nokia.com>
Date: Tue, 19 Jan 2010 17:41:02 +0100
Subject: [PATCH] Added a few more snippets

---
 src/plugins/qmljseditor/qmlcodecompletion.cpp | 44 +++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/src/plugins/qmljseditor/qmlcodecompletion.cpp b/src/plugins/qmljseditor/qmlcodecompletion.cpp
index 942b013e627..af7391854ba 100644
--- a/src/plugins/qmljseditor/qmlcodecompletion.cpp
+++ b/src/plugins/qmljseditor/qmlcodecompletion.cpp
@@ -145,6 +145,50 @@ int QmlCodeCompletion::startCompletion(TextEditor::ITextEditable *editor)
     item.data = QVariant::fromValue(QString("Item {\nwidth: $100$;\nheight: 100;\n$$\n}"));
     m_completions.append(item);
 
+    item.text = QLatin1String("BorderImage - declaration");
+    item.data = QLatin1String("BorderImage {\n"
+                              "id: $name$;\n"
+                              "width: $100$; height: $100$;\n"
+                              "border.left: $2$; border.top: $2$;\n"
+                              "border.right: $2$; border.bottom: $2$;\n"
+                              "source: \"$name$\";\n"
+                              "}\n");
+    m_completions.append(item);
+
+    item.text = QLatin1String("State - declaration");
+    item.data = QLatin1String("State {\n"
+                              "name: \"$state$;\"\n"
+                              "PropertyChanges {\n"
+                              "target: $target$;\n"
+                              "$$\n"
+                              "}\n"
+                              "}\n");
+    m_completions.append(item);
+
+    item.text = QLatin1String("states - declaration");
+    item.data = QLatin1String("states: [\n"
+                              "State {\n"
+                              "name: \"$state$\";\n"
+                              "PropertyChanges {\n"
+                              "target: $target$;\n"
+                              "$$\n"
+                              "}\n"
+                              "}\n"
+                              "]\n");
+    m_completions.append(item);
+
+    item.text = QLatin1String("property - declaration");
+    item.data = QLatin1String("property $var$ $name$: $value$;\n");
+    m_completions.append(item);
+
+    item.text = QLatin1String("readonly property - declaration");
+    item.data = QLatin1String("readonly property $var$ $name$: $value$;\n");
+    m_completions.append(item);
+
+    item.text = QLatin1String("NumericAnimation - declaration");
+    item.data = QLatin1String("NumberAnimation { matchTargets: \"$target$\"; matchProperties: \"$properties$\"; duration: $1000$ }\n");
+    m_completions.append(item);
+
     return pos;
 }
 
-- 
GitLab