[Interest] QtQuick Controls 2 and Designer: Should I use Styles or Customize?

Shantanu Tushar shaan7in at gmail.com
Mon Apr 9 17:30:36 CEST 2018


Hi,

I've been slowly implementing these suggestions and so far the results
have been great. My button style looks like this-

import QtQuick 2.9
import QtQuick.Templates 2.1 as T

import My.theme 0.2

T.Button {
    // Here i use properties like Theme.backgroundColor, Theme.textColor etc
}

However, I just hit a roadblock which deals with multiple styles in
the same application. Our designer has created two sets of theme
colors - Glass and Dark, Glass it to be used on the "Main window" of
our application and Dark is used on rest of the dialogs. See
https://www.sostronk.com/assets/tilt-a780c798bf78e6c5.png

Now, because Theme is a singleton, there is no way for me to define a
different set of colors for a Dialog. Any suggestions on how to
achieve this?

Thanks,

On 26 March 2018 at 19:37, Shantanu Tushar <shaan7in at gmail.com> wrote:
> Hi Thomas,
>
> I've tried both your suggestions in a PoC project and it works! My
> actual app will need some refactoring to get the ball rolling but I
> think this will work fine.
>
> Thanks a lot,
>
>
> On 16 March 2018 at 19:32, Thomas Hartmann <Thomas.Hartmann at qt.io> wrote:
>> Hi,
>>
>>
>> I would suggest solution number 1 (Creating a Custom Style).
>>
>>
>> To get the designer to show your custom style you have to configure it in
>> qtquickcontrols2.conf.
>>
>> You can do this in the editable combo box in the form editor if
>> qtquickcontrols2.conf does exist.
>>
>> You can refer to the Qt  Quick Controls 2 Flat Style example
>> (https://doc.qt.io/qt-5.10/qtquickcontrols2-flatstyle-example.html).
>>
>> You can use QT_QUICK_CONTROLS_STYLE_PATH to specify additional paths that
>> are used to lookup Qt Quick Controls 2 styles.
>>
>> You can also write your own QML plugin (2. Customizing a Control), but you
>> have to create a QML file for every control
>>
>> and you have to implement a full plugin/import. For these customized
>> controls to show up in the item library you have to provide a .metainfo
>> file. You can look at the origin Qt Quick Controls 2 implementation for
>> reference.
>>
>>
>> I hope this solves your issue.
>>
>>
>> Kind Regards,
>>
>> Thomas Hartmann
>>
>>
>>
>> _______________________________________________
>> Interest mailing list
>> Interest at qt-project.org
>> http://lists.qt-project.org/mailman/listinfo/interest
>>
>
>
>
> --
> Shantanu Tushar    (UTC +0530)
> shantanu.io



-- 
Shantanu Tushar    (UTC +0530)
shantanu.io



More information about the Interest mailing list