Inherits Object.
Describes theme settings.
Public Fields | |
int32 | accent_color_ |
Theme accent color in ARGB format. | |
object_ptr< background > | background_ |
The background to be used in chats; may be null. | |
object_ptr< BackgroundFill > | outgoing_message_fill_ |
The fill to be used as a background for outgoing messages. | |
bool | animate_outgoing_message_fill_ |
If true, the freeform gradient fill needs to be animated on every sent message. | |
int32 | outgoing_message_accent_color_ |
Accent color of outgoing messages in ARGB format. | |
Public Instance Methods | |
themeSettings () | |
themeSettings (int32 accent_color_, object_ptr< background > &&background_, object_ptr< BackgroundFill > &&outgoing_message_fill_, bool animate_outgoing_message_fill_, int32 outgoing_message_accent_color_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -62120942 |
Identifier uniquely determining a type of the object. | |
themeSettings | ( | ) |
Describes theme settings.
themeSettings | ( | int32 | accent_color_, |
object_ptr< background > && | background_, | ||
object_ptr< BackgroundFill > && | outgoing_message_fill_, | ||
bool | animate_outgoing_message_fill_, | ||
int32 | outgoing_message_accent_color_ | ||
) |
Describes theme settings.
[in] | accent_color_ | Theme accent color in ARGB format. |
[in] | background_ | The background to be used in chats; may be null. |
[in] | outgoing_message_fill_ | The fill to be used as a background for outgoing messages. |
[in] | animate_outgoing_message_fill_ | If true, the freeform gradient fill needs to be animated on every sent message. |
[in] | outgoing_message_accent_color_ | Accent color of outgoing messages in ARGB format. |
|
finalvirtual |