init
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
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
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
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
80
Telegram/SourceFiles/ui/chat/attach/attach_send_files_way.h
Normal file
80
Telegram/SourceFiles/ui/chat/attach/attach_send_files_way.h
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
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
|
||||
|
||||
#include "base/flags.h"
|
||||
|
||||
namespace Ui {
|
||||
|
||||
enum class AttachActionType {
|
||||
ToggleSpoiler,
|
||||
EditCover,
|
||||
ClearCover,
|
||||
};
|
||||
|
||||
enum class AttachButtonType {
|
||||
Edit,
|
||||
Delete,
|
||||
Modify,
|
||||
None,
|
||||
};
|
||||
|
||||
class SendFilesWay final {
|
||||
public:
|
||||
[[nodiscard]] bool groupFiles() const {
|
||||
return (_flags & Flag::GroupFiles) != 0;
|
||||
}
|
||||
[[nodiscard]] bool sendImagesAsPhotos() const {
|
||||
return (_flags & Flag::SendImagesAsPhotos) != 0;
|
||||
}
|
||||
void setGroupFiles(bool value);
|
||||
void setSendImagesAsPhotos(bool value);
|
||||
void setHasCompressedStickers(bool value);
|
||||
|
||||
[[nodiscard]] inline bool operator<(const SendFilesWay &other) const {
|
||||
return _flags < other._flags;
|
||||
}
|
||||
[[nodiscard]] inline bool operator>(const SendFilesWay &other) const {
|
||||
return other < *this;
|
||||
}
|
||||
[[nodiscard]] inline bool operator<=(const SendFilesWay &other) const {
|
||||
return !(other < *this);
|
||||
}
|
||||
[[nodiscard]] inline bool operator>=(const SendFilesWay &other) const {
|
||||
return !(*this < other);
|
||||
}
|
||||
[[nodiscard]] inline bool operator==(const SendFilesWay &other) const {
|
||||
return _flags == other._flags;
|
||||
}
|
||||
[[nodiscard]] inline bool operator!=(const SendFilesWay &other) const {
|
||||
return !(*this == other);
|
||||
}
|
||||
|
||||
[[nodiscard]] int32 serialize() const;
|
||||
[[nodiscard]] static std::optional<SendFilesWay> FromSerialized(
|
||||
int32 value);
|
||||
|
||||
private:
|
||||
[[nodiscard]] bool hasCompressedStickers() const {
|
||||
return (_flags & Flag::HasCompressedStickers) != 0;
|
||||
}
|
||||
|
||||
enum class Flag : uchar {
|
||||
GroupFiles = (1 << 0),
|
||||
SendImagesAsPhotos = (1 << 1),
|
||||
HasCompressedStickers = (1 << 2),
|
||||
|
||||
Default = GroupFiles | SendImagesAsPhotos,
|
||||
};
|
||||
friend inline constexpr bool is_flag_type(Flag) { return true; };
|
||||
|
||||
base::flags<Flag> _flags = Flag::Default;
|
||||
|
||||
};
|
||||
|
||||
} // namespace Ui
|
||||
Reference in New Issue
Block a user