Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Bug on control universal
Forum Updated to NodeBB v4.3 + New Features

Bug on control universal

Scheduled Pinned Locked Moved Solved QML and Qt Quick
4 Posts 2 Posters 335 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    Nathan Miguel
    wrote on last edited by
    #1

    An error is occurring while using "QtQuick.Controls.Universal", his button color is being set to pink even when selecting other colors.

    0_1567313666182_435577c0-9643-410b-9ccb-4cf17e5b213c-image.png

    .QML

    Button {
                    id: button
                    x: 249
                    y: 322
                    text: qsTr("Button")
                    highlighted: true
                    Universal.theme: Universal.Dark
                    Universal.background: Universal.Indigo
                    Universal.accent: Universal.Green
                }
    

    .CPP

    #include <QGuiApplication>
    #include <QQmlApplicationEngine>
    #include <QQuickStyle>
    
    int main(int argc, char *argv[])
    {
        QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
    
        QQuickStyle::setStyle("Material");
    
        QGuiApplication app(argc, argv);
    
        QQmlApplicationEngine engine;
        const QUrl url(QStringLiteral("qrc:/main.qml"));
        QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
                         &app, [url](QObject *obj, const QUrl &objUrl) {
            if (!obj && url == objUrl)
                QCoreApplication::exit(-1);
        }, Qt::QueuedConnection);
        engine.load(url);
    
        return app.exec();
    }
    

    .PRO

    QT += quick
    QT += quickcontrols2
    CONFIG += c++17
    
    # The following define makes your compiler emit warnings if you use
    # any Qt feature that has been marked deprecated (the exact warnings
    # depend on your compiler). Refer to the documentation for the
    # deprecated API to know how to port your code away from it.
    DEFINES += QT_DEPRECATED_WARNINGS
    
    # You can also make your code fail to compile if it uses deprecated APIs.
    # In order to do so, uncomment the following line.
    # You can also select to disable deprecated APIs only up to a certain version of Qt.
    #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
    
    SOURCES += \
            main.cpp
    
    RESOURCES += qml.qrc
    
    # Additional import path used to resolve QML modules in Qt Creator's code model
    QML_IMPORT_PATH =
    
    # Additional import path used to resolve QML modules just for Qt Quick Designer
    QML_DESIGNER_IMPORT_PATH =
    
    # Default rules for deployment.
    qnx: target.path = /tmp/$${TARGET}/bin
    else: unix:!android: target.path = /opt/$${TARGET}/bin
    !isEmpty(target.path): INSTALLS += target
    
    1 Reply Last reply
    0
    • IntruderExcluderI Offline
      IntruderExcluderI Offline
      IntruderExcluder
      wrote on last edited by
      #2

      But in C++ you set style as Material:

      QQuickStyle::setStyle("Material");
      
      N 2 Replies Last reply
      1
      • IntruderExcluderI IntruderExcluder

        But in C++ you set style as Material:

        QQuickStyle::setStyle("Material");
        
        N Offline
        N Offline
        Nathan Miguel
        wrote on last edited by
        #3

        @intruderexcluder Yes, because that was the way it was in the documentation. But even though I haven't used any material or universal Qt properties this bug happens

        1 Reply Last reply
        0
        • IntruderExcluderI IntruderExcluder

          But in C++ you set style as Material:

          QQuickStyle::setStyle("Material");
          
          N Offline
          N Offline
          Nathan Miguel
          wrote on last edited by
          #4

          @intruderexcluder now I understood, it was just put universal in place of material

          1 Reply Last reply
          0

          • Login

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved