mirror of https://github.com/procxx/kepka.git
Add slowmode send message button state.
This commit is contained in:
parent
4544a2e331
commit
59574532c6
|
@ -288,12 +288,19 @@ SendButton::SendButton(QWidget *parent) : RippleButton(parent, st::historyReplyC
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendButton::setType(Type type) {
|
void SendButton::setType(Type type) {
|
||||||
|
Expects(isSlowmode() || type != Type::Slowmode);
|
||||||
|
|
||||||
|
if (isSlowmode() && type != Type::Slowmode) {
|
||||||
|
_afterSlowmodeType = type;
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (_type != type) {
|
if (_type != type) {
|
||||||
_contentFrom = grabContent();
|
_contentFrom = grabContent();
|
||||||
_type = type;
|
_type = type;
|
||||||
_a_typeChanged.stop();
|
_a_typeChanged.stop();
|
||||||
_contentTo = grabContent();
|
_contentTo = grabContent();
|
||||||
_a_typeChanged.start([this] { update(); }, 0., 1., st::historyRecordVoiceDuration);
|
_a_typeChanged.start([=] { update(); }, 0., 1., st::historyRecordVoiceDuration);
|
||||||
|
setPointerCursor(_type != Type::Slowmode);
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
if (_type != Type::Record) {
|
if (_type != Type::Record) {
|
||||||
|
@ -310,6 +317,20 @@ void SendButton::setRecordActive(bool recordActive) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SendButton::setSlowmodeDelay(int seconds) {
|
||||||
|
Expects(seconds >= 0 && seconds < kSlowmodeDelayLimit);
|
||||||
|
|
||||||
|
if (_slowmodeDelay == seconds) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_slowmodeDelay = seconds;
|
||||||
|
_slowmodeDelayText = isSlowmode()
|
||||||
|
? qsl("%1:%2").arg(seconds / 60).arg(seconds % 60, 2, 10, QChar('0'))
|
||||||
|
: QString();
|
||||||
|
setType(isSlowmode() ? Type::Slowmode : _afterSlowmodeType);
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
void SendButton::finishAnimating() {
|
void SendButton::finishAnimating() {
|
||||||
_a_typeChanged.stop();
|
_a_typeChanged.stop();
|
||||||
_a_recordActive.stop();
|
_a_recordActive.stop();
|
||||||
|
@ -341,37 +362,65 @@ void SendButton::paintEvent(QPaintEvent *e) {
|
||||||
auto shownWidth = anim::interpolate((1 - kWideScale) / 2 * width(), 0, changed);
|
auto shownWidth = anim::interpolate((1 - kWideScale) / 2 * width(), 0, changed);
|
||||||
auto shownHeight = anim::interpolate((1 - kWideScale) / 2 * height(), 0, changed);
|
auto shownHeight = anim::interpolate((1 - kWideScale) / 2 * height(), 0, changed);
|
||||||
p.drawPixmap(targetRect.marginsAdded(QMargins(shownWidth, shownHeight, shownWidth, shownHeight)), _contentTo);
|
p.drawPixmap(targetRect.marginsAdded(QMargins(shownWidth, shownHeight, shownWidth, shownHeight)), _contentTo);
|
||||||
} else if (_type == Type::Record) {
|
return;
|
||||||
auto recordActive = recordActiveRatio();
|
|
||||||
auto rippleColor = anim::color(st::historyAttachEmoji.ripple.color, st::historyRecordVoiceRippleBgActive, recordActive);
|
|
||||||
paintRipple(p, (width() - st::historyAttachEmoji.rippleAreaSize) / 2, st::historyAttachEmoji.rippleAreaPosition.y(), &rippleColor);
|
|
||||||
|
|
||||||
auto fastIcon = [&] {
|
|
||||||
if (recordActive == 1.) {
|
|
||||||
return &st::historyRecordVoiceActive;
|
|
||||||
} else if (over) {
|
|
||||||
return &st::historyRecordVoiceOver;
|
|
||||||
}
|
|
||||||
return &st::historyRecordVoice;
|
|
||||||
};
|
|
||||||
fastIcon()->paintInCenter(p, rect());
|
|
||||||
if (recordActive > 0. && recordActive < 1.) {
|
|
||||||
p.setOpacity(recordActive);
|
|
||||||
st::historyRecordVoiceActive.paintInCenter(p, rect());
|
|
||||||
p.setOpacity(1.);
|
|
||||||
}
|
|
||||||
} else if (_type == Type::Save) {
|
|
||||||
auto &saveIcon = over ? st::historyEditSaveIconOver : st::historyEditSaveIcon;
|
|
||||||
saveIcon.paint(p, st::historySendIconPosition, width());
|
|
||||||
} else if (_type == Type::Cancel) {
|
|
||||||
paintRipple(p, (width() - st::historyAttachEmoji.rippleAreaSize) / 2, st::historyAttachEmoji.rippleAreaPosition.y());
|
|
||||||
|
|
||||||
auto &cancelIcon = over ? st::historyReplyCancelIconOver : st::historyReplyCancelIcon;
|
|
||||||
cancelIcon.paintInCenter(p, rect());
|
|
||||||
} else {
|
|
||||||
auto &sendIcon = over ? st::historySendIconOver : st::historySendIcon;
|
|
||||||
sendIcon.paint(p, st::historySendIconPosition, width());
|
|
||||||
}
|
}
|
||||||
|
switch (_type) {
|
||||||
|
case Type::Record: paintRecord(p, over); break;
|
||||||
|
case Type::Save: paintSave(p, over); break;
|
||||||
|
case Type::Cancel: paintCancel(p, over); break;
|
||||||
|
case Type::Send: paintSend(p, over); break;
|
||||||
|
case Type::Slowmode: paintSlowmode(p); break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void SendButton::paintRecord(Painter &p, bool over) {
|
||||||
|
auto recordActive = recordActiveRatio();
|
||||||
|
auto rippleColor = anim::color(st::historyAttachEmoji.ripple.color, st::historyRecordVoiceRippleBgActive, recordActive);
|
||||||
|
paintRipple(p, (width() - st::historyAttachEmoji.rippleAreaSize) / 2, st::historyAttachEmoji.rippleAreaPosition.y(), &rippleColor);
|
||||||
|
|
||||||
|
auto fastIcon = [&] {
|
||||||
|
if (recordActive == 1.) {
|
||||||
|
return &st::historyRecordVoiceActive;
|
||||||
|
} else if (over) {
|
||||||
|
return &st::historyRecordVoiceOver;
|
||||||
|
}
|
||||||
|
return &st::historyRecordVoice;
|
||||||
|
};
|
||||||
|
fastIcon()->paintInCenter(p, rect());
|
||||||
|
if (recordActive > 0. && recordActive < 1.) {
|
||||||
|
p.setOpacity(recordActive);
|
||||||
|
st::historyRecordVoiceActive.paintInCenter(p, rect());
|
||||||
|
p.setOpacity(1.);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void SendButton::paintSave(Painter &p, bool over) {
|
||||||
|
const auto &saveIcon = over
|
||||||
|
? st::historyEditSaveIconOver
|
||||||
|
: st::historyEditSaveIcon;
|
||||||
|
saveIcon.paint(p, st::historySendIconPosition, width());
|
||||||
|
}
|
||||||
|
|
||||||
|
void SendButton::paintCancel(Painter &p, bool over) {
|
||||||
|
paintRipple(p, (width() - st::historyAttachEmoji.rippleAreaSize) / 2, st::historyAttachEmoji.rippleAreaPosition.y());
|
||||||
|
|
||||||
|
const auto &cancelIcon = over
|
||||||
|
? st::historyReplyCancelIconOver
|
||||||
|
: st::historyReplyCancelIcon;
|
||||||
|
cancelIcon.paintInCenter(p, rect());
|
||||||
|
}
|
||||||
|
|
||||||
|
void SendButton::paintSend(Painter &p, bool over) {
|
||||||
|
const auto &sendIcon = over
|
||||||
|
? st::historySendIconOver
|
||||||
|
: st::historySendIcon;
|
||||||
|
sendIcon.paint(p, st::historySendIconPosition, width());
|
||||||
|
}
|
||||||
|
|
||||||
|
void SendButton::paintSlowmode(Painter &p) {
|
||||||
|
p.setFont(st::normalFont);
|
||||||
|
p.setPen(st::windowSubTextFg);
|
||||||
|
p.drawText(rect(), _slowmodeDelayText, style::al_center);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendButton::onStateChanged(State was, StateChangeSource source) {
|
void SendButton::onStateChanged(State was, StateChangeSource source) {
|
||||||
|
@ -395,6 +444,10 @@ void SendButton::onStateChanged(State was, StateChangeSource source) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool SendButton::isSlowmode() const {
|
||||||
|
return (_slowmodeDelay > 0);
|
||||||
|
}
|
||||||
|
|
||||||
QPixmap SendButton::grabContent() {
|
QPixmap SendButton::grabContent() {
|
||||||
auto result = QImage(kWideScale * size() * cIntRetinaFactor(), QImage::Format_ARGB32_Premultiplied);
|
auto result = QImage(kWideScale * size() * cIntRetinaFactor(), QImage::Format_ARGB32_Premultiplied);
|
||||||
result.setDevicePixelRatio(cRetinaFactor());
|
result.setDevicePixelRatio(cRetinaFactor());
|
||||||
|
|
|
@ -78,17 +78,21 @@ class SendButton : public RippleButton {
|
||||||
public:
|
public:
|
||||||
SendButton(QWidget *parent);
|
SendButton(QWidget *parent);
|
||||||
|
|
||||||
|
static constexpr auto kSlowmodeDelayLimit = 100 * 60;
|
||||||
|
|
||||||
enum class Type {
|
enum class Type {
|
||||||
Send,
|
Send,
|
||||||
Save,
|
Save,
|
||||||
Record,
|
Record,
|
||||||
Cancel,
|
Cancel,
|
||||||
|
Slowmode,
|
||||||
};
|
};
|
||||||
Type type() const {
|
Type type() const {
|
||||||
return _type;
|
return _type;
|
||||||
}
|
}
|
||||||
void setType(Type state);
|
void setType(Type state);
|
||||||
void setRecordActive(bool recordActive);
|
void setRecordActive(bool recordActive);
|
||||||
|
void setSlowmodeDelay(int seconds);
|
||||||
void finishAnimating();
|
void finishAnimating();
|
||||||
|
|
||||||
void setRecordStartCallback(Fn<void()> callback) {
|
void setRecordStartCallback(Fn<void()> callback) {
|
||||||
|
@ -119,8 +123,16 @@ protected:
|
||||||
private:
|
private:
|
||||||
void recordAnimationCallback();
|
void recordAnimationCallback();
|
||||||
QPixmap grabContent();
|
QPixmap grabContent();
|
||||||
|
bool isSlowmode() const;
|
||||||
|
|
||||||
|
void paintRecord(Painter &p, bool over);
|
||||||
|
void paintSave(Painter &p, bool over);
|
||||||
|
void paintCancel(Painter &p, bool over);
|
||||||
|
void paintSend(Painter &p, bool over);
|
||||||
|
void paintSlowmode(Painter &p);
|
||||||
|
|
||||||
Type _type = Type::Send;
|
Type _type = Type::Send;
|
||||||
|
Type _afterSlowmodeType = Type::Send;
|
||||||
bool _recordActive = false;
|
bool _recordActive = false;
|
||||||
QPixmap _contentFrom, _contentTo;
|
QPixmap _contentFrom, _contentTo;
|
||||||
|
|
||||||
|
@ -133,6 +145,9 @@ private:
|
||||||
Fn<void(QPoint globalPos)> _recordUpdateCallback;
|
Fn<void(QPoint globalPos)> _recordUpdateCallback;
|
||||||
Fn<void()> _recordAnimationCallback;
|
Fn<void()> _recordAnimationCallback;
|
||||||
|
|
||||||
|
int _slowmodeDelay = 0;
|
||||||
|
QString _slowmodeDelayText;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class UserpicButton : public RippleButton {
|
class UserpicButton : public RippleButton {
|
||||||
|
|
Loading…
Reference in New Issue