
widget overlapping using layout - Qt Forum
Jan 21, 2019 · hi @Bharth , As far as I know, there's only one way to stack widgets on top of each other, while using a layout. That is QGridLayout the addWidget functions allows you to place multiple widgets inside the same Cell and all will be effected by the Layout and it's resizing mechanism. However this is a c++-code only way. AFAIK you can not do this via the Designer-Plugin. Otherwise, you'll have to ...
Widgets doesn't fit to content after hiding - Qt Forum
Jul 1, 2015 · The problem is when I'm hiding widgets the height from the QGroupbox didn't fit to content. I have more space available than I need. When I have more widgets in my Groupbox the space will be more too. I set the SizePolicy from my Groupbox to minimum and after hiding the widgets I set a new minimumheight and called adjustSize (). But it doesn't ...
how to automatically resize widgets when window is resized ... - Qt …
Nov 18, 2016 · I want to resize my widgets and all the widgets in my widget automatically everytime without hardcoding it. is that possible. (i dont want to use a layout b...
Adding Widgets to widgets - Qt Forum
Dec 13, 2021 · Is it possible to add widgets to a widget? Basically, widgets are added to the layout. I've done so in my coding but it does not give me the desired result.
Qt Widgets + GStreamer + Overlay + Screen Capture
Feb 7, 2023 · This is really two questions but the code is only slightly different and I didn't want to post it twice. How to get text overlay on top of GStreamer video s...
Creating widgets in "another" thread... - Qt Forum
Nov 28, 2019 · Initialize widgets on app startup - fine - runs in main loop at app start. Pre-populate widgets with data = Each widget I have is a subclass of Qt widget, it contains a "cached" member which holds "new" value so that finding data/preparring data is stored there. - …
[SOLVED] how to overlap widgets - Qt Forum
Apr 11, 2012 · I know that a common technique for overlapping two widgets is to make the displayed widget the child of the concealed one. But what if you have a widget partially covering two others? Say I have squares A, B, and C of type QWidget, where A …
Strange Crash When Widgets show() is called - Qt Forum
Oct 22, 2019 · A Strange Crash as long as widget (or inherent from QWidget) show() method is called. I'm using custom Application which subclass QApplication, would that ...
Scale Size of all GUI Widgets easily? - Qt Forum
Apr 23, 2013 · I have a Qt application where I sometime need to rescale (as opposed to resizing using layouts) all the widgets for screens of different display resolution. I did a tree walk of every widget and adjusted the minimum size, the maximum size, the …
Overlaying QWidgets - Qt Forum
Oct 14, 2017 · I probably already know the answer to this but, is there any way of overlaying one QWidget on top of another QWidget without the bottom widget being the top ...