Questions tagged [qquickview]

In the QT framework, the QQuickView class provides a window for displaying a Qt Quick user interface.

In the QT framework, the QQuickView class provides a window for displaying a Qt Quick user interface.

http://qt-project.org/doc/qt-5/qquickview.html

40 questions
1
vote
1 answer

QQuickView (QML) transparent for mouse events

I have a big rectangle with a button centered. I would like that my rectangle is transparent to mouse events except for the button, which must be clickable. I mean, I would like to be able to select code under my rectangle with the mouse, exactly as…
Diego
  • 336
  • 2
  • 21
1
vote
0 answers

JAWS reader reads title of Qt application three times

I have a Qt application created using Qt 5.6. I have set the title of the app using QQuickView setTitle() function. The title is set correctly , but when I use JAWS screen reader, on application start, the title is read three times. What can I do to…
prakashpun
  • 259
  • 4
  • 19
1
vote
1 answer

Qml/Qt/C++: QQuickView in a Widget, can't get the position right

I'am implementing a simple program with QT5.5 which contains a HTML window (QWebview) like the following screenshot: HTML window on the right side Now I want the program also installed for iOS e.g. for iPad. I found that the QWebview class isn't…
Jian
  • 63
  • 1
  • 2
  • 8
1
vote
1 answer

How to get model in onCurrentItemChanged with QtQuick ListView

I use the listview like this: ListView { id: list clip: true spacing: 2 anchors.fill: parent model: datas delegate: listItem onCurrentItemChanged: { //I want get the part of…
behtgod
  • 251
  • 3
  • 15
1
vote
0 answers

Get HGLRC from QQuickView in qml 5.3

How can I get HGLRC from QQuickView in qml 5.3 application? I have a program on openGL in windows which I want render to my QQuickView. The problem is that I don't want to touch render process in openGL rendering process. So, first I want create…
Kirill
  • 21
  • 1
1
vote
1 answer

Deleting QQuickView on exit cause Qt application to freeze

I founded a deadlock in Qt 5.3. How to fix in correctly? Without ugly fix (not to delete qquickview *) I have a singleton with a pointer to QQuickView. When I need to close my application I do a call of QGuiApplication::quit() and try to release…
Dmitry Sazonov
  • 8,801
  • 1
  • 35
  • 61
0
votes
0 answers

Quick View does not show correctly in my Shopify website

My quickview does not work anymore (worked in the past) on my website. I have check with many different bug testers where the issue is in the JS file but I do not manage to find it unfortunately. Website:…
0
votes
0 answers

Widgets+QML Android

everyone! For my application I need to use QGraphicsView and the QML interface. For this I have two ways: QQuickWidget. QQuickView + QWidget::createWindowContainer But for the two approaches I have problems. Everything works on Windows but…
0
votes
0 answers

How to include QML Oscilloscope example

I am trying to use this source to create an oscilloscope view on my application. Here is the source i am using which is created by QT team https://code.qt.io/cgit/qt/qtcharts.git/tree/examples/charts/qmloscilloscope?h=6.2 I have a lot of screens but…
utkuyceng
  • 43
  • 6
0
votes
0 answers

Squish doesn't record anything for QQuickView Application

I have Qt application that is using QQuickView. I am trying to record some test and Squish produces just one line attachToApplication("myApp"). What I am doing wrong? Is it any extension should be installed separately for QQuickView apps? I am using…
kwit04ka
  • 11
  • 5
0
votes
0 answers

Qt Quick3D. View3D not showing

I need to port this C++ project to python https://github.com/KDAB/qt3d-examples/tree/master/blended-skinned-animation The original project uses Qt3DQuickWindow which doesn't exist in python so I'm using a QQuickView class QuickWidget: def…
bdf
  • 3
  • 2
0
votes
2 answers

Adding a high number of QML objects in a QWidget application using QQuickView or QQuickWidget poses performance problem

I'm developping a Qt application in which the user can add QML objects inside a QGraphicsScene. The available QML objects are listed and the user can add as many as he wants. Until now, I used QQuickWidgets. The QGraphicsScene contains a top-level…
M. Anderson
  • 15
  • 1
  • 1
  • 6
0
votes
1 answer

Implement Scrolling for QQuickView containing multiple QQuickPaintedItems

So recently I started a project where I want to display a graph showing relations between different datasets. The graph consists of Edges and Nodes, while both of these classes inherit QQuickPaintedItem and override the paint(QPainter* painter)…
Sören
  • 45
  • 4
0
votes
2 answers

QQuickView not appearing in .ui GUI

Currently working on a Python program that uses Qt Widgets from an .ui file to display an interactable GUI. However, i have not found a way to integrate the QQuickview widget to display any QML code, which i have read is possible. I'm using PySide2…
Sam Thadon
  • 11
  • 5
0
votes
0 answers

Running QQuickView of the MainWindow in a seprate thread in Qt

I have an application which has some modules in different tabs in Ui. In one of these tabs, I have a verticalLayout (map_verticalLayout) and I want to add a QQuickView (mapView) in this layout. In the constructor of the mainwindow.cpp I used the…