tdesktop/Telegram/SourceFiles/ui/effects/round_checkbox.h

91 lines
2.0 KiB
C
Raw Normal View History

/*
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
*/
#pragma once
2019-04-02 09:13:30 +00:00
#include "ui/effects/animations.h"
#include "styles/style_widgets.h"
2022-09-16 20:23:27 +00:00
class Painter;
2022-11-01 11:17:13 +00:00
enum class ImageRoundRadius;
2022-09-16 20:23:27 +00:00
namespace Ui {
class RoundCheckbox {
public:
RoundCheckbox(const style::RoundCheckbox &st, Fn<void()> updateCallback);
2022-09-16 20:23:27 +00:00
void paint(QPainter &p, int x, int y, int outerWidth, float64 masterScale = 1.) const;
void setDisplayInactive(bool displayInactive);
bool checked() const {
return _checked;
}
2020-03-13 13:05:21 +00:00
void setChecked(
bool newChecked,
anim::type animated = anim::type::normal);
void invalidateCache();
private:
void prepareInactiveCache();
const style::RoundCheckbox &_st;
Fn<void()> _updateCallback;
bool _checked = false;
2019-04-02 09:13:30 +00:00
Ui::Animations::Simple _checkedProgress;
bool _displayInactive = false;
QPixmap _inactiveCacheBg, _inactiveCacheFg;
};
class RoundImageCheckbox {
public:
using PaintRoundImage = Fn<void(Painter &p, int x, int y, int outerWidth, int size)>;
2022-11-01 11:17:13 +00:00
RoundImageCheckbox(
const style::RoundImageCheckbox &st,
Fn<void()> updateCallback,
PaintRoundImage &&paintRoundImage,
Fn<ImageRoundRadius()> roundingRadius = nullptr);
void paint(Painter &p, int x, int y, int outerWidth) const;
float64 checkedAnimationRatio() const;
void setColorOverride(std::optional<QBrush> fg);
bool checked() const {
return _check.checked();
}
2020-03-13 13:05:21 +00:00
void setChecked(
bool newChecked,
anim::type animated = anim::type::normal);
void invalidateCache() {
_check.invalidateCache();
}
private:
void prepareWideCache();
const style::RoundImageCheckbox &_st;
Fn<void()> _updateCallback;
PaintRoundImage _paintRoundImage;
2022-11-01 11:17:13 +00:00
Fn<ImageRoundRadius()> _roundingRadius;
QPixmap _wideCache;
2019-04-02 09:13:30 +00:00
Ui::Animations::Simple _selection;
RoundCheckbox _check;
std::optional<QBrush> _fgOverride;
};
} // namespace Ui