QtQuickOpenComponents: Difference between revisions
AutoSpider (talk | contribs) (Add "cleanup" tag) |
(Removed broken links) |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
= Qt Quick Components = | |||
This is a place for sharing your QML components. | This is a place for sharing your QML components. | ||
If you have built a component in QML that you'd like to share, please add it here! It will help others who are wishing to use similar types of components or just looking for tips on building QML components in general. | If you have built a component in QML that you'd like to share, please add it here! It will help others who are wishing to use similar types of components or just looking for tips on building QML components in general. | ||
=== Formatting notes === | === Formatting notes === | ||
Line 19: | Line 12: | ||
[Description] | [Description] | ||
== | === [http://bitbucket.org/gregschlom/qml-drag-drop Drag and Drop] === | ||
(Greg Schlomoff) | (Greg Schlomoff) | ||
Line 33: | Line 18: | ||
A few QML components to add drag and drop support to Qt's declarative. This is basically a wrapper around Qt's drag and drop classes (QDrag). | A few QML components to add drag and drop support to Qt's declarative. This is basically a wrapper around Qt's drag and drop classes (QDrag). | ||
=== | === [http://github.com/fgrehm/qmlunit qmlunit] === | ||
An easy-to-use Unit Testing framework for Qt Declarative UI - QML | An easy-to-use Unit Testing framework for Qt Declarative UI - QML | ||
=== | === [http://bitbucket.org/gregschlom/qmlscrollbar Scrollbar] === | ||
(Greg Schlomoff) | (Greg Schlomoff) | ||
Line 49: | Line 28: | ||
A simple Scrollbar component that works with any Flikable (e.g.: ListView). Only for vertical scrolling, but should be easy to adapt for both. | A simple Scrollbar component that works with any Flikable (e.g.: ListView). Only for vertical scrolling, but should be easy to adapt for both. | ||
=== | === [http://qt-apps.org/content/show.php/Native+Quick+Widgets?content=137145 Native Quick Widgets] === | ||
(Víctor Fernández Martínez) | (Víctor Fernández Martínez) | ||
Line 65: | Line 34: | ||
A QML extension written in C++ as well as a set of QML items based on it that have the same look as the native widgets of the platform your application runs in. | A QML extension written in C++ as well as a set of QML items based on it that have the same look as the native widgets of the platform your application runs in. | ||
=== | === [http://qt.gitorious.org/qt-labs/qmlcanvas qmlcanvas] === | ||
(Jens Bache-Wiig) | (Jens Bache-Wiig) | ||
Line 73: | Line 42: | ||
== Model/View components == | == Model/View components == | ||
=== | === [https://github.com/kromain/qml-utils JSONListModel] === | ||
(Romain Pokrzywka) | (Romain Pokrzywka) | ||
A clone of XMLListModel for JSON data, including query support via JSONPath (XPath for JSON). | A clone of XMLListModel for JSON data, including query support via JSONPath (XPath for JSON). |
Latest revision as of 12:56, 24 March 2016
Qt Quick Components
This is a place for sharing your QML components.
If you have built a component in QML that you'd like to share, please add it here! It will help others who are wishing to use similar types of components or just looking for tips on building QML components in general.
Formatting notes
Please add your components in this form:
[Name, linked to wiki page or external site] [(Optional author name)] [Description]
Drag and Drop
(Greg Schlomoff)
A few QML components to add drag and drop support to Qt's declarative. This is basically a wrapper around Qt's drag and drop classes (QDrag).
qmlunit
An easy-to-use Unit Testing framework for Qt Declarative UI - QML
Scrollbar
(Greg Schlomoff)
A simple Scrollbar component that works with any Flikable (e.g.: ListView). Only for vertical scrolling, but should be easy to adapt for both.
Native Quick Widgets
(Víctor Fernández Martínez)
A QML extension written in C++ as well as a set of QML items based on it that have the same look as the native widgets of the platform your application runs in.
qmlcanvas
(Jens Bache-Wiig)
HTML5 canvas-like API for QML.
Model/View components
JSONListModel
(Romain Pokrzywka)
A clone of XMLListModel for JSON data, including query support via JSONPath (XPath for JSON).