QPainter is a Qt class that provides low-level painting on widgets or other paint devices.
Code for the beginning: QColor yellow("#f0d048"); Qt::BrushStyle style = Qt::SolidPattern; QBrush brush(yellow, style); painter.setBrush(brush); …
c++ qt qpainter drawellipse