Skip to content

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.1k Topics 77.8k Posts
  • Qt Graphs lacking functionalities - Axes range

    Unsolved
    13
    1 Votes
    13 Posts
    416 Views
    JKSHJ
    @AndyBrice said in Qt Graphs lacking functionalities - Axes range: quickwidgetgraphs doesn't work, nothing happens when you click on the buttons: The *.pro file is broken in Qt 6.10.0 (it's fixed for the next releases). Load the CMakeLists.txt and it will work. I also suggest downloading the latest version of the example (it's not released yet so get it via git): https://github.com/qt/qtgraphs/tree/dev/examples/graphs/2d/quickwidgetgraphs This shows you how to use Qt Graphs without writing any QML code.
  • Installing a reusable component in Visual Studio?

    Unsolved
    2
    0 Votes
    2 Posts
    153 Views
    E
    Adding your component .qml file to qml.qrc file should do the trick.
  • do we have example show how to edit and display sqlite data in tableview in QML?

    Unsolved
    5
    0 Votes
    5 Posts
    76 Views
    GrecKoG
    QSqlTableModel + TableView sounds like what you need
  • Passwordchar property of TextInput as Unicode not supporting in QNX 7.1

    Unsolved
    2
    0 Votes
    2 Posts
    28 Views
    jeremy_kJ
    @IamSumit said in Passwordchar property of TextInput as Unicode not supporting in QNX 7.1: passwordCharacter: qsTr("\u2217") Is translating really the desired goal here? It's an unlikely but possible source of the problem. Does the character in question have a glyph in the font being used by the QNX system, eg can it be displayed via a Text{}?
  • Scaling of QML VideoOutput/ShaderEffect (bilinear vs nearest-neighbour interpolation)

    Unsolved
    3
    0 Votes
    3 Posts
    424 Views
    R
    Hello, do you find the solution? I'm also using the VideoOutput to display my frames and it also becomes blurry. I tried your suggestion: VideoOutput { ... layer.enabled: true smooth: false } But this still doesn't help
  • ComboBox Popup.Window does not receive mouse clicks

    Unsolved
    1
    0 Votes
    1 Posts
    27 Views
    No one has replied
  • 0 Votes
    1 Posts
    59 Views
    No one has replied
  • "currentValue" is a read-only property of ComboBox

    Solved combobox qtquick qml bug
    4
    0 Votes
    4 Posts
    158 Views
    E
    Apparently I was running 6.9.3. Code works in 6.10. Thank you!
  • Setting SphereGeometry pickable leads to QML crashing in QTquick3D

    Unsolved
    4
    1 Votes
    4 Posts
    388 Views
    J
    As a workaround it should be possible to use a built-in #Sphere mesh. You can see more info about the dimensionality here: https://doc.qt.io/qt-6/qml-qtquick3d-model.html#mesh-format-and-built-in-primitives
  • QML Material Implementation

    Solved
    2
    0 Votes
    2 Posts
    46 Views
    R
    qquickmaterialplaceholdertext_p.h
  • How to set-up qt qml vscode extension with pyside6?

    Unsolved
    1
    0 Votes
    1 Posts
    53 Views
    No one has replied
  • TableView: the highlight of the selected row is displayed only after scrolling

    Solved
    4
    0 Votes
    4 Posts
    89 Views
    W
    @Bob64 @Bob64 said in TableView: the highlight of the selected row is displayed only after scrolling: color: { console.log("Color changing - selected = ", selected); selected ? "#F1F8E0" : "#ffffff" } It's working fine! Also, to select the entire line, I had to replace:: @woodpecker said in TableView: the highlight of the selected row is displayed only after scrolling: tableView.selectionModel.select(tableView.index(row, 0), ItemSelectionModel.Select); with: tableView.selectionModel.select(tableView.index(row, 0), ItemSelectionModel.Select **| ItemSelectionModel.Rows**); .
  • TableView struggles

    Unsolved
    4
    0 Votes
    4 Posts
    259 Views
    G
    Someone pointed me to the TableViewDelegate; I switched to that since it comes with the functionality that I need.
  • Open CV for QT 5.6.0 on Embedded Linux

    Unsolved
    2
    0 Votes
    2 Posts
    48 Views
    SGaistS
    Hi, What kind of example do you have in mind ? How to use OpenCV ? How to grab an image with Qt and apply OpenCV operations on it ?
  • QLineSeries

    Unsolved
    3
    0 Votes
    3 Posts
    69 Views
    Y
    im using Qt Charts , you think i can find a way with Qt Graphs ?
  • Copy objects -> copy gets slower

    Solved
    5
    0 Votes
    5 Posts
    128 Views
    M
    Thanks for your answer. In meanwhile I was able to solve this problem. I think it was related to the singleton. The QtObject blub was in a singleton-qml-module. Now I moved this QtObject to the main-qml-module. Now the copy is much faster and it does not get slower.
  • TableView: ReferenceError: styleData is not defined

    Solved
    5
    0 Votes
    5 Posts
    99 Views
    W
    @Bob64 Thanks for the detailed reply!
  • Error while trying to use svg image

    Unsolved
    3
    0 Votes
    3 Posts
    180 Views
    R
    Why dont you use https://doc.qt.io/qt-6/qml-qtquick-vectorimage-vectorimage.html
  • Type annotations / Typescript as a feature request

    Unsolved
    3
    0 Votes
    3 Posts
    70 Views
    R
    @jsulm That makes sense! Also, you are damn fast, thank you for reviewing my message!
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    10 Views
    No one has replied