Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
1 vote
1 answer
86 views

I've created a custom qlabel using pyqt, however the text is slightly uneven when rotated. I've attached a picture of this vs an unrotated label. I've tried fixing it with setRenderHint Antialiasing, ...
GYA007's user avatar
  • 61
5 votes
2 answers
201 views

Let me introduce first the problem. I will present a simplification of my QT6 project app (in C++) to not make it too difficult to read, as the original code has lots of unnecesary things for this ...
Alberto Moreno Castro's user avatar
1 vote
1 answer
102 views

Here is the code. import sys from PyQt6.QtWidgets import QApplication from qpageview import View app = QApplication(sys.argv) view = View() view.show() sys.exit(app.exec()) When I run it from ...
Petr L's user avatar
  • 47
0 votes
1 answer
64 views

I'm trying to make a QTableView with Python and PyQt6 that display a popup message and posibly some tools, like filters, when you click in a header section. I'm trying to replace an excel spreadsheet ...
Andrés Necochea's user avatar
0 votes
0 answers
60 views

When using signals and slots in Qt to mirror the content of one Q_PROPERTY to another in a unidirectional way I often find myself repeating the same pattern: Set the "target" property equal ...
Stefan Pfeifer's user avatar
2 votes
3 answers
146 views

I tried the word Wrap option in QLabel, but it wraps second word of "Hello World" on next line when size of label shrinks, I need to wrap the single word like "Hello" on character ...
Adil Ahmed's user avatar
0 votes
0 answers
54 views

I have a QToolBox which has a page, which has a QWidget and the QWidget has a QLabel. How can I access the QLabel only with direct access to the QToolBox? QToolBox* toolBox = new QToolBox; void ...
Svyat's user avatar
  • 79
1 vote
0 answers
79 views

I have a QList like this QList<media *> MyList; Where media is an abstract class created by me. I use this list to store objects of tree different classes, all tree inherit from media. I have to ...
Nenad Radulovic's user avatar
0 votes
1 answer
72 views

I am trying to make a plugin for OBS Studio that will add a custom source type object. OBS provide a simple way to let the user display and change the source properties with the function ...
Bukibarak's user avatar
0 votes
0 answers
127 views

I want to watch RTSP Stream in a widget in QT6, but although I specify it at the bottom of the code, it opens in a separate window called "Direct3D11 renderer", not on that qt app widget. If ...
Forel Leor's user avatar
1 vote
1 answer
69 views

I am working on a media player (spotify clone?) and want to recreate the "meatball" menu found on songs and like the way it floats freely next to the meatball button and remains there. My ...
Angus Hay's user avatar
0 votes
0 answers
95 views

In the constructor I call the following method: void UsersManagement::loadUsers() { QList<User> users = getUsers(); float y = 10; foreach(User user, users) { UserWidget * item = ...
Edward Cohen's user avatar
0 votes
1 answer
91 views

I am using QWidget and its paintEvent. Im using QPainter::scale(zoom,zoom) to scale background images on the widget. Then I want to paint some foreground icons and keep their size the same all the ...
JoeliP's user avatar
  • 33
1 vote
1 answer
127 views

I set the QSlider in QT using the qss style, which I set at the beginning QSlider::groove: horizontal { background: rgb(217,221,227); height: 14px; border-radius: 7px; } QSlider::handle: ...
Zeus's user avatar
  • 3,936
0 votes
1 answer
465 views

Given the following main window implementation: #include <QApplication> #include "MainWindow.h" namespace ui { MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ...
Arseni Mourzenko's user avatar

15 30 50 per page
1
2 3 4 5
100