Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#include "overview/overview_checkbox.h"
|
|
|
|
#include "styles/style_overview.h"
|
|
#include "styles/style_widgets.h"
|
|
|
|
namespace Overview::Layout {
|
|
|
|
void Checkbox::paint(
|
|
QPainter &p,
|
|
QPoint position,
|
|
int outerWidth,
|
|
bool selected,
|
|
bool selecting) {
|
|
_check.setDisplayInactive(selecting);
|
|
_check.setChecked(selected);
|
|
const auto pression = _pression.value((_active && _pressed) ? 1. : 0.);
|
|
const auto scale = 1. - (1. - st::overviewCheckPressedSize) * pression;
|
|
_check.paint(p, position.x(), position.y(), outerWidth, scale);
|
|
}
|
|
|
|
void Checkbox::setActive(bool active) {
|
|
_active = active;
|
|
if (_pressed) {
|
|
startAnimation();
|
|
}
|
|
}
|
|
|
|
void Checkbox::setPressed(bool pressed) {
|
|
_pressed = pressed;
|
|
if (_active) {
|
|
startAnimation();
|
|
}
|
|
}
|
|
|
|
void Checkbox::setChecked(bool checked, anim::type animated) {
|
|
_check.setChecked(checked, animated);
|
|
}
|
|
|
|
void Checkbox::startAnimation() {
|
|
const auto showPressed = (_pressed && _active);
|
|
_pression.start(
|
|
_updateCallback,
|
|
showPressed ? 0. : 1.,
|
|
showPressed ? 1. : 0.,
|
|
st::overviewCheck.duration);
|
|
}
|
|
|
|
void Checkbox::finishAnimating() {
|
|
_pression.stop();
|
|
_check.finishAnimating();
|
|
}
|
|
|
|
} // namespace Overview::Layout
|