uwerat / qskinny

A lightweight framework on top of the Qt scene graph and only few classes from Qt/Quick. It is usable from C++ and/or QML.
1.45k stars 293 forks source link

QskTextInput wrapmode #451

Closed uwerat closed 1 month ago

uwerat commented 1 month ago

QskTextInput is a wrapper for QQuickTextInput often simply duplicating its API. Looks like the wrap mode ( https://doc.qt.io/qt-6/qml-qtquick-textinput.html#wrapMode-prop ) has been forgotten so far.

The corresponding enum can be found in QskTextOptions

hestrro commented 1 month ago

But it does not have the QskTextOption related function for setting the sub-control text like QskTextLabel, and I did not find it in its parent class.

hestrro commented 1 month ago

I can only set wrapword in its source code

uwerat commented 1 month ago

Sure, the wrapper for the API is missing - that's why this issue exists. Note that the fix will part of the release ( see the Milestone label )

uwerat commented 1 month ago

Done