Skip to content

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.1k Topics 77.7k Posts
  • QQmlApplicationEngine failed to load component

    Unsolved
    10
    0 Votes
    10 Posts
    2k Views
    P
    Thank you all
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    5
    0 Votes
    5 Posts
    293 Views
  • adding existing file

    Unsolved
    1
    0 Votes
    1 Posts
    240 Views
    No one has replied
  • How to set subtitle in QML MediaPlayer ?

    Unsolved
    2
    0 Votes
    2 Posts
    221 Views
    No one has replied
  • Using QtLocation after building and installing

    Solved
    4
    0 Votes
    4 Posts
    571 Views
    D
    Got the loctaion module to install with the dev branch, though think it would also install with the 6.3 Error. One has to load Location's CMake file into QtCreator and under the run configurations there are man y things one must check on to build plugins (Location Plugin, OSM, MapBox, etc) Only one example worked out of the box and that was the MinimalMap as the other examples used a lot of QtQuickControls from 1.x and those weren't working yet with Qt 6.4 snapshot, or maybe I just didn't download them.
  • get TouchPoint from MultiPointTouchArea

    Solved
    2
    0 Votes
    2 Posts
    189 Views
    M
    Sorry, I'm not add touchPoints: [ TouchPoint { id: touchPoint1 }, TouchPoint { id: touchPoint2 } ]
  • WebEngineProfile useragent strange behavior

    Unsolved
    6
    0 Votes
    6 Posts
    460 Views
    T
    don't know why, but if instead of reload() I use reloadAndBypassCache() it works, it's really strange now the problem is that it doesn't keep me logged in, I think it doesn't save any cookies
  • Removing an element from ListModel produces Type error

    Solved
    7
    0 Votes
    7 Posts
    530 Views
    A
    There's no TableView in Qt Quick Controls 2, there's one in Qt Quick. As far as I understand it relies more on C++ models rather than on QML ones. QML model proposed in the documentation [https://doc.qt.io/qt-5/qml-qtquick-tableview.html] looks much more complex than ListModel which I use with QQC1 currently. This TableView which I am implementing is used in plasmoid configuration window, so performance is the least concern, as it will be shown not very often. And Qt Quick TableView looks more intimidating so it will be harder for me to implement.
  • Change the window's size through a button (flickers)

    Unsolved qml resize flickering
    3
    0 Votes
    3 Posts
    1k Views
    GrecKoG
    Use https://doc.qt.io/qt-6/qwindow.html#startSystemResize instead. You can call it from QML.
  • QML FileDialog not native

    Unsolved
    1
    0 Votes
    1 Posts
    423 Views
    No one has replied
  • How to assign an object id to a variable in a QML script

    Solved
    7
    0 Votes
    7 Posts
    2k Views
    T
    I was trying to assign id instead of lbl1, that's the problem, thanks!
  • CANBus Frame not available in QML

    Unsolved
    1
    0 Votes
    1 Posts
    139 Views
    No one has replied
  • Qml text rendered error

    Unsolved android qml text block
    2
    0 Votes
    2 Posts
    492 Views
    N
    quite hard to help without any information..
  • How to draw "WiFi icon" using QML

    Unsolved
    6
    0 Votes
    6 Posts
    1k Views
    M
    @ndias Thank you
  • Requesting support for Tab key support in Editable QML tableview

    Unsolved
    1
    0 Votes
    1 Posts
    158 Views
    No one has replied
  • How to align items in Row like space-between in css

    Solved
    2
    0 Votes
    2 Posts
    394 Views
    H
    I have fixed this using RowLayout instead of Row. After changing to RowLayout Layout.alignment: Qt.AlignLeft // first item Layout.alignment: Qt.AlignRight // second item
  • (Un)ChechkingAll from Tree View

    Unsolved
    28
    0 Votes
    28 Posts
    5k Views
    SGaistS
    Please, a minimal script import sys from QtXxx.QtWidgets import QTableView # additional imports app = QApplication(sys.argv) model = QStandardItemModel() # populate your model table_view = QTableView() table_view.setModel(model) # finish the ui sys.exit(app.exec())
  • Swicth button shows sometimes a missing pixel column

    Unsolved
    2
    0 Votes
    2 Posts
    212 Views
    N
    maybe post a reproducible example?
  • how to set fullscreen mode of a qml rectangle?

    Solved
    10
    0 Votes
    10 Posts
    1k Views
    JoeCFDJ
    Fixed by making state change at the top level rectangle.