diff --git a/src/libs/utils/newclasswidget.cpp b/src/libs/utils/newclasswidget.cpp
index afec2c0cf5ddb318a7faa6b73ed3b74035cdec3f..bd946d707860a3720d309e026926c7645169df67 100644
--- a/src/libs/utils/newclasswidget.cpp
+++ b/src/libs/utils/newclasswidget.cpp
@@ -407,6 +407,9 @@ static inline NewClassWidget::ClassType classTypeForBaseClass(const QString &bas
     if (baseClass == QLatin1String("QWidget") || baseClass == QLatin1String("QMainWindow")
         || baseClass == QLatin1String("QDialog"))
         return NewClassWidget::ClassInheritsQWidget;
+    // Declarative Items
+    if (baseClass == QLatin1String("QDeclarativeItem"))
+        return NewClassWidget::ClassInheritsQDeclarativeItem;
     return NewClassWidget::NoClassType;
 }
 
diff --git a/src/libs/utils/newclasswidget.h b/src/libs/utils/newclasswidget.h
index 68962c2d1b99808d4931ed743f43f80155577fd6..ddf8be2886f11223d67c30ec93f1338fd42a0f76 100644
--- a/src/libs/utils/newclasswidget.h
+++ b/src/libs/utils/newclasswidget.h
@@ -78,6 +78,7 @@ class QTCREATOR_UTILS_EXPORT NewClassWidget : public QWidget
     Q_ENUMS(ClassType)
 public:
     enum ClassType { NoClassType, ClassInheritsQObject, ClassInheritsQWidget,
+                     ClassInheritsQDeclarativeItem,
                      SharedDataClass };
 
     explicit NewClassWidget(QWidget *parent = 0);
diff --git a/src/libs/utils/newclasswidget.ui b/src/libs/utils/newclasswidget.ui
index e23ef8ed4b029ba528eaea20858bd15166c218c7..dc3c315e86b1e6e985f63f380f76ee31c9fbff71 100644
--- a/src/libs/utils/newclasswidget.ui
+++ b/src/libs/utils/newclasswidget.ui
@@ -69,6 +69,11 @@
        <string>Inherits QWidget</string>
       </property>
      </item>
+     <item>
+      <property name="text">
+       <string>Inherits QDeclarativeItem</string>
+      </property>
+     </item>
      <item>
       <property name="text">
        <string>Based on QSharedData</string>
@@ -175,7 +180,7 @@
     </widget>
    </item>
    <item row="8" column="1">
-    <widget class="Utils::PathChooser" name="pathChooser" native="true"/>
+    <widget class="Utils::PathChooser" name="pathChooser"/>
    </item>
   </layout>
  </widget>
diff --git a/src/plugins/cppeditor/cppclasswizard.cpp b/src/plugins/cppeditor/cppclasswizard.cpp
index 2333cc4daff97ffea1a4e883f81f0d7b7a73f2fc..3f7e66b56df1faefca3340651329edf96f6ae3d2 100644
--- a/src/plugins/cppeditor/cppclasswizard.cpp
+++ b/src/plugins/cppeditor/cppclasswizard.cpp
@@ -69,7 +69,8 @@ ClassNamePage::ClassNamePage(QWidget *parent) :
     m_newClassWidget->setBaseClassChoices(QStringList() << QString()
             << QLatin1String("QObject")
             << QLatin1String("QWidget")
-            << QLatin1String("QMainWindow"));
+            << QLatin1String("QMainWindow")
+            << QLatin1String("QDeclarativeItem"));
     m_newClassWidget->setBaseClassEditable(true);
     m_newClassWidget->setFormInputVisible(false);
     m_newClassWidget->setNamespacesEnabled(true);
@@ -257,6 +258,13 @@ bool CppClassWizard::generateHeaderAndSource(const CppClassWizardParameters &par
         parentQObjectClass = QLatin1String("QWidget");
         defineQObjectMacro = true;
         break;
+    case Utils::NewClassWidget::ClassInheritsQDeclarativeItem:
+        parentQObjectClass = QLatin1String("QDeclarativeItem");
+        defineQObjectMacro = true;
+        break;
+    case Utils::NewClassWidget::NoClassType:
+    case Utils::NewClassWidget::SharedDataClass:
+        break;
     }
     const QString baseClass = params.baseClass.isEmpty()
                               && params.classType != Utils::NewClassWidget::NoClassType ?