Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Draw on the center of widget
Forum Updated to NodeBB v4.3 + New Features

Draw on the center of widget

Scheduled Pinned Locked Moved Solved General and Desktop
3 Posts 2 Posters 1.8k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Y Offline
    Y Offline
    yugosonegi
    wrote on last edited by yugosonegi
    #1

    I'm trying to draw an image on the center of a widget using the paintEvent and I'm doing like this:

    QPainter painter;
    painter.drawPixmap(QPoint(width() / 2 - mLogotype->width() / 2, height() / 2 - mLogotype->height() / 2), mLogotype);
    

    Is there a more convenient way for doing that?

    The mLogotype is a QPixmap.

    1 Reply Last reply
    0
    • Chris KawaC Offline
      Chris KawaC Offline
      Chris Kawa
      Lifetime Qt Champion
      wrote on last edited by
      #2

      You already have it in one line so there's little to be improved, but you can also do:

      painter.drawPixmap((rect().bottomRight() - mLogotype.rect().bottomRight()) / 2, mLogotype);
      

      Btw. In your example there's QPointer. I think you meant QPoint.

      Y 1 Reply Last reply
      4
      • Chris KawaC Chris Kawa

        You already have it in one line so there's little to be improved, but you can also do:

        painter.drawPixmap((rect().bottomRight() - mLogotype.rect().bottomRight()) / 2, mLogotype);
        

        Btw. In your example there's QPointer. I think you meant QPoint.

        Y Offline
        Y Offline
        yugosonegi
        wrote on last edited by
        #3

        @Chris-Kawa Yes, it's point and thank you for the improvement. :D

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved