I just started using PyQt6, and im struggling with certain parts of it :
- for my custom window class, should I extend QWidget or QMainWindow ?
- how should I make a custom "frame" widget (what class should it extend) ? I'd like it to be stylesheet-able, like a button, add a layout, child widgets, etc ...
- concerning layouts, how do I make a widget dimensions folllow the window's dimensions (only one at a time for exemple, stick to the sides) ?
- How do I make the previously stated "frame" widget follow the window's dimensions ? I'd like to make a layout for a borderless window with a top bar, and a frame for the window content (or is there a better way to do it ?)
I have a few more questions but I think that's good enough for now