4 August 2026
PySide Bottext not yet in the index
Look at the method of raise_() and lower() for manipulate on different levels
(irc) uuuuu: luziferius: when I specify the background in stylesheet it's blank, when I specify a pixmap label without adding the widget to layout the background displays. No other widget is displaying. How can I force debugging messages with stylesheet because I think it may not liking the full path
I'm a bit out of my knowledge zone with those follow-ups. When the grid layout doesn't work for you, then manual positioning may be the only solution. How difficult that is depends on whether the widget should be resizable or not. You'd have to customize the event handlnig and re-calculate sizes and positions whenever a resize event arrives. And maybe even handle style change events, since different styles may have different widget margins that could affect the inner widget's drawing area
(irc) uuuuu: luziferius: I had to convert to forward slash. I got picture to show up with stylesheet using border-image: url(<url>) 0 0 0 0 stretch stretch but it's very small in the corner of the window. Attempting background image yielded no image but just white but the same small size in the corner
(irc) uuuuu: luziferius I think the problem is style sheet is cascading so it is applying the setting to all the qwidgets. You can specify the specific object you want it to apply to with # but I'm not sure what to specify there since I'm just doing this in a new window which is just inherit QWidget. Any chance you would know how to specify the current object because #self isn't working
5 August 2026
Ссылка
click to show
click to show
You can set the style on each widget:
https://doc.qt.io/qt-6/qwidget.html#styleSheet-prop
Not sure if that still cascades.
At worst, you can set the default style sheet to each child widget after setting the style on the container. QWidget has a method for finding all children, so at least that part is easy
Stylesheets for Widgets are not a complete solution, and there are many broken bits here and there.
When wanting to customize applications better, the solution is QtQuick.
If you cannot move away from Qt Widgets, you might need to do like many projects (including telegram desktop) where you style the widgets directly and create your own stuff like QFancyPushButton and use that instead, for example: https://github.com/laserpants/qt-material-widgets
24 August 2026
Cristián 🥑No, https://wiki.qt.io/Qt_for_Python#Python_compatibility_matrix
BTW: As stated in the table, Qt 6.8 supports Python 3.13 fully, including the free-threading mode ;) (Which is of course incorrect. That square should be yellow, like the rest)
26 August 2026
28 August 2026
29 August 2026
id 8047890969Hello, am a beginner learning QT framework, does the framework work with other programming languages like python or it's solely for c++? Pls I need some clarity
Hello, there is project Qt for python which allow programm app's on python (with different license PySide, PyQt)
1 September 2026
└─[ Error, check your command]> uv add -r .\requirements.txt -p 3.12
error: Failed to parse: `pyproject.toml`
Caused by: TOML parse error at line 2, column 8
|
2 | name = "PySide QtQuick Project"
| ^^^^^^^^^^^^^^^^^^^^^^^^
Not a valid package or extra name: "PySide QtQuick Project". Names must start and end with a letter or digit and may only contain -, _, ., and alphanumeric characters.