Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
65 views

I have a ListView with a SwipeDelegate as delegate. It's contentItem consists of a ColumnLayout with two RowLayouts inside. Now I want the second RowLayout to unfold, if I click the delegate. This ...
Me3nTaL's user avatar
  • 505
0 votes
0 answers
61 views

Contrary to the spec, CSS setting text-align: center is ignored by QLabel (other settings like font-size and color are respected): from PyQt6.QtWidgets import QApplication, QLabel app = QApplication([...
sds's user avatar
  • 60.5k
1 vote
0 answers
71 views

I'm trying to set up Qt Creator for Android development using Qt 6.9.1 on Windows 10. The SDK, NDK, and emulator are all detected correctly in Edit > Preferences > Devices > Android. However, ...
Ramao Junior's user avatar
-1 votes
1 answer
71 views

A QGraphicsScene contains a number of MyItem items. A MyItem is a QGraphicsItemGroup which contains, among other child items, a QGraphicsEllipseItem centred at the local origin. A number of MyItem ...
spraff's user avatar
  • 33.7k
0 votes
0 answers
87 views

I'm working on a Windows TCP socket-based listener in C++ where the Listener() function runs in a separate thread. It waits for image frames from a detector device. I have implemented an Abort() ...
crazyfox's user avatar
2 votes
1 answer
104 views

I'm following a tutorial for a game on QML (link:https://www.youtube.com/watch?v=0Nbt2yO85d0&list=PLeYV3WjZWmHyYUe-BElUVNeFYTmpOQ9Xq&index=10&ab_channel=KALI) I'm pretty sure that I have ...
Svyat's user avatar
  • 79
0 votes
1 answer
42 views

I'm trying to draw an image in a SuperCollider GUI, but I keep getting this error message, despite having enough space to draw the image in a UserView: ERROR: Qt: Usage of QPen is not allowed at this ...
les_h's user avatar
  • 438
0 votes
0 answers
86 views

How the dissolve looks like if you want to dissolve the entire window: And if I apply it to a single widget like this: self.test_label = QLabel() self.test_label.setFixedSize(300, 300)...
Edward's user avatar
  • 49
0 votes
0 answers
72 views

How can I map the X- and Y-values from the QAbstractTableModel to QML Mapper in QtGraphs? There must be some commands I have to fill in these QML code lines: GraphsView { antialiasing: true ...
user24126140's user avatar
1 vote
2 answers
118 views

I'm trying to create a spline in QTQuick using a ShapePath component, however I'm a bit lost and don't know where to start. The following gif and images are a reference for the result that I'm looking ...
Tac's user avatar
  • 37
0 votes
0 answers
63 views

I'm developing an Android app using Qt 6.9 that needs to scan WiFi networks. I've created a custom Java class to handle the WiFi scanning, but when I try to call it from C++ using QJniObject, I get a ...
kidtic's user avatar
  • 1
0 votes
0 answers
96 views

I only started to use heaptrack and can not set filtering by modules. It possible to do from gui like this Heap track but output very nosy and this filter doesn't influence to other tabs. Does exist ...
Александр Чулгарев's user avatar
0 votes
0 answers
61 views

I'm working on a simple SDL2 project in Visual Studio using vcpkg for dependency management. In my vcpkg installation, I have both Qt5 and SDL2 installed. I've used vcpkg integrate install to ...
user23308521's user avatar
2 votes
1 answer
62 views

I have an QML GridView that is displaying items from a model. A separate overlay needs to know the screen positions of the items within that GridView. However, I am having trouble accessing the ...
rprospero's user avatar
  • 1,023
1 vote
2 answers
154 views

I have a QtQuick StackView application that involves some quite heavy pages. I want to pre-load some of the heaviest pages during app startup to reduce lag and wait time later on. For reference, the ...
DvanHuyssteen's user avatar
1 vote
1 answer
172 views

The animated .webp file on the left is being played on Google Chrome, while the one on the right with a QMovie. I've tested this on PyQt6 6.7.1, 6.8.1 and 6.9.1, and also on PySide6 6.8.2. There ...
Edward's user avatar
  • 49
0 votes
1 answer
73 views

I have been developing a server-client messaging application with qt-5. Being close to release phase, I am experiencing a connectivity problem related to the SSL mechanism. The program source is ...
1138's user avatar
  • 17
0 votes
1 answer
109 views

I'm trying to implement a screenshot functionality into my PySide6 application using QGuiApplication.primaryScreen().grabWindow(). So far I've tried on two systems, both are running Ubuntu 22.04.5, ...
Ákos Godó's user avatar
1 vote
2 answers
204 views

I want to customize a ProgressBar so it looks like this: . I need to crop the internal "light orange" rectangle so it fits in the orange background. I use MultiEffect to do that, but I can't ...
gra's user avatar
  • 11
1 vote
1 answer
284 views

I'm building a project linking both with QtNetwork (Qt6) and Python library (3.8). At runtime, I get the error: my_prg_bin: symbol lookup error: /lib64/libk5crypto.so.3: undefined symbol: EVP_KDF_ctrl,...
jpo38's user avatar
  • 21.9k
0 votes
1 answer
96 views

PC with the Ubuntu on the Virtual Box is used as a host. Raspberry Pi is used as a target device. Is it possible remotely debug (using SSH and the possibilities of the QT Creator) a program with a GUI ...
Mykola Levun's user avatar
1 vote
1 answer
180 views

I'm trying to use QtCharts (specifically ChartView, PieSeries, etc.) in a Qt Quick project using Qt 6.9 with MinGW on Windows. Everything works perfectly when I run the QML with qmlscene, but as soon ...
antonio nobrega's user avatar
2 votes
1 answer
166 views

I'm using Qt Creator with Qt 6.9.0 to develop an Android application. The code works fine, and I can successfully build and run the app on my Android phone. Now, I'm trying to access a USB device ...
Anri's user avatar
  • 31
1 vote
2 answers
61 views

As per the code found at: Qt Triangle Example Adding a bit of debug logic: #include <QDateTime> #include <QDebug> #include <QGuiApplication> #include <QLoggingCategory> #...
Matthew Hoggan's user avatar
2 votes
0 answers
117 views

My project is set up as follows: CMake build system vcpkg checked out as Git submodule Using vcpkg in manifest mode with a vcpkg.json qtbase is installed via the above vcpkg.json. A CMakePresets.json ...
Parker Coates's user avatar