Re: Number inside the circle
Congratulations. Was there a question?
Re: Number inside the circle
Quote:
Originally Posted by
ChrisW67
Was there a question?
How can add number inside the circle ??
Re: Number inside the circle
QPainter::drawText() in the Node::paint() method would be a good starting point.
Re: Number inside the circle
Is there a way to minimize the size of the font in the QPainter::drawText() ??
Thank :)
Re: Number inside the circle
a good way is to use the same QRect or QRectF to draw the circle
and to draw the text
To change font's size, use QFont::setPointSize() or QFont::setPointSizeF()