Skip to content

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.0k Topics 77.3k Posts
  • integrating qml and gstreamer

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, Did you saw that these bindings are unmaintained ? There's a GStreamer sink in the gst-plugins-bad package soon to be moved to gst-plugins-base.
  • Flickering VideoOutput

    Unsolved
    3
    0 Votes
    3 Posts
    483 Views
    B
    Hi @Yunus. I've stripped down the original application and created a minimalistic sample application which also have this issue (at least at my side). Note that I used Qt 5.9.6 (32-bit) MSVC2015 (on Windows 10). You can download it from here: https://filebin.net/pw9e9ns9b8qzfdl2 Please let me know if you experience the same issue.
  • Composing QML objects from different files: Accessing functions in parent

    Unsolved
    4
    -1 Votes
    4 Posts
    256 Views
    A
    If I receive this signal in PlotOverlayA, it should bexecute a function defined in Plot.qml Do you mean "emit the signal" in here? are the PlotOverlayA only children item of Plot?
  • Scrolling inside text field

    Unsolved
    10
    0 Votes
    10 Posts
    5k Views
    A
    This can be implemented using ScrollView or Flickable. I create a demo in Github: https://github.com/arkceajin/QtDemos/tree/master/FlickableInput I think it shall match the RS that you mentioned. But it still needs some improvement for the text cursor which I will try to complete in future.
  • How to buffer the video in QML before playing it.

    Unsolved
    3
    0 Votes
    3 Posts
    257 Views
    C
    Because this question is simplified and does not require reading elaborate.
  • Repeater-like item for non-Items

    Unsolved
    1
    0 Votes
    1 Posts
    120 Views
    No one has replied
  • Nearest-neighbors textures filtration in QtQuick3D

    Unsolved
    1
    0 Votes
    1 Posts
    127 Views
    No one has replied
  • Does QML posses this QMl type logic?

    Solved
    5
    0 Votes
    5 Posts
    378 Views
    C
    @fcarney Yes, that's it! That's exactly what I was looking for, thank you!
  • QML Editable Tab title within TabView on double-click

    Unsolved
    7
    0 Votes
    7 Posts
    2k Views
    E
    OK, thank you for your help, guys :-)
  • Using a Qt private class in my cmake project

    Solved
    6
    0 Votes
    6 Posts
    1k Views
    M
    So for my specific problem, using the TreeModelAdaptor which is in Quick.Controls.Private works
  • Problems of handling Keys events

    Unsolved
    1
    0 Votes
    1 Posts
    135 Views
    No one has replied
  • Rendering quality issues with custom QQuickPaintedItem

    Unsolved
    1
    0 Votes
    1 Posts
    191 Views
    No one has replied
  • Delegate supplied as property => how to handle instantiation?

    Unsolved
    4
    0 Votes
    4 Posts
    684 Views
    B
    @dheerendra See my following post in this thread.
  • TextField selection handles issue

    Solved virtualkeyboard select all textfield dialog columnlayout
    4
    0 Votes
    4 Posts
    1k Views
    D
    Was able to solve it by outcommenting selectionHandle in the custom keyboard style.qml file.
  • Help with buttons please

    Solved
    5
    0 Votes
    5 Posts
    402 Views
    C
    @IntruderExcluder Right, I noticed that as well and am not using mouseArea.
  • Lags at the beginning of the Qml Video - How to buffer the video before playing it?

    Unsolved
    1
    0 Votes
    1 Posts
    508 Views
    No one has replied
  • QML Camera: Loading QQmlApplication has large delay

    Unsolved
    2
    0 Votes
    2 Posts
    501 Views
    P
    I was hoping that I can at least show the rest of the GUI using a Loader. This does not solve the initial problem with the delay, of course. But although the ApplicationWindow opens immediately now, nothing is shown inside until Camera is loaded (ApplicationWindow->StackLayout->...->Loader). I don't understand why Camera and Loader are not working as expected. Nobody seems to have this problems. I also checked the GStreamer version, which is 1.0. Loader { id: loader asynchronous: true anchors.fill: parent sourceComponent: Item { anchors.fill: parent Camera { id: camera } VideoOutput { source: camera anchors.fill: parent } } }
  • Do you have QML version about qt example elasticnodes ?

    Unsolved
    3
    0 Votes
    3 Posts
    189 Views
    C
    well fine...
  • AnimatedImage QML Type not working as expected

    Solved
    1
    1 Votes
    1 Posts
    394 Views
    No one has replied
  • Create button to counting

    Solved
    3
    0 Votes
    3 Posts
    699 Views
    I
    @LeLev Thank You, I did this because I want to show the count on the button text Now I do this to show it onTriggered:{ console.log("decrementing.") btn.text= cnt btn.decrementCnt() }