跳到內容

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.1k 主題 77.6k 貼文
  • Resizing controls in SplitView

    Solved
    6
    0 評價
    6 貼文
    156 瀏覽
    T
    Yes, @GrecKo is right about the anchor, and the information about the SplitView.minimumWidth is misleading. Sorry about that.
  • Strange border around popup when adding drop shadow with MultiEffect

    Unsolved qml effects popup qml shadow pyqt6
    1
    0 評價
    1 貼文
    68 瀏覽
    尚無回覆
  • Qt Creator and Qt Design Studio integration (and Loader Component)

    Unsolved
    1
    0 評價
    1 貼文
    50 瀏覽
    尚無回覆
  • How to add year selection into Calendar QML type of QtQuick.Controls 1.4 ?

    Unsolved
    3
    0 評價
    3 貼文
    207 瀏覽
    B
    It is probably best to avoid the Calendar from Controls 1 as it is deprecated in in Qt 5 and no longer exists in Qt 6. You could construct your own calendar with whatever behaviour you want using the components DayOfWeekRow and MonthGrid. These are in Qt.labs.calendar in Qt 5 but are in QtQuick.Controls in Qt 6 so there is a good upgrade path.
  • 0 評價
    1 貼文
    52 瀏覽
    尚無回覆
  • 此主題已被刪除!

    Unsolved
    0
    0 評價
    0 貼文
    7 瀏覽
    尚無回覆
  • Access role enum value from QML

    Solved
    11
    0 評價
    11 貼文
    322 瀏覽
    E
    @GrecKo that's an interesting approach. Thank you for the idea! This thread could be considered as solved.
  • How to configure QmlLs property

    Unsolved
    1
    0 評價
    1 貼文
    76 瀏覽
    尚無回覆
  • How to QML remote debugging in Windows OS?

    Unsolved
    2
    0 評價
    2 貼文
    60 瀏覽
    B
    I'm not sure if there is something like remote debugging for QML. Some thoughts: If you want to get current states of a QML application and check layouts at runtime etc. have a look at GammaRay. This tool allows you to examine and manipulate the internals of Qt applications at runtime, augmenting conventional debuggers by understanding the implementation of Qt. If you want to run tests and access your QML application you could check out SPIX, a testing framework. Spix is a minimally invasive UI testing library that enables your Qt/QML app's UI to be controlled either via c++ code, or through an http RPC interface.
  • QML OSM Map Not working in System which is not having QTCreator but having all the installed Qt Library .

    Unsolved
    1
    0 評價
    1 貼文
    41 瀏覽
    尚無回覆
  • How to do SOUP Validation for QML, QtQuick, QtQuickControls

    Unsolved
    2
    1 評價
    2 貼文
    55 瀏覽
    Christian EhrlicherC
    You should ask the Qt support for help. They already did such kind of things and are for sure the better place to ask such questions.
  • ListView inside PathView = broken touchscreen scrolling

    Solved touch screen pathview listview
    3
    0 評價
    3 貼文
    175 瀏覽
    H
    I was afraid I would have to resort to hacks like this... Okay, I will try. Thank you.
  • TreeViewDelegate Unable to assign QJSValue to QString

    Solved
    2
    0 評價
    2 貼文
    56 瀏覽
    M
    TreeViewDelegate use model.display This help me contentItem: Item{}
  • Implementing something like the Qt Creator examples page in QML

    Solved
    5
    0 評價
    5 貼文
    145 瀏覽
    GrecKoG
    simplified code: Image { id: exampleImage source: "example.jpg" anchors.fill: parent smooth: true } Text { text: "This is an example description." color: "white" anchors.fill: parent font.pixelSize: 16 wrapMode: Text.Wrap horizontalAlignment: Text.AlignHCenter | Text.AlignVCenter HoverHandler { id: textHoverHandler } opacity: textHoverHandler.hovered ? 1 : 0 Behavior on opacity { NumberAnimation { duration: 300 easing.type: Easing.InOutQuad } } }
  • 此主題已被刪除!

    Unsolved
    2
    0 評價
    2 貼文
    36 瀏覽
  • qtvideosink not work on embedded target

    Unsolved
    3
    0 評價
    3 貼文
    125 瀏覽
    Q
    @jsulm said in qtvideosink not work on embedded target: QT_DEBUG_PLUGINS hello jsulm, actually every looks good from the log perspective, the only problem is when I run app, there's only a empty windows without videotestsrc rendering. check the below log with QT_DEBUG_PLUGINS set to 1. also in the qml I have print mediaplayer status. from below it change from 2 to 6, still quite good. btw, I'm not able to attach log directly via code style, it is detected as spam, I don't know why. so I paste it here qtvideosink-debug-plugin
  • Static Color bug via Qt particles

    Unsolved
    2
    0 評價
    2 貼文
    135 瀏覽
    J
    Could you put your complete code in one qml file so we can more easily test your exact setup?
  • Questions related to BoundedRectRendering of QSGRenderNode

    Unsolved
    1
    0 評價
    1 貼文
    47 瀏覽
    尚無回覆
  • How move Map

    Solved
    3
    0 評價
    3 貼文
    207 瀏覽
    Z
    PinchHandler and WheelHandler are for zoom. If you need to move the map you need DragHandler and TapHandler One of them rotates the map, I guess it's not what you want on mobile devices
  • SkyboxCubeMap rotation?

    Unsolved
    1
    0 評價
    1 貼文
    85 瀏覽
    尚無回覆