跳到內容

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.1k 主題 77.6k 貼文
  • Signal in QML becomes undefined

    Solved
    3
    0 評價
    3 貼文
    947 瀏覽
    SietseAchteropS
    @GrecKo Thanks, solved! I missed that the arguments are the signals. That's what you get when you google for answers instead of properly reading the documentation.... Regards, Sietse
  • Access item inside ListView via delegate

    Solved qml listview delegate button
    14
    0 評價
    14 貼文
    5k 瀏覽
    RatzzR
    @GrecKo , I mean without the button, when I edit the values of TextEdit, I should be able to get the modified text. I tried via property. It always gave me empty
  • Strange 'undefined reference' link errors on Ubuntu static build

    Unsolved
    2
    0 評價
    2 貼文
    553 瀏覽
    T
    OK, more clearly stated: Why would I be getting 'undefined reference' to 'private' Qt classes (e.g. QQuickStylePrivate::reset()) when linking with libqtquickcontrols2plugin.a? I have the following included in target_link_libararies: target_link_libraries( ${PROJECT_NAME} PRIVATE Qt5::Core Qt5::Network Qt5::Qml Qt5::Quick Qt5::QuickControls2 Qt5::WebChannel ... ) What library could be missing that includes these symbols? Any insights much appreciated...
  • Need an example code application that uses CMake and builds an application with modules.

    Unsolved qml
    1
    0 評價
    1 貼文
    155 瀏覽
    尚無回覆
  • Changing the order MapQuickItems are drawn on a Map

    Solved
    3
    0 評價
    3 貼文
    492 瀏覽
    S
    Hmm - I had tried that, but couldn't get it working, but it seems to work in the cut down example I've created - so I guess I had another problem that was stopping it from working. Thanks.
  • USE opengl load stl file problem(qml)

    Unsolved
    1
    0 評價
    1 貼文
    271 瀏覽
    尚無回覆
  • Best Practices for Qt Creator icons

    Solved
    5
    0 評價
    5 貼文
    840 瀏覽
    M
    You can use Font Icons, they are light, elegant, easy to use and there are many opensource icon libraries as FontAwesome, Bootstrap Icons, ...
  • How could I optimize a scrolling (not scrollable) QtQuick Chart?

    Unsolved charts qtquick optimization
    2
    0 評價
    2 貼文
    570 瀏覽
    B
    @tague Are you currently updating every time a point is added? If so, I wondered if you could buffer the incoming data so that you do not update so frequently? Perhaps use a QTimer to control update frequency.
  • Open child window on same screen as parent

    Unsolved
    6
    0 評價
    6 貼文
    1k 瀏覽
    LorenDBL
    @sluci That's not actually trying to center the window on a parent window. I need to figure out how to center a child window on a parent window. The child window is QML and the parent window is in C++ with a QQuickWidget containing a lot of QML. I'd like this solution to work on multiple monitors.
  • Progressbar for OSD

    Unsolved
    1
    0 評價
    1 貼文
    198 瀏覽
    尚無回覆
  • refactoring not enabled for qml

    Unsolved
    1
    0 評價
    1 貼文
    152 瀏覽
    尚無回覆
  • GridView - Issues with scrolling and internal Drag&Drop

    Unsolved
    2
    0 評價
    2 貼文
    483 瀏覽
    jeanmilostJ
    I could find a solution for the issue #2 mentioned above, by using the moveDisplaced property of the GridView component, instead of trying to animate the items directly, like that: // animate the item move, when its x and/or y position changes moveDisplaced: Transition { NumberAnimation { properties: "x,y" duration: 200 } } However the other questions remain opened.
  • Random colorization of pixels in SceneGraph QQuickItem...?

    Unsolved
    1
    0 評價
    1 貼文
    168 瀏覽
    尚無回覆
  • Creating dashed lines

    已移動 Unsolved
    3
    0 評價
    3 貼文
    4k 瀏覽
    E
    Ill give it a try. Thanks!
  • replacing dialog with "regular" display

    Unsolved
    11
    0 評價
    11 貼文
    846 瀏覽
    mzimmersM
    @fcarney so, how should I "gate" the processing of the rest of the code: nowOrLater.accepted.connect(function () { if (nowOrLater.getStartNow()) { ... I could put it in my finishCreation() function, but that doesn't seem quite right.
  • 32-bit "ASCII/Unicode" values, sent over UART, to Int

    已移動 Unsolved
    1
    0 評價
    1 貼文
    194 瀏覽
    尚無回覆
  • gstramer error when second video recording attemp at qml camera

    Unsolved
    6
    0 評價
    6 貼文
    434 瀏覽
    SGaistS
    That looks like a kernel issue. Do you have a different camera to test ?
  • Qml Mesh meshName not woking with 3dsMax obj File

    Unsolved
    2
    1 評價
    2 貼文
    246 瀏覽
    C
    Looks like I have the same issue using the "Alias Mesh (.obj)" from FreeCAD. Yet I have opened the mesh object file and I see clearly a line with my sub-mesh: g <meshName>. However, it works as excepted when opening obj file in https://3dviewer.net Any updates from this?
  • Using QTquick 1 to trigger a bash script on button click

    Unsolved qtquick1.1 process qprocess qt4
    5
    0 評價
    5 貼文
    1k 瀏覽
    J
    @JonB This is a quote from the example given on the link listed. It's from QT, in an explanation of how this works. It's not a string that I came up with, or that I'm using.
  • Error after creating new QML file.

    Solved
    6
    0 評價
    6 貼文
    6k 瀏覽
    A
    I stumbled upon this today using MinGW (I've been usually using MSVC)... anyway, yeah, it's trying to build with old files and it doesn't find the newly created one. A simple rebuild does the trick.