laserpants / qt-material-widgets

:art: Qt widgets-based implementation of the Material Design specification.
BSD 3-Clause "New" or "Revised" License
2.94k stars 660 forks source link

Add Q_PROPERTY declarations where it makes sense #12

Open laserpants opened 6 years ago

laserpants commented 6 years ago

For example, QtMaterialTextField has

    Q_PROPERTY(QColor textColor WRITE setTextColor READ textColor)
    Q_PROPERTY(QColor inkColor WRITE setInkColor READ inkColor)
    Q_PROPERTY(QColor underlineColor WRITE setUnderlineColor READ underlineColor)

but no equivalent property declaration for labelColor.