2017-09-25 09:02:55 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-09-25 09:02:55 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-09-25 09:02:55 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ui/widgets/buttons.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ToggleView;
|
|
|
|
} // namespace Ui
|
|
|
|
|
|
|
|
namespace Info {
|
|
|
|
namespace Profile {
|
|
|
|
|
|
|
|
class Button : public Ui::RippleButton {
|
|
|
|
public:
|
|
|
|
Button(
|
|
|
|
QWidget *parent,
|
|
|
|
rpl::producer<QString> &&text);
|
|
|
|
Button(
|
|
|
|
QWidget *parent,
|
|
|
|
rpl::producer<QString> &&text,
|
|
|
|
const style::InfoProfileButton &st);
|
|
|
|
|
|
|
|
Button *toggleOn(rpl::producer<bool> &&toggled);
|
|
|
|
rpl::producer<bool> toggledValue() const;
|
2018-09-07 09:40:25 +00:00
|
|
|
bool toggled() const;
|
2017-09-25 09:02:55 +00:00
|
|
|
|
2018-09-21 16:28:46 +00:00
|
|
|
void setColorOverride(std::optional<QColor> textColorOverride);
|
2018-04-13 10:54:17 +00:00
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
protected:
|
|
|
|
int resizeGetHeight(int newWidth) override;
|
|
|
|
void onStateChanged(
|
|
|
|
State was,
|
|
|
|
StateChangeSource source) override;
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setText(QString &&text);
|
|
|
|
QRect toggleRect() const;
|
|
|
|
void updateVisibleText(int newWidth);
|
|
|
|
|
|
|
|
const style::InfoProfileButton &_st;
|
|
|
|
QString _original;
|
|
|
|
QString _text;
|
|
|
|
int _originalWidth = 0;
|
|
|
|
int _textWidth = 0;
|
|
|
|
std::unique_ptr<Ui::ToggleView> _toggle;
|
2018-09-21 16:28:46 +00:00
|
|
|
std::optional<QColor> _textColorOverride;
|
2017-09-25 09:02:55 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Profile
|
|
|
|
} // namespace Info
|