2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2015-10-03 13:16:42 +00:00
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2015-10-03 13:16:42 +00:00
|
|
|
Copyright (c) 2014-2015 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2015-04-11 10:04:10 +00:00
|
|
|
namespace App {
|
|
|
|
const QPixmap &sprite();
|
|
|
|
}
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
class Painter : public QPainter {
|
|
|
|
public:
|
|
|
|
explicit Painter(QPaintDevice *device) : QPainter(device) {
|
|
|
|
}
|
|
|
|
|
2015-09-16 13:04:08 +00:00
|
|
|
void setFont(const style::font &font) {
|
|
|
|
QPainter::setFont(font->f);
|
|
|
|
}
|
|
|
|
void setFont(const QFont &font) {
|
|
|
|
QPainter::setFont(font);
|
|
|
|
}
|
|
|
|
void setBrush(const style::color &color) {
|
|
|
|
QPainter::setBrush(color->b);
|
|
|
|
}
|
|
|
|
void setBrush(const QColor &color) {
|
|
|
|
QPainter::setBrush(color);
|
|
|
|
}
|
|
|
|
void setBrush(const QBrush &brush) {
|
|
|
|
QPainter::setBrush(brush);
|
|
|
|
}
|
|
|
|
void setBrush(Qt::BrushStyle style) {
|
|
|
|
QPainter::setBrush(style);
|
|
|
|
}
|
|
|
|
void setPen(const style::color &color) {
|
|
|
|
QPainter::setPen(color->p);
|
|
|
|
}
|
|
|
|
void setPen(const QPen &pen) {
|
|
|
|
QPainter::setPen(pen);
|
|
|
|
}
|
|
|
|
void setPen(const QColor &color) {
|
|
|
|
QPainter::setPen(color);
|
|
|
|
}
|
|
|
|
void setPen(Qt::PenStyle style) {
|
|
|
|
QPainter::setPen(style);
|
|
|
|
}
|
|
|
|
|
2015-04-11 10:04:10 +00:00
|
|
|
void drawTextLeft(int x, int y, int outerw, const QString &text, int textWidth = -1) {
|
2015-04-02 10:33:19 +00:00
|
|
|
QFontMetrics m(fontMetrics());
|
|
|
|
if (rtl() && textWidth < 0) textWidth = m.width(text);
|
2015-04-11 10:04:10 +00:00
|
|
|
drawText(rtl() ? (outerw - x - textWidth) : x, y + m.ascent(), text);
|
2015-04-02 10:33:19 +00:00
|
|
|
}
|
2015-04-11 10:04:10 +00:00
|
|
|
void drawTextRight(int x, int y, int outerw, const QString &text, int textWidth = -1) {
|
2015-04-02 10:33:19 +00:00
|
|
|
QFontMetrics m(fontMetrics());
|
|
|
|
if (!rtl() && textWidth < 0) textWidth = m.width(text);
|
2015-04-11 10:04:10 +00:00
|
|
|
drawText(rtl() ? x : (outerw - x - textWidth), y + m.ascent(), text);
|
|
|
|
}
|
|
|
|
void drawPixmapLeft(int x, int y, int outerw, const QPixmap &pix, const QRect &from) {
|
|
|
|
drawPixmap(QPoint(rtl() ? (outerw - x - (from.width() / pix.devicePixelRatio())) : x, y), pix, from);
|
|
|
|
}
|
2015-04-19 10:29:19 +00:00
|
|
|
void drawPixmapLeft(const QPoint &p, int outerw, const QPixmap &pix, const QRect &from) {
|
|
|
|
return drawPixmapLeft(p.x(), p.y(), outerw, pix, from);
|
|
|
|
}
|
2015-06-05 15:02:20 +00:00
|
|
|
void drawPixmapLeft(int x, int y, int w, int h, int outerw, const QPixmap &pix, const QRect &from) {
|
|
|
|
drawPixmap(QRect(rtl() ? (outerw - x - w) : x, y, w, h), pix, from);
|
|
|
|
}
|
|
|
|
void drawPixmapLeft(const QRect &r, int outerw, const QPixmap &pix, const QRect &from) {
|
|
|
|
return drawPixmapLeft(r.x(), r.y(), r.width(), r.height(), outerw, pix, from);
|
|
|
|
}
|
2015-05-08 14:44:07 +00:00
|
|
|
void drawPixmapLeft(int x, int y, int outerw, const QPixmap &pix) {
|
|
|
|
drawPixmap(QPoint(rtl() ? (outerw - x - (pix.width() / pix.devicePixelRatio())) : x, y), pix);
|
|
|
|
}
|
|
|
|
void drawPixmapLeft(const QPoint &p, int outerw, const QPixmap &pix) {
|
|
|
|
return drawPixmapLeft(p.x(), p.y(), outerw, pix);
|
|
|
|
}
|
2015-04-11 10:04:10 +00:00
|
|
|
void drawPixmapRight(int x, int y, int outerw, const QPixmap &pix, const QRect &from) {
|
|
|
|
drawPixmap(QPoint(rtl() ? x : (outerw - x - (from.width() / pix.devicePixelRatio())), y), pix, from);
|
|
|
|
}
|
2015-04-19 10:29:19 +00:00
|
|
|
void drawPixmapRight(const QPoint &p, int outerw, const QPixmap &pix, const QRect &from) {
|
|
|
|
return drawPixmapRight(p.x(), p.y(), outerw, pix, from);
|
|
|
|
}
|
2015-06-05 15:02:20 +00:00
|
|
|
void drawPixmapRight(int x, int y, int w, int h, int outerw, const QPixmap &pix, const QRect &from) {
|
|
|
|
drawPixmap(QRect(rtl() ? x : (outerw - x - w), y, w, h), pix, from);
|
|
|
|
}
|
|
|
|
void drawPixmapRight(const QRect &r, int outerw, const QPixmap &pix, const QRect &from) {
|
|
|
|
return drawPixmapRight(r.x(), r.y(), r.width(), r.height(), outerw, pix, from);
|
|
|
|
}
|
2015-05-08 14:44:07 +00:00
|
|
|
void drawPixmapRight(int x, int y, int outerw, const QPixmap &pix) {
|
|
|
|
drawPixmap(QPoint(rtl() ? x : (outerw - x - (pix.width() / pix.devicePixelRatio())), y), pix);
|
|
|
|
}
|
|
|
|
void drawPixmapRight(const QPoint &p, int outerw, const QPixmap &pix) {
|
|
|
|
return drawPixmapRight(p.x(), p.y(), outerw, pix);
|
|
|
|
}
|
2015-04-19 10:29:19 +00:00
|
|
|
void drawSprite(int x, int y, const style::sprite &sprite) {
|
|
|
|
return drawPixmap(QPoint(x, y), App::sprite(), sprite);
|
|
|
|
}
|
|
|
|
void drawSprite(const QPoint &p, const style::sprite &sprite) {
|
|
|
|
return drawPixmap(p, App::sprite(), sprite);
|
|
|
|
}
|
|
|
|
void drawSpriteLeft(int x, int y, int outerw, const style::sprite &sprite) {
|
2015-04-11 10:04:10 +00:00
|
|
|
return drawPixmapLeft(x, y, outerw, App::sprite(), sprite);
|
|
|
|
}
|
2015-04-19 10:29:19 +00:00
|
|
|
void drawSpriteLeft(const QPoint &p, int outerw, const style::sprite &sprite) {
|
|
|
|
return drawPixmapLeft(p, outerw, App::sprite(), sprite);
|
|
|
|
}
|
2015-06-05 15:02:20 +00:00
|
|
|
void drawSpriteLeft(int x, int y, int w, int h, int outerw, const style::sprite &sprite) {
|
|
|
|
return drawPixmapLeft(x, y, w, h, outerw, App::sprite(), sprite);
|
|
|
|
}
|
|
|
|
void drawSpriteLeft(const QRect &r, int outerw, const style::sprite &sprite) {
|
|
|
|
return drawPixmapLeft(r, outerw, App::sprite(), sprite);
|
|
|
|
}
|
2015-04-19 10:29:19 +00:00
|
|
|
void drawSpriteRight(int x, int y, int outerw, const style::sprite &sprite) {
|
2015-04-11 10:04:10 +00:00
|
|
|
return drawPixmapRight(x, y, outerw, App::sprite(), sprite);
|
2015-04-02 10:33:19 +00:00
|
|
|
}
|
2015-04-19 10:29:19 +00:00
|
|
|
void drawSpriteRight(const QPoint &p, int outerw, const style::sprite &sprite) {
|
|
|
|
return drawPixmapRight(p, outerw, App::sprite(), sprite);
|
|
|
|
}
|
2015-06-05 15:02:20 +00:00
|
|
|
void drawSpriteRight(int x, int y, int w, int h, int outerw, const style::sprite &sprite) {
|
|
|
|
return drawPixmapRight(x, y, w, h, outerw, App::sprite(), sprite);
|
|
|
|
}
|
|
|
|
void drawSpriteRight(const QRect &r, int outerw, const style::sprite &sprite) {
|
|
|
|
return drawPixmapRight(r, outerw, App::sprite(), sprite);
|
|
|
|
}
|
2015-04-19 10:29:19 +00:00
|
|
|
void drawSpriteCenter(const QRect &in, const style::sprite &sprite) {
|
|
|
|
return drawPixmap(QPoint(in.x() + (in.width() - sprite.pxWidth()) / 2, in.y() + (in.height() - sprite.pxHeight()) / 2), App::sprite(), sprite);
|
|
|
|
}
|
2015-07-03 08:47:16 +00:00
|
|
|
void drawSpriteCenterLeft(const QRect &in, int outerw, const style::sprite &sprite) {
|
|
|
|
return drawPixmapLeft(QPoint(in.x() + (in.width() - sprite.pxWidth()) / 2, in.y() + (in.height() - sprite.pxHeight()) / 2), outerw, App::sprite(), sprite);
|
|
|
|
}
|
|
|
|
void drawSpriteCenterRight(const QRect &in, int outerw, const style::sprite &sprite) {
|
|
|
|
return drawPixmapRight(QPoint(in.x() + (in.width() - sprite.pxWidth()) / 2, in.y() + (in.height() - sprite.pxHeight()) / 2), outerw, App::sprite(), sprite);
|
|
|
|
}
|
2015-04-02 10:33:19 +00:00
|
|
|
};
|
|
|
|
|
2015-09-16 13:04:08 +00:00
|
|
|
#define T_WIDGET public: \
|
|
|
|
TWidget *tparent() { \
|
|
|
|
return qobject_cast<TWidget*>(parentWidget()); \
|
|
|
|
} \
|
|
|
|
const TWidget *tparent() const { \
|
|
|
|
return qobject_cast<const TWidget*>(parentWidget()); \
|
|
|
|
} \
|
|
|
|
virtual void leaveToChildEvent(QEvent *e) { /* e -- from enterEvent() of child TWidget */ \
|
|
|
|
} \
|
|
|
|
virtual void enterFromChildEvent(QEvent *e) { /* e -- from leaveEvent() of child TWidget */ \
|
|
|
|
} \
|
2015-10-06 19:49:23 +00:00
|
|
|
void moveToLeft(int x, int y, int outerw = 0) { \
|
|
|
|
move(rtl() ? ((outerw > 0 ? outerw : parentWidget()->width()) - x - width()) : x, y); \
|
2015-09-16 13:04:08 +00:00
|
|
|
} \
|
2015-10-06 19:49:23 +00:00
|
|
|
void moveToRight(int x, int y, int outerw = 0) { \
|
|
|
|
move(rtl() ? x : ((outerw > 0 ? outerw : parentWidget()->width()) - x - width()), y); \
|
2015-09-16 13:04:08 +00:00
|
|
|
} \
|
|
|
|
QPoint myrtlpoint(int x, int y) const { \
|
|
|
|
return rtlpoint(x, y, width()); \
|
|
|
|
} \
|
|
|
|
QPoint myrtlpoint(const QPoint p) const { \
|
|
|
|
return rtlpoint(p, width()); \
|
|
|
|
} \
|
|
|
|
QRect myrtlrect(int x, int y, int w, int h) const { \
|
|
|
|
return rtlrect(x, y, w, h, width()); \
|
|
|
|
} \
|
|
|
|
QRect myrtlrect(const QRect &r) { \
|
|
|
|
return rtlrect(r, width()); \
|
|
|
|
} \
|
|
|
|
void rtlupdate(const QRect &r) { \
|
|
|
|
update(myrtlrect(r)); \
|
|
|
|
} \
|
|
|
|
protected: \
|
|
|
|
void enterEvent(QEvent *e) { \
|
|
|
|
TWidget *p(tparent()); \
|
|
|
|
if (p) p->leaveToChildEvent(e); \
|
|
|
|
return QWidget::enterEvent(e); \
|
|
|
|
} \
|
|
|
|
void leaveEvent(QEvent *e) { \
|
|
|
|
TWidget *p(tparent()); \
|
|
|
|
if (p) p->enterFromChildEvent(e); \
|
|
|
|
return QWidget::leaveEvent(e); \
|
|
|
|
}
|
|
|
|
|
2015-07-03 08:47:16 +00:00
|
|
|
class TWidget : public QWidget {
|
2014-05-30 08:53:19 +00:00
|
|
|
Q_OBJECT
|
2015-09-16 13:04:08 +00:00
|
|
|
T_WIDGET
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-07-03 08:47:16 +00:00
|
|
|
TWidget(QWidget *parent = 0) : QWidget(parent) {
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-09-29 02:47:30 +00:00
|
|
|
bool event(QEvent *e) {
|
|
|
|
return QWidget::event(e);
|
|
|
|
}
|
2015-10-17 14:52:26 +00:00
|
|
|
virtual void grabStart() {
|
|
|
|
}
|
|
|
|
virtual void grabFinish() {
|
|
|
|
}
|
2014-09-29 02:47:30 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
};
|
2014-06-14 19:32:11 +00:00
|
|
|
|
2015-07-17 19:17:37 +00:00
|
|
|
void myEnsureResized(QWidget *target);
|
2015-10-17 14:52:26 +00:00
|
|
|
QPixmap myGrab(TWidget *target, QRect rect = QRect());
|
2015-10-17 08:31:48 +00:00
|
|
|
|
|
|
|
class PlainShadow : public TWidget {
|
|
|
|
public:
|
|
|
|
PlainShadow(QWidget *parent, const style::color &color) : TWidget(parent), _color(color) {
|
|
|
|
}
|
|
|
|
void paintEvent(QPaintEvent *e) {
|
|
|
|
Painter(this).fillRect(e->rect(), _color->b);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const style::color &_color;
|
|
|
|
|
|
|
|
};
|