From 4180ed09a592b71f90c8de66b622205e5bec66f1 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 26 Sep 2017 22:42:58 +0300 Subject: [PATCH] Add user actions to info profile. --- Telegram/Resources/langs/lang.strings | 11 ++- Telegram/SourceFiles/info/info.style | 9 +- .../profile/info_profile_inner_widget.cpp | 95 +++++++++++++++++-- .../info/profile/info_profile_members.cpp | 4 +- 4 files changed, 103 insertions(+), 16 deletions(-) diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index f4ad6b2ff..064a89de0 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -560,8 +560,6 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_profile_bio" = "Bio:"; "lng_profile_add_contact" = "Add Contact"; "lng_profile_edit_contact" = "Edit"; -"lng_profile_clear_history" = "Clear history"; -"lng_profile_delete_conversation" = "Delete conversation"; "lng_profile_clear_and_exit" = "Delete and exit"; "lng_profile_leave_channel" = "Leave channel"; "lng_profile_delete_channel" = "Delete channel"; @@ -569,11 +567,8 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_profile_delete_group" = "Delete group"; "lng_profile_report" = "Report"; "lng_profile_search_messages" = "Search for messages"; -"lng_profile_block_user" = "Block user"; -"lng_profile_unblock_user" = "Unblock user"; "lng_profile_block_bot" = "Stop and block bot"; "lng_profile_unblock_bot" = "Unblock bot"; -"lng_profile_share_contact" = "Share Contact"; "lng_profile_invite_to_group" = "Add to Group"; "lng_profile_delete_contact" = "Delete"; "lng_profile_set_group_photo" = "Set Photo"; @@ -635,6 +630,12 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_media_type_links" = "Shared links"; "lng_media_type_rounds" = "Video messages"; "lng_profile_common_groups_section" = "Groups in common"; +"lng_profile_share_contact" = "Share Contact"; +"lng_info_edit_contact" = "Edit contact"; +"lng_profile_clear_history" = "Clear history"; +"lng_profile_delete_conversation" = "Delete conversation"; +"lng_profile_block_user" = "Block user"; +"lng_profile_unblock_user" = "Unblock user"; "lng_report_title" = "Report channel"; "lng_report_group_title" = "Report group"; diff --git a/Telegram/SourceFiles/info/info.style b/Telegram/SourceFiles/info/info.style index e9af4fdad..68e8f5bbe 100644 --- a/Telegram/SourceFiles/info/info.style +++ b/Telegram/SourceFiles/info/info.style @@ -149,7 +149,6 @@ infoProfileSeparatorPadding: margins( infoProfileSkip); infoIconFg: menuIconFg; -infoIconPosition: point(20px, 12px); infoIconInformation: icon {{ "info_information", infoIconFg }}; infoIconMembers: icon {{ "info_members", infoIconFg }}; infoIconNotifications: icon {{ "info_notifications", infoIconFg }}; @@ -158,7 +157,7 @@ infoIconMediaPhoto: icon {{ "info_media_photo", infoIconFg }}; infoInformationIconPosition: point(25px, 12px); infoNotificationsIconPosition: point(20px, 5px); infoSharedMediaIconPosition: point(20px, 24px); -infoMembersIconPosition: point(20px, 15px); +infoIconPosition: point(20px, 15px); infoLabeledOneLine: FlatLabel(defaultFlatLabel) { width: 0px; // No need to set minWidth in one-line text. @@ -223,6 +222,12 @@ infoSharedMediaCoverHeight: 62px; infoSharedMediaButton: infoProfileButton; infoSharedMediaBottomSkip: 12px; +infoBlockButton: InfoProfileButton(infoProfileButton) { + textFg: attentionButtonFg; + textFgOver: attentionButtonFgOver; +} +infoBlockButtonSkip: 8px; + infoMembersHeader: 56px; infoMembersList: PeerList(defaultPeerList) { item: PeerListItem(defaultPeerListItem) { diff --git a/Telegram/SourceFiles/info/profile/info_profile_inner_widget.cpp b/Telegram/SourceFiles/info/profile/info_profile_inner_widget.cpp index aa24725e0..f02749dcc 100644 --- a/Telegram/SourceFiles/info/profile/info_profile_inner_widget.cpp +++ b/Telegram/SourceFiles/info/profile/info_profile_inner_widget.cpp @@ -21,6 +21,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #include "info/profile/info_profile_inner_widget.h" #include +#include #include "info/profile/info_profile_button.h" #include "info/profile/info_profile_widget.h" #include "info/profile/info_profile_text.h" @@ -30,11 +31,15 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #include "info/profile/info_profile_members.h" #include "boxes/abstract_box.h" #include "boxes/add_contact_box.h" +#include "boxes/confirm_box.h" #include "mainwidget.h" +#include "auth_session.h" +#include "apiwrap.h" #include "window/window_controller.h" #include "storage/storage_shared_media.h" #include "lang/lang_keys.h" #include "styles/style_info.h" +#include "styles/style_boxes.h" #include "ui/widgets/buttons.h" #include "ui/widgets/checkbox.h" #include "ui/widgets/scroll_area.h" @@ -368,18 +373,94 @@ object_ptr InnerWidget::setupUserActions( RpWidget *parent, not_null user) const { auto result = object_ptr(parent); - auto tracker = MultiLineTracker(); - auto addButton = [&](rpl::producer &&text) { - auto button = result->add(object_ptr>( + result->add(createSkipWidget(result)); + auto addButton = [&]( + rpl::producer &&text, + rpl::producer &&toggleOn, + auto &&callback, + const style::InfoProfileButton &st + = st::infoSharedMediaButton) { + return result->add(object_ptr>( result, object_ptr