From fcf2b9d1a7bc30ab74a3d4cb1ed574eaaf14f4a5 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 7 Nov 2017 15:53:05 +0400 Subject: [PATCH] Add some more actions to info profile. --- Telegram/Resources/langs/lang.strings | 4 +- .../dialogs/dialogs_inner_widget.cpp | 3 +- .../info/profile/info_profile_actions.cpp | 680 ++++++++++++++++++ .../info/profile/info_profile_actions.h | 44 ++ .../profile/info_profile_inner_widget.cpp | 416 +---------- .../info/profile/info_profile_inner_widget.h | 12 +- .../info/profile/info_profile_values.cpp | 25 +- .../info/profile/info_profile_values.h | 4 + .../SourceFiles/window/top_bar_widget.cpp | 1 + .../SourceFiles/window/window_peer_menu.cpp | 45 +- .../SourceFiles/window/window_peer_menu.h | 6 +- Telegram/gyp/telegram_sources.txt | 2 + 12 files changed, 807 insertions(+), 435 deletions(-) create mode 100644 Telegram/SourceFiles/info/profile/info_profile_actions.cpp create mode 100644 Telegram/SourceFiles/info/profile/info_profile_actions.h diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 270a865ec..6c4f923b6 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -565,11 +565,11 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_profile_block_bot" = "Stop and block bot"; "lng_profile_unblock_bot" = "Unblock bot"; "lng_profile_invite_to_group" = "Add to Group"; -"lng_profile_delete_contact" = "Delete"; +"lng_profile_delete_contact" = "Delete Contact"; "lng_profile_set_group_photo" = "Set Photo"; "lng_profile_add_participant" = "Add Members"; "lng_profile_view_channel" = "View Channel"; -"lng_profile_join_channel" = "Join"; +"lng_profile_join_channel" = "Join Channel"; "lng_profile_delete_and_exit" = "Leave"; "lng_profile_kick" = "Remove"; "lng_profile_sure_kick" = "Remove {user} from the group?"; diff --git a/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp b/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp index 633e16498..2a1876b0f 100644 --- a/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp +++ b/Telegram/SourceFiles/dialogs/dialogs_inner_widget.cpp @@ -1242,8 +1242,9 @@ void DialogsInner::contextMenuEvent(QContextMenuEvent *e) { _menu = new Ui::PopupMenu(nullptr); Window::PeerMenuOptions options; - options.pinToggle = options.showInfo = options.search = true; + options.fromChatsList = options.showInfo = true; Window::FillPeerMenu( + _controller, _menuPeer, [this](const QString &text, base::lambda callback) { return _menu->addAction(text, std::move(callback)); diff --git a/Telegram/SourceFiles/info/profile/info_profile_actions.cpp b/Telegram/SourceFiles/info/profile/info_profile_actions.cpp new file mode 100644 index 000000000..553f82761 --- /dev/null +++ b/Telegram/SourceFiles/info/profile/info_profile_actions.cpp @@ -0,0 +1,680 @@ +/* +This file is part of Telegram Desktop, +the official desktop version of Telegram messaging app, see https://telegram.org + +Telegram Desktop is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +It is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +In addition, as a special exception, the copyright holders give permission +to link the code of portions of this program with the OpenSSL library. + +Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE +Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org +*/ +#include "info/profile/info_profile_actions.h" + +#include +#include "ui/wrap/vertical_layout.h" +#include "ui/wrap/padding_wrap.h" +#include "ui/wrap/slide_wrap.h" +#include "ui/widgets/shadow.h" +#include "boxes/abstract_box.h" +#include "boxes/confirm_box.h" +#include "boxes/peer_list_box.h" +#include "boxes/peer_list_controllers.h" +#include "boxes/add_contact_box.h" +#include "boxes/report_box.h" +#include "lang/lang_keys.h" +#include "info/info_controller.h" +#include "info/info_top_bar_override.h" +#include "info/profile/info_profile_icon.h" +#include "info/profile/info_profile_values.h" +#include "info/profile/info_profile_button.h" +#include "info/profile/info_profile_text.h" +#include "window/window_controller.h" +#include "mainwidget.h" +#include "auth_session.h" +#include "apiwrap.h" +#include "styles/style_info.h" +#include "styles/style_boxes.h" + +namespace Info { +namespace Profile { +namespace { + +object_ptr CreateSkipWidget( + not_null parent) { + return Ui::CreateSkipWidget(parent, st::infoProfileSkip); +} + +object_ptr> CreateSlideSkipWidget( + not_null parent) { + return Ui::CreateSlideSkipWidget(parent, st::infoProfileSkip); +} + +template +auto AddActionButton( + not_null parent, + Text &&text, + ToggleOn &&toggleOn, + Callback &&callback, + const style::InfoProfileButton &st + = st::infoSharedMediaButton) { + auto result = parent->add(object_ptr>( + parent, + object_ptr