this post was submitted on 09 Feb 2025
31 points (100.0% liked)

Python

6628 readers
116 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

๐Ÿ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

๐Ÿ Python project:
๐Ÿ’“ Python Community:
โœจ Python Ecosystem:
๐ŸŒŒ Fediverse
Communities
Projects
Feeds

founded 2 years ago
MODERATORS
 

I'm working on a project that needs lots of toolbars on screen at once, even though not all of them will be used at the same time. So, I'm modelling this 'foldable' dock widget after what I remember Photoshop panels used to be like.

It's a work in progress, but would like to hear constructive suggestions.

https://blocks.programming.dev/0101100101/42c5d67f86c049baa3500aa38e439f8a

you are viewing a single comment's thread
view the rest of the comments
[โ€“] Yareckt@lemmynsfw.com 1 points 1 day ago* (last edited 1 day ago)

I don't know anything about qt. But I can criticise the design a bit. If something isn't possible to realize in qt then I apologise.

  1. The Label may not need to be displayed in a separate line. You maybe could put the basic information abpu the window into the windows title and display additional information from the label when hovering over the title.
  2. The sliders have no way to display what the concrete value selected with the slider is. You may want to include the concrete value next to the slider name.
  3. The 3 buttons in the windows top box could be reduced. From a use case perspective being able to hide the tool window and then restore it at the same position is the same as being able to collapse it.
  4. A kind of spacer between the sliders and the next sliders name could make it faster to identify which slider belongs to which name. Don't know what would look good but you could try leaving a tiny bit more space between them or including some thin lines that don't touch the windows edges.