Skip to content

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.0k Topics 77.4k Posts
  • PaintEvent in QQuickView

    3
    0 Votes
    3 Posts
    1k Views
    T
    Well i'm using a touchscreen device and I'm trying to test which is the minimum frames per second screen update that is acceptable. So for pinching and zooming or panning when it just becomes to choppy.
  • [SOLVED]Problem with QML Audio: no sound

    4
    0 Votes
    4 Posts
    3k Views
    R
    Same with mp3. Report about it here: "QTBUG-37480":https://bugreports.qt-project.org/browse/QTBUG-37480
  • 0 Votes
    2 Posts
    1k Views
    A
    Dont forget to add disconnect
  • Can't get QML to playback .mp4 videos

    10
    0 Votes
    10 Posts
    8k Views
    A
    How does other file formats work for you ?
  • [SOLVED] Please Help me about this...

    5
    0 Votes
    5 Posts
    1k Views
    M
    Thanks for all guys that help me. ;)
  • QML type to draw with QPainter

    3
    0 Votes
    3 Posts
    1k Views
    A
    You can use the QPainter or to use openGL API for paint
  • Webcam background and a 3d object in foreground

    3
    0 Votes
    3 Posts
    896 Views
    8
    Hi, thanks for replay, but got it working already. QML video is not good for me, because I'm working on augumented reality project and I have to use opencv for pre-processing the video. Implementation looks like this: @QML: Timer { interval: 40; running: true; repeat: true; onTriggered:{ background.textureImage=myCamera.getImage(); } } C++: QImage myCamera::getImage(){ iplImage = cvQueryFrame(capture); faceLandmarks->detect(iplImage); /* for augumented reality*/ qImage = myCamera::ipl2Qimg(iplImage); return qImage; }@ [edit added missing coding tags @ SGaist]
  • Video unable to play or map to buffers

    5
    0 Votes
    5 Posts
    3k Views
    A
    I also couldn't play streaming video with the QML Video element
  • Handle touch event and flicks simultaneously in Qml

    5
    0 Votes
    5 Posts
    3k Views
    A
    I also noticed Qt have problems with detecting touch events from multiple sources
  • Display Pdf document within QtQuick Application

    3
    0 Votes
    3 Posts
    1k Views
    A
    On what platform do you work ?
  • TableView & Dynamic columns creation

    5
    0 Votes
    5 Posts
    8k Views
    Q
    Thanks for the hint. I´ll test it.
  • Displaying the same QML Item multiple times

    8
    0 Votes
    8 Posts
    3k Views
    K
    Yes, indeed. With property binding it should quite straightforward I believe. I will try this and see how it works. Thanks a lot! Best regards.
  • Wheel not work for ScrollView that lies in another ScrollView

    3
    0 Votes
    3 Posts
    830 Views
    L
    Thanks! Hope it be fixed soon.
  • Disable font antialiasing in QtQuick Text element

    9
    0 Votes
    9 Posts
    5k Views
    J
    You could probably do a similar approach even simpler by using QQuickPaintedItem or even just a Canvas item in QML. While it would technically work, I don't think I would recommend it as you lose all benefits of hardware acceleration and the performance memory cost would be significant for all but the most simple use cases. However you might even want to consider using Qt Quick 1 on your device as it still works and supports the antialiasing property directly.
  • Cannot playback any video on embedded linux

    3
    0 Votes
    3 Posts
    1k Views
    M
    thanks for your time... I found out that my gstreamer-0.10 development package was not found during cross-compilation due to the fact that I was missing -sysroot in ./configure step... now I am cross-compiling again (it will take some hours) and I'll let you know if then I am able to play videos
  • Component.onCompleted does not work as expected in a ListView's delegate

    7
    0 Votes
    7 Posts
    7k Views
    T
    Thank you all for your answers! @Jens: I also had the idea to use the onCurrentChanged event of the ListView. But that was not enough because I still had to find a appropriate way to inform a specific (the actual visible one) delegate about the page changes - and I struggled with that without success... I finally solved the problem for me by using the following Binding for my relevant content inside the delegate: @Binding { target: contentItem property: 'model' value: { if(myListView.currentIndex===index) loadCurrentPageModel(); else loadPageModel(); } }@
  • Custom animation classes?

    4
    0 Votes
    4 Posts
    1k Views
    J
    Thank you Xander. Hopefully it's easier to understand/refactor than to just re-invent!
  • How to search in database

    5
    0 Votes
    5 Posts
    3k Views
    L
    In addition to the links posted above I would also suggest: the SQLite documentation for "SELECT statement":http://www.sqlite.org/lang_select.html "Qt SQL Database Drivers":http://qt-project.org/doc/qt-5/sql-driver.html
  • Google Cloud Storage

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Searching from sqlite database from text

    4
    0 Votes
    4 Posts
    1k Views
    EddyE
    Sorry, but i don't know about a tutorial that gets closer to what you want. In another thread Jens announced" that they plan a blog on this subject":http://qt-project.org/forums/viewthread/41161/#171004 So stay tuned on the blog section.