mirror of https://github.com/procxx/kepka.git
Highlight mentions in sticker set box title.
This commit is contained in:
parent
299143108b
commit
c1598ff4ed
|
@ -26,6 +26,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#include "ui/effects/widget_fade_wrap.h"
|
#include "ui/effects/widget_fade_wrap.h"
|
||||||
#include "ui/widgets/buttons.h"
|
#include "ui/widgets/buttons.h"
|
||||||
#include "ui/widgets/scroll_area.h"
|
#include "ui/widgets/scroll_area.h"
|
||||||
|
#include "ui/widgets/labels.h"
|
||||||
#include "mainwidget.h"
|
#include "mainwidget.h"
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
|
||||||
|
@ -203,6 +204,7 @@ AbstractBox::AbstractBox(QWidget *parent, Window::Controller *controller, object
|
||||||
|
|
||||||
void AbstractBox::setLayerType(bool layerType) {
|
void AbstractBox::setLayerType(bool layerType) {
|
||||||
_layerType = layerType;
|
_layerType = layerType;
|
||||||
|
updateTitlePosition();
|
||||||
}
|
}
|
||||||
|
|
||||||
int AbstractBox::titleHeight() const {
|
int AbstractBox::titleHeight() const {
|
||||||
|
@ -236,23 +238,15 @@ void AbstractBox::paintEvent(QPaintEvent *e) {
|
||||||
p.fillRect(rect, st::boxBg);
|
p.fillRect(rect, st::boxBg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!_title.isEmpty() && clip.intersects(QRect(0, 0, width(), titleHeight()))) {
|
if (!_additionalTitle.isEmpty() && clip.intersects(QRect(0, 0, width(), titleHeight()))) {
|
||||||
paintTitle(p, _title, _additionalTitle);
|
paintAdditionalTitle(p);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractBox::paintTitle(Painter &p, const QString &title, const QString &additional) {
|
void AbstractBox::paintAdditionalTitle(Painter &p) {
|
||||||
p.setFont(st::boxTitleFont);
|
p.setFont(st::boxLayerTitleAdditionalFont);
|
||||||
p.setPen(st::boxTitleFg);
|
p.setPen(st::boxTitleAdditionalFg);
|
||||||
auto titleWidth = st::boxTitleFont->width(title);
|
p.drawTextLeft(_titleLeft + (_title ? _title->width() : 0) + st::boxLayerTitleAdditionalSkip, _titleTop + st::boxTitleFont->ascent - st::boxLayerTitleAdditionalFont->ascent, width(), _additionalTitle);
|
||||||
auto titleLeft = _layerType ? st::boxLayerTitlePosition.x() : st::boxTitlePosition.x();
|
|
||||||
auto titleTop = _layerType ? st::boxLayerTitlePosition.y() : st::boxTitlePosition.y();
|
|
||||||
p.drawTextLeft(titleLeft, titleTop, width(), title, titleWidth);
|
|
||||||
if (!additional.isEmpty()) {
|
|
||||||
p.setFont(st::boxLayerTitleAdditionalFont);
|
|
||||||
p.setPen(st::boxTitleAdditionalFg);
|
|
||||||
p.drawTextLeft(titleLeft + titleWidth + st::boxLayerTitleAdditionalSkip, titleTop + st::boxTitleFont->ascent - st::boxLayerTitleAdditionalFont->ascent, width(), additional);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractBox::parentResized() {
|
void AbstractBox::parentResized() {
|
||||||
|
@ -262,18 +256,33 @@ void AbstractBox::parentResized() {
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractBox::setTitle(const QString &title, const QString &additional) {
|
void AbstractBox::setTitle(const QString &title) {
|
||||||
|
setTitle({ title, EntitiesInText() });
|
||||||
|
}
|
||||||
|
|
||||||
|
void AbstractBox::setTitle(const TextWithEntities &title) {
|
||||||
auto wasTitle = hasTitle();
|
auto wasTitle = hasTitle();
|
||||||
_title = title;
|
if (!title.text.isEmpty()) {
|
||||||
_additionalTitle = additional;
|
if (!_title) {
|
||||||
update();
|
_title.create(this, st::boxTitle);
|
||||||
|
}
|
||||||
|
_title->setMarkedText(title);
|
||||||
|
updateTitlePosition();
|
||||||
|
} else {
|
||||||
|
_title.destroy();
|
||||||
|
}
|
||||||
if (wasTitle != hasTitle()) {
|
if (wasTitle != hasTitle()) {
|
||||||
updateSize();
|
updateSize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AbstractBox::setAdditionalTitle(const QString &additional) {
|
||||||
|
_additionalTitle = additional;
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
bool AbstractBox::hasTitle() const {
|
bool AbstractBox::hasTitle() const {
|
||||||
return !_title.isEmpty() || !_additionalTitle.isEmpty();
|
return (_title != nullptr) || !_additionalTitle.isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractBox::updateSize() {
|
void AbstractBox::updateSize() {
|
||||||
|
@ -295,6 +304,15 @@ void AbstractBox::updateButtonsPositions() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AbstractBox::updateTitlePosition() {
|
||||||
|
_titleLeft = _layerType ? st::boxLayerTitlePosition.x() : st::boxTitlePosition.x();
|
||||||
|
_titleTop = _layerType ? st::boxLayerTitlePosition.y() : st::boxTitlePosition.y();
|
||||||
|
if (_title) {
|
||||||
|
_title->resizeToWidth(qMin(_title->naturalWidth(), width() - _titleLeft * 2));
|
||||||
|
_title->moveToLeft(_titleLeft, _titleTop);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void AbstractBox::clearButtons() {
|
void AbstractBox::clearButtons() {
|
||||||
for (auto &button : base::take(_buttons)) {
|
for (auto &button : base::take(_buttons)) {
|
||||||
button.destroy();
|
button.destroy();
|
||||||
|
@ -358,6 +376,7 @@ int AbstractBox::contentTop() const {
|
||||||
|
|
||||||
void AbstractBox::resizeEvent(QResizeEvent *e) {
|
void AbstractBox::resizeEvent(QResizeEvent *e) {
|
||||||
updateButtonsPositions();
|
updateButtonsPositions();
|
||||||
|
updateTitlePosition();
|
||||||
|
|
||||||
auto top = contentTop();
|
auto top = contentTop();
|
||||||
_content->resize(width(), height() - top - buttonsHeight());
|
_content->resize(width(), height() - top - buttonsHeight());
|
||||||
|
|
|
@ -27,6 +27,7 @@ namespace Ui {
|
||||||
class RoundButton;
|
class RoundButton;
|
||||||
class IconButton;
|
class IconButton;
|
||||||
class ScrollArea;
|
class ScrollArea;
|
||||||
|
class FlatLabel;
|
||||||
template <typename Widget>
|
template <typename Widget>
|
||||||
class WidgetFadeWrap;
|
class WidgetFadeWrap;
|
||||||
} // namespace Ui
|
} // namespace Ui
|
||||||
|
@ -46,7 +47,9 @@ public:
|
||||||
virtual Window::Controller *controller() const = 0;
|
virtual Window::Controller *controller() const = 0;
|
||||||
|
|
||||||
virtual void setLayerType(bool layerType) = 0;
|
virtual void setLayerType(bool layerType) = 0;
|
||||||
virtual void setTitle(const QString &title, const QString &additional) = 0;
|
virtual void setTitle(const QString &title) = 0;
|
||||||
|
virtual void setTitle(const TextWithEntities &title) = 0;
|
||||||
|
virtual void setAdditionalTitle(const QString &additional) = 0;
|
||||||
|
|
||||||
virtual void clearButtons() = 0;
|
virtual void clearButtons() = 0;
|
||||||
virtual QPointer<Ui::RoundButton> addButton(const QString &text, base::lambda<void()> clickCallback, const style::RoundButton &st) = 0;
|
virtual QPointer<Ui::RoundButton> addButton(const QString &text, base::lambda<void()> clickCallback, const style::RoundButton &st) = 0;
|
||||||
|
@ -75,8 +78,14 @@ public:
|
||||||
getDelegate()->closeBox();
|
getDelegate()->closeBox();
|
||||||
}
|
}
|
||||||
|
|
||||||
void setTitle(const QString &title, const QString &additional = QString()) {
|
void setTitle(const QString &title) {
|
||||||
getDelegate()->setTitle(title, additional);
|
getDelegate()->setTitle(title);
|
||||||
|
}
|
||||||
|
void setTitle(const TextWithEntities &title) {
|
||||||
|
getDelegate()->setTitle(title);
|
||||||
|
}
|
||||||
|
void setAdditionalTitle(const QString &additional) {
|
||||||
|
getDelegate()->setAdditionalTitle(additional);
|
||||||
}
|
}
|
||||||
|
|
||||||
void clearButtons() {
|
void clearButtons() {
|
||||||
|
@ -199,7 +208,9 @@ public:
|
||||||
void parentResized() override;
|
void parentResized() override;
|
||||||
|
|
||||||
void setLayerType(bool layerType) override;
|
void setLayerType(bool layerType) override;
|
||||||
void setTitle(const QString &title, const QString &additional) override;
|
void setTitle(const QString &title) override;
|
||||||
|
void setTitle(const TextWithEntities &title) override;
|
||||||
|
void setAdditionalTitle(const QString &additional) override;
|
||||||
|
|
||||||
void clearButtons() override;
|
void clearButtons() override;
|
||||||
QPointer<Ui::RoundButton> addButton(const QString &text, base::lambda<void()> clickCallback, const style::RoundButton &st) override;
|
QPointer<Ui::RoundButton> addButton(const QString &text, base::lambda<void()> clickCallback, const style::RoundButton &st) override;
|
||||||
|
@ -235,7 +246,8 @@ protected:
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void paintTitle(Painter &p, const QString &title, const QString &additional = QString());
|
void paintAdditionalTitle(Painter &p);
|
||||||
|
void updateTitlePosition();
|
||||||
|
|
||||||
bool hasTitle() const;
|
bool hasTitle() const;
|
||||||
int titleHeight() const;
|
int titleHeight() const;
|
||||||
|
@ -253,8 +265,10 @@ private:
|
||||||
int _maxContentHeight = 0;
|
int _maxContentHeight = 0;
|
||||||
object_ptr<BoxContent> _content;
|
object_ptr<BoxContent> _content;
|
||||||
|
|
||||||
QString _title;
|
object_ptr<Ui::FlatLabel> _title = { nullptr };
|
||||||
QString _additionalTitle;
|
QString _additionalTitle;
|
||||||
|
int _titleLeft = 0;
|
||||||
|
int _titleTop = 0;
|
||||||
bool _layerType = false;
|
bool _layerType = false;
|
||||||
|
|
||||||
std::vector<object_ptr<Ui::RoundButton>> _buttons;
|
std::vector<object_ptr<Ui::RoundButton>> _buttons;
|
||||||
|
|
|
@ -73,6 +73,15 @@ boxRoundShadow: Shadow {
|
||||||
}
|
}
|
||||||
|
|
||||||
boxTitleFont: font(17px semibold);
|
boxTitleFont: font(17px semibold);
|
||||||
|
boxTitle: FlatLabel(defaultFlatLabel) {
|
||||||
|
textFg: boxTitleFg;
|
||||||
|
maxHeight: 24px;
|
||||||
|
style: TextStyle(defaultTextStyle) {
|
||||||
|
font: boxTitleFont;
|
||||||
|
linkFont: boxTitleFont;
|
||||||
|
linkFontOver: font(17px semibold underline);
|
||||||
|
}
|
||||||
|
}
|
||||||
boxTitlePosition: point(23px, 20px);
|
boxTitlePosition: point(23px, 20px);
|
||||||
boxTitleHeight: 56px;
|
boxTitleHeight: 56px;
|
||||||
boxLayerTitlePosition: point(23px, 16px);
|
boxLayerTitlePosition: point(23px, 16px);
|
||||||
|
|
|
@ -204,7 +204,8 @@ void ContactsBox::updateTitle() {
|
||||||
auto addingAdmin = _channel && (_membersFilter == MembersFilter::Admins);
|
auto addingAdmin = _channel && (_membersFilter == MembersFilter::Admins);
|
||||||
auto title = lang(addingAdmin ? lng_channel_add_admin : lng_profile_add_participant);
|
auto title = lang(addingAdmin ? lng_channel_add_admin : lng_profile_add_participant);
|
||||||
auto additional = (addingAdmin || (_inner->channel() && !_inner->channel()->isMegagroup())) ? QString() : QString("%1 / %2").arg(_inner->selectedCount()).arg(Global::MegagroupSizeMax());
|
auto additional = (addingAdmin || (_inner->channel() && !_inner->channel()->isMegagroup())) ? QString() : QString("%1 / %2").arg(_inner->selectedCount()).arg(Global::MegagroupSizeMax());
|
||||||
setTitle(title, additional);
|
setTitle(title);
|
||||||
|
setAdditionalTitle(additional);
|
||||||
} else if (_inner->sharingBotGame()) {
|
} else if (_inner->sharingBotGame()) {
|
||||||
setTitle(lang(lng_bot_choose_chat));
|
setTitle(lang(lng_bot_choose_chat));
|
||||||
} else if (_inner->bot()) {
|
} else if (_inner->bot()) {
|
||||||
|
|
|
@ -165,7 +165,6 @@ void StickerSetBox::Inner::gotSet(const MTPmessages_StickerSet &set) {
|
||||||
if (d.vset.type() == mtpc_stickerSet) {
|
if (d.vset.type() == mtpc_stickerSet) {
|
||||||
auto &s = d.vset.c_stickerSet();
|
auto &s = d.vset.c_stickerSet();
|
||||||
_setTitle = stickerSetTitle(s);
|
_setTitle = stickerSetTitle(s);
|
||||||
_title = st::boxTitleFont->elided(_setTitle, width() - st::boxTitlePosition.x() - st::boxTitleHeight);
|
|
||||||
_setShortName = qs(s.vshort_name);
|
_setShortName = qs(s.vshort_name);
|
||||||
_setId = s.vid.v;
|
_setId = s.vid.v;
|
||||||
_setAccess = s.vaccess_hash.v;
|
_setAccess = s.vaccess_hash.v;
|
||||||
|
@ -428,8 +427,19 @@ bool StickerSetBox::Inner::official() const {
|
||||||
return _loaded && _setShortName.isEmpty();
|
return _loaded && _setShortName.isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
QString StickerSetBox::Inner::title() const {
|
TextWithEntities StickerSetBox::Inner::title() const {
|
||||||
return _loaded ? (_pack.isEmpty() ? lang(lng_attach_failed) : _title) : lang(lng_contacts_loading);
|
auto text = _setTitle;
|
||||||
|
auto entities = EntitiesInText();
|
||||||
|
if (_loaded) {
|
||||||
|
if (_pack.isEmpty()) {
|
||||||
|
text = lang(lng_attach_failed);
|
||||||
|
} else {
|
||||||
|
textParseEntities(text, TextParseMentions, &entities);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
text = lang(lng_contacts_loading);
|
||||||
|
}
|
||||||
|
return { text, entities };
|
||||||
}
|
}
|
||||||
|
|
||||||
QString StickerSetBox::Inner::shortName() const {
|
QString StickerSetBox::Inner::shortName() const {
|
||||||
|
|
|
@ -59,8 +59,6 @@ private:
|
||||||
class Inner;
|
class Inner;
|
||||||
QPointer<Inner> _inner;
|
QPointer<Inner> _inner;
|
||||||
|
|
||||||
QString _title;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// This class is hold in header because it requires Qt preprocessing.
|
// This class is hold in header because it requires Qt preprocessing.
|
||||||
|
@ -73,7 +71,7 @@ public:
|
||||||
bool loaded() const;
|
bool loaded() const;
|
||||||
int32 notInstalled() const;
|
int32 notInstalled() const;
|
||||||
bool official() const;
|
bool official() const;
|
||||||
QString title() const;
|
TextWithEntities title() const;
|
||||||
QString shortName() const;
|
QString shortName() const;
|
||||||
|
|
||||||
void setVisibleTopBottom(int visibleTop, int visibleBottom) override;
|
void setVisibleTopBottom(int visibleTop, int visibleBottom) override;
|
||||||
|
@ -117,7 +115,7 @@ private:
|
||||||
bool _loaded = false;
|
bool _loaded = false;
|
||||||
uint64 _setId = 0;
|
uint64 _setId = 0;
|
||||||
uint64 _setAccess = 0;
|
uint64 _setAccess = 0;
|
||||||
QString _title, _setTitle, _setShortName;
|
QString _setTitle, _setShortName;
|
||||||
int32 _setCount = 0;
|
int32 _setCount = 0;
|
||||||
int32 _setHash = 0;
|
int32 _setHash = 0;
|
||||||
MTPDstickerSet::Flags _setFlags = 0;
|
MTPDstickerSet::Flags _setFlags = 0;
|
||||||
|
|
Loading…
Reference in New Issue