跳到內容

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.0k 主題 77.2k 貼文
  • Is there a Qt Quick example like 40000 Chips?

    1
    0 評價
    1 貼文
    492 瀏覽
    尚無回覆
  • [SOLVED] "YouTube view example" doesn't display video on OSX – known issue? (YES)

    1
    0 評價
    1 貼文
    589 瀏覽
    尚無回覆
  • [SOLVED] getting today name in Qml

    3
    0 評價
    3 貼文
    842 瀏覽
    A
    thank you, i'm not so familiar with [removed])
  • Playing RTSP Video with QML over windows

    3
    0 評價
    3 貼文
    2k 瀏覽
    R
    Hello, aabc. The URL is a local stream from a DVR. rtsp://192.168.50.10:8082/user=admin&password=admin&channel=1&stream=0.sdp?real_stream
  • [SOLVED] QML WebView the problem with white space on the bottom

    5
    0 評價
    5 貼文
    2k 瀏覽
    shavS
    thanks I've solved the problem.
  • To Display Video Frame on QML

    2
    0 評價
    2 貼文
    3k 瀏覽
    R
    So. Have you managed to do that? I am trying it too with no success. :(
  • Parent and Anchor Animations done well

    1
    0 評價
    1 貼文
    579 瀏覽
    尚無回覆
  • [Solved] Sizing an svg icon in a QML Button

    3
    0 評價
    3 貼文
    1k 瀏覽
    D
    Thanks, I am getting the icon from an Action, but think your answer will still work
  • [SOLVED] QQuickItem change property with animation

    2
    0 評價
    2 貼文
    1k 瀏覽
    Y
    I solved it by adding initial value m_items.back()->setProperty("y",0); for the first element of my list. Not sure what type of magic is that but it works just fine now
  • QMl Image source change cause the application process to crash

    4
    0 評價
    4 貼文
    1k 瀏覽
    slettaS
    It sounds like one of the bugs I fixed some time ago, so I would think so, yes. If the problem persists, then please file a bugreport through https://bugreports.qt-project.org and assign it to me.
  • Default Controls Style not the same as no style given

    7
    0 評價
    7 貼文
    2k 瀏覽
    J
    Thanks for the information, that's clarify the observed behavior.
  • TextEdit on ListView don't keep text after scrolling.

    15
    0 評價
    15 貼文
    4k 瀏覽
    M
    Thanks, for the info. What can be a good workarround or a proper workflow for my app? Suggestions are welcome.
  • [SOLVED]Accessing QML component property dynamically

    3
    0 評價
    3 貼文
    928 瀏覽
    K
    Its done. That helped me. Thanq.
  • Qt Quick apps crash when clicking on ComboBox/drop-down menu

    11
    0 評價
    11 貼文
    6k 瀏覽
    _
    I am try use QSG_RENDER_LOOP=basic and have no effect - app still crashed. Qt 5.3.1 Buildroot 3.10.17 I.MX6 soc
  • [SOLVED] Can't use keyboard commands in QtQuick.Controls.Menubar on Windows 8.1

    3
    0 評價
    3 貼文
    1k 瀏覽
    M
    I tested this functionality in Ubuntu 14.04 and it didn't worked too. So I guess this is not implemented yet. I will use the QtWidgets module to build de main window for now. Thanks.
  • StackView & Transitions

    2
    0 評價
    2 貼文
    1k 瀏覽
    p3c0P
    Hi, Use Item instead of Window as root object. And provide a width and height to ListView or use anchors.fill: parent. To load Item based component you will need QQuickView.
  • When is TabViewStyle's styleData.availableWidth valid?

    1
    0 評價
    1 貼文
    731 瀏覽
    尚無回覆
  • Dynamic property binding from c++

    4
    0 評價
    4 貼文
    2k 瀏覽
    W
    thanks for the responses. i think the Binding component approach is a good idea - the trick will be to do it so that individual properties can be defined and assigned bindings as needed. i will be looking into this
  • QML Design, required C++ logic?

    4
    0 評價
    4 貼文
    1k 瀏覽
    B
    You might wrap you qml app into a shell script. Pipe the input of a crontab file to your app and pipe the output back to the crontab file and call crontab, e.g.: @ cat MyCrontab.txt | xargs myQmlAlaramApp > MyCrontab.txt crontab MyCrontab.txt @ Inside qml access the argument string via: @ Text { text: Qt.application.arguments[1] @
  • There is any way to move a SplashScreen Window in desktop env?

    5
    0 評價
    5 貼文
    2k 瀏覽
    M
    Lastly i find a way: in any item you want to move you should add this MouseArea: @ MouseArea { anchors.fill: parent property real lastMouseX: 0 property real lastMouseY: 0 acceptedButtons: Qt.LeftButton onPressed: { if(mouse.button == Qt.LeftButton){ parent.forceActiveFocus() lastMouseX = mouseX lastMouseY = mouseY } } onMouseXChanged: root.x += (mouseX - lastMouseX) onMouseYChanged: root.y += (mouseY - lastMouseY) }@ Good luck