| 648 | } |
| 649 | |
| 650 | void CalendarBox::FloatingDate::paint() { |
| 651 | auto p = QPainter(&_widget); |
| 652 | |
| 653 | FillRoundRect(p, _widget.rect(), st::roundedBg, _corners); |
| 654 | |
| 655 | p.setFont(st::msgServiceFont); |
| 656 | p.setPen(st::roundedFg); |
| 657 | p.drawText( |
| 658 | st::msgServicePadding.left(), |
| 659 | st::msgServicePadding.top() + st::msgServiceFont->ascent, |
| 660 | _text); |
| 661 | } |
| 662 | |
| 663 | CalendarBox::Inner::Inner( |
| 664 | QWidget *parent, |
no test coverage detected