need help on widgets creation
Unsolved
Qt Creator and other tools
-
I wanted to create widget as shown in image. Colors indicates artist work progress like
green color means "wip"
light blue color means "waiting for approval"
Color pattern varies based on user workflow.
please suggest the better approach in widget creation. -
@srikanth-sreeram
create a custom QWidget/QFrame and use QPainter API in its paintEvent() handler to draw rects.
See this example how to use QPainter.