QmlDesigner.Controls: Adding missing items to library

Change-Id: I96b7916b4ce64c404c175e72edc2b0a3ef015155
Reviewed-by: Marco Bubke <marco.bubke@digia.com>
This commit is contained in:
Thomas Hartmann
2013-04-18 15:58:00 +02:00
parent 3110c28cc1
commit 63088a000d

View File

@@ -235,6 +235,23 @@ MetaInfo {
} }
} }
Type {
name: "QtQuick.Controls.ToolButton"
icon: ":/desktopplugin/images/button16.png"
ItemLibraryEntry {
name: "Tool Button"
category: "Qt Quick - Controls"
libraryIcon: ":/desktopplugin/images/button.png"
version: "1.0"
requiredImport: "QtQuick.Controls"
Property { name: "width"; type: "int"; value: 360; }
Property { name: "height"; type: "int"; value: 50; }
}
}
Type { Type {
name: "QtQuick.Controls.ToolBar" name: "QtQuick.Controls.ToolBar"
icon: ":/desktopplugin/images/toolbar16.png" icon: ":/desktopplugin/images/toolbar16.png"
@@ -251,6 +268,22 @@ MetaInfo {
} }
} }
Type {
name: "QtQuick.Controls.StatusBar"
icon: ":/desktopplugin/images/toolbar16.png"
ItemLibraryEntry {
name: "Status Bar"
category: "Qt Quick - Controls"
libraryIcon: ":/desktopplugin/images/toolbar.png"
version: "1.0"
requiredImport: "QtQuick.Controls"
Property { name: "width"; type: "int"; value: 360; }
Property { name: "height"; type: "int"; value: 50; }
}
}
Type { Type {
name: "QtQuick.Controls.Dial" name: "QtQuick.Controls.Dial"
//icon: ":/desktopplugin/images/progressbar16.png" //icon: ":/desktopplugin/images/progressbar16.png"
@@ -267,4 +300,52 @@ MetaInfo {
} }
} }
Type {
name: "QtQuick.Layouts.RowLayout"
icon: ":/qtquickplugin/images/item-icon16.png"
ItemLibraryEntry {
name: "Row Layout"
category: "Qt Quick - Layouts"
libraryIcon: ":/qtquickplugin/images/item-icon.png"
version: "1.0"
requiredImport: "QtQuick.Layouts"
Property { name: "width"; type: "int"; value: 100; }
Property { name: "height"; type: "int"; value: 100; }
}
}
Type {
name: "QtQuick.Layouts.ColumnLayout"
icon: ":/qtquickplugin/images/item-icon16.png"
ItemLibraryEntry {
name: "Column Layout"
category: "Qt Quick - Layouts"
libraryIcon: ":/qtquickplugin/images/item-icon.png"
version: "1.0"
requiredImport: "QtQuick.Layouts"
Property { name: "width"; type: "int"; value: 100; }
Property { name: "height"; type: "int"; value: 100; }
}
}
Type {
name: "QtQuick.Layouts.GridLayout"
icon: ":/qtquickplugin/images/item-icon16.png"
ItemLibraryEntry {
name: "Grid Layout"
category: "Qt Quick - Layouts"
libraryIcon: ":/qtquickplugin/images/item-icon.png"
version: "1.0"
requiredImport: "QtQuick.Layouts"
Property { name: "width"; type: "int"; value: 100; }
Property { name: "height"; type: "int"; value: 100; }
}
}
} }