DeclarativeWidgets icon indicating copy to clipboard operation
DeclarativeWidgets copied to clipboard

Library and tools for creating QtWidget UIs using QML

Results 6 DeclarativeWidgets issues
Sort by recently updated
recently updated
newest added

The current behavior for LoaderWidget seems to differ from that of Loader in that components loaded by Loader will have access to the parent context's properties while items loaded by...

This commit removes DeclarativeIcon and DeclarativePixmap in favor of singleton loader types, as discussed in #16

Created custom widget like this: ``` class DeclarativeMyWidgetExtension : public DeclarativeWidgetExtension { Q_OBJECT public: // Repeat property declarations, qmlRegisterExtendedType doesn't see the ones from // base class Q_PROPERTY(QQmlListProperty data READ...

They should be inlined in the readme, IMO.

QPushButton has a property named "default" which cannot be used from QML since "default" is a reserved keyword. This change adds an alias which allows the property to be accessed...

Add support for Splitter. I am not entirely sure about putting stretch as an attached property of Splitter, since it really modifies the SizePolicy of the widget, but it makes...