2016-05-20 18:35:58 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-05-20 18:35:58 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-05-20 18:35:58 +03:00
|
|
|
*/
|
|
|
|
#include "profile/profile_block_widget.h"
|
|
|
|
|
|
|
|
#include "styles/style_profile.h"
|
2016-11-15 14:56:49 +03:00
|
|
|
#include "styles/style_widgets.h"
|
2016-05-20 18:35:58 +03:00
|
|
|
|
|
|
|
namespace Profile {
|
|
|
|
|
2017-09-25 19:06:53 +03:00
|
|
|
BlockWidget::BlockWidget(
|
|
|
|
QWidget *parent,
|
|
|
|
PeerData *peer,
|
|
|
|
const QString &title) : RpWidget(parent)
|
2016-05-20 18:35:58 +03:00
|
|
|
, _peer(peer)
|
|
|
|
, _title(title) {
|
|
|
|
}
|
|
|
|
|
2016-05-31 22:27:11 +03:00
|
|
|
int BlockWidget::contentTop() const {
|
2016-06-20 14:31:12 +03:00
|
|
|
return emptyTitle() ? 0 : (st::profileBlockMarginTop + st::profileBlockTitleHeight);
|
2016-05-31 22:27:11 +03:00
|
|
|
}
|
|
|
|
|
2016-05-20 18:35:58 +03:00
|
|
|
void BlockWidget::paintEvent(QPaintEvent *e) {
|
|
|
|
Painter p(this);
|
|
|
|
|
2016-06-17 21:18:01 +03:00
|
|
|
paintTitle(p);
|
|
|
|
paintContents(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlockWidget::paintTitle(Painter &p) {
|
|
|
|
if (emptyTitle()) return;
|
|
|
|
|
2016-05-20 18:35:58 +03:00
|
|
|
p.setFont(st::profileBlockTitleFont);
|
|
|
|
p.setPen(st::profileBlockTitleFg);
|
2016-05-31 22:27:11 +03:00
|
|
|
int titleLeft = st::profileBlockTitlePosition.x();
|
|
|
|
int titleTop = st::profileBlockMarginTop + st::profileBlockTitlePosition.y();
|
|
|
|
p.drawTextLeft(titleLeft, titleTop, width(), _title);
|
2016-05-20 18:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Profile
|