diff --git a/Telegram/SourceFiles/data/data_shared_media.cpp b/Telegram/SourceFiles/data/data_shared_media.cpp index 038ac55f4..a824a86e2 100644 --- a/Telegram/SourceFiles/data/data_shared_media.cpp +++ b/Telegram/SourceFiles/data/data_shared_media.cpp @@ -37,7 +37,7 @@ std::optional SharedMediaOverviewType( case Type::Video: case Type::MusicFile: case Type::File: - case Type::VoiceFile: + case Type::RoundVoiceFile: case Type::Link: return type; } return std::nullopt; diff --git a/Telegram/SourceFiles/info/info_top_bar.cpp b/Telegram/SourceFiles/info/info_top_bar.cpp index 952ab34eb..2308ac6a9 100644 --- a/Telegram/SourceFiles/info/info_top_bar.cpp +++ b/Telegram/SourceFiles/info/info_top_bar.cpp @@ -488,8 +488,7 @@ Ui::StringWithNumbers TopBar::generateSelectedText() const { case Type::File: return lng_media_selected_file__generic; case Type::MusicFile: return lng_media_selected_song__generic; case Type::Link: return lng_media_selected_link__generic; - case Type::VoiceFile: return lng_media_selected_audio__generic; -// case Type::RoundFile: return lng_media_selected_round__generic; + case Type::RoundVoiceFile: return lng_media_selected_audio__generic; } Unexpected("Type in TopBar::generateSelectedText()"); }(); @@ -580,7 +579,7 @@ rpl::producer TitleValue( return lng_media_type_songs; case Section::MediaType::File: return lng_media_type_files; - case Section::MediaType::VoiceFile: + case Section::MediaType::RoundVoiceFile: return lng_media_type_audios; case Section::MediaType::Link: return lng_media_type_links; diff --git a/Telegram/SourceFiles/info/media/info_media_buttons.h b/Telegram/SourceFiles/info/media/info_media_buttons.h index 7b98f4e5e..812fae260 100644 --- a/Telegram/SourceFiles/info/media/info_media_buttons.h +++ b/Telegram/SourceFiles/info/media/info_media_buttons.h @@ -32,8 +32,7 @@ inline auto MediaTextPhrase(Type type) { case Type::File: return lng_profile_files; case Type::MusicFile: return lng_profile_songs; case Type::Link: return lng_profile_shared_links; - case Type::VoiceFile: return lng_profile_audios; -// case Type::RoundFile: return lng_profile_rounds; + case Type::RoundVoiceFile: return lng_profile_audios; } Unexpected("Type in MediaTextPhrase()"); }; diff --git a/Telegram/SourceFiles/info/media/info_media_empty_widget.cpp b/Telegram/SourceFiles/info/media/info_media_empty_widget.cpp index 8137bf6c9..9867c5b34 100644 --- a/Telegram/SourceFiles/info/media/info_media_empty_widget.cpp +++ b/Telegram/SourceFiles/info/media/info_media_empty_widget.cpp @@ -41,7 +41,7 @@ void EmptyWidget::setType(Type type) { case Type::MusicFile: return &st::infoEmptyAudio; case Type::File: return &st::infoEmptyFile; case Type::Link: return &st::infoEmptyLink; - case Type::VoiceFile: return &st::infoEmptyVoice; + case Type::RoundVoiceFile: return &st::infoEmptyVoice; } Unexpected("Bad type in EmptyWidget::setType()"); }(); @@ -67,7 +67,7 @@ void EmptyWidget::setSearchQuery(const QString &query) { return query.isEmpty() ? lng_media_link_empty : lng_media_link_empty_search; - case Type::VoiceFile: + case Type::RoundVoiceFile: return lng_media_audio_empty; } Unexpected("Bad type in EmptyWidget::setSearchQuery()"); diff --git a/Telegram/SourceFiles/info/media/info_media_inner_widget.cpp b/Telegram/SourceFiles/info/media/info_media_inner_widget.cpp index a9f55539b..daf1c1a9b 100644 --- a/Telegram/SourceFiles/info/media/info_media_inner_widget.cpp +++ b/Telegram/SourceFiles/info/media/info_media_inner_widget.cpp @@ -126,8 +126,7 @@ void InnerWidget::createTypeButtons() { if (auto user = _controller->key().peer()->asUser()) { // addCommonGroupsButton(user, st::infoIconMediaGroup); } - addMediaButton(Type::VoiceFile, st::infoIconMediaVoice); -// addMediaButton(Type::RoundFile, st::infoIconMediaRound); + addMediaButton(Type::RoundVoiceFile, st::infoIconMediaVoice); content->add(object_ptr( content, diff --git a/Telegram/SourceFiles/info/media/info_media_list_widget.cpp b/Telegram/SourceFiles/info/media/info_media_list_widget.cpp index 37c5f8e4b..edff973f2 100644 --- a/Telegram/SourceFiles/info/media/info_media_list_widget.cpp +++ b/Telegram/SourceFiles/info/media/info_media_list_widget.cpp @@ -199,7 +199,7 @@ void ListWidget::Section::setHeader(not_null item) { case Type::Photo: case Type::Video: case Type::RoundFile: - case Type::VoiceFile: + case Type::RoundVoiceFile: case Type::File: return langMonthFull(date); @@ -225,7 +225,7 @@ bool ListWidget::Section::belongsHere( case Type::Photo: case Type::Video: case Type::RoundFile: - case Type::VoiceFile: + case Type::RoundVoiceFile: case Type::File: return date.year() == myDate.year() && date.month() == myDate.month(); @@ -455,7 +455,7 @@ void ListWidget::Section::resizeToWidth(int newWidth) { } } break; - case Type::VoiceFile: + case Type::RoundVoiceFile: case Type::MusicFile: resizeOneColumn(0, newWidth); break; @@ -482,7 +482,7 @@ int ListWidget::Section::MinItemHeight(Type type, int width) { return (st::infoMediaMinGridSize + st::infoMediaSkip) / itemsInRow; } break; - case Type::VoiceFile: + case Type::RoundVoiceFile: return songSt.songPadding.top() + songSt.songThumbSize + songSt.songPadding.bottom() + st::lineWidth; case Type::File: return songSt.filePadding.top() + songSt.fileThumbSize + songSt.filePadding.bottom() + st::lineWidth; @@ -519,7 +519,7 @@ int ListWidget::Section::recountHeight() const { } } break; - case Type::VoiceFile: + case Type::RoundVoiceFile: case Type::File: case Type::MusicFile: case Type::Link: @@ -857,27 +857,27 @@ std::unique_ptr ListWidget::createLayout( using namespace Layout; switch (type) { case Type::Photo: - if (auto photo = getPhoto()) { + if (const auto photo = getPhoto()) { return std::make_unique(item, photo); } return nullptr; case Type::Video: - if (auto file = getFile()) { + if (const auto file = getFile()) { return std::make_unique