Guest User

Untitled

a guest
Feb 12th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. .-----.
  2. | Phy |
  3. `-----´
  4.  
  5. void MyWidget::drawIcon(QPainter *painter, QPoint pos) {
  6. QPixmap pixmap = icon.pixmap(QSize(22, 22),
  7. isEnabled() ? QIcon::Normal
  8. : QIcon::Disabled,
  9. isChecked() ? QIcon::On
  10. : QIcon::Off);
  11. painter->drawPixmap(pos, pixmap);
  12. }
Add Comment
Please, Sign In to add comment