138 lines
3.5 KiB
C++
138 lines
3.5 KiB
C++
/*
|
|
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
|
|
*/
|
|
#include "info/profile/info_profile_widget.h"
|
|
|
|
#include "info/profile/info_profile_inner_widget.h"
|
|
#include "info/profile/info_profile_members.h"
|
|
#include "ui/widgets/scroll_area.h"
|
|
#include "ui/ui_utility.h"
|
|
#include "data/data_peer.h"
|
|
#include "data/data_channel.h"
|
|
#include "data/data_user.h"
|
|
#include "lang/lang_keys.h"
|
|
#include "info/info_controller.h"
|
|
|
|
namespace Info::Profile {
|
|
|
|
Memento::Memento(not_null<Controller*> controller)
|
|
: Memento(
|
|
controller->peer(),
|
|
controller->migratedPeerId()) {
|
|
}
|
|
|
|
Memento::Memento(not_null<PeerData*> peer, PeerId migratedPeerId)
|
|
: ContentMemento(peer, migratedPeerId) {
|
|
}
|
|
|
|
Memento::Memento(not_null<Data::ForumTopic*> topic)
|
|
: ContentMemento(topic) {
|
|
}
|
|
|
|
Section Memento::section() const {
|
|
return Section(Section::Type::Profile);
|
|
}
|
|
|
|
object_ptr<ContentWidget> Memento::createWidget(
|
|
QWidget *parent,
|
|
not_null<Controller*> controller,
|
|
const QRect &geometry) {
|
|
auto result = object_ptr<Widget>(parent, controller);
|
|
result->setInternalState(geometry, this);
|
|
return result;
|
|
}
|
|
|
|
void Memento::setMembersState(std::unique_ptr<MembersState> state) {
|
|
_membersState = std::move(state);
|
|
}
|
|
|
|
std::unique_ptr<MembersState> Memento::membersState() {
|
|
return std::move(_membersState);
|
|
}
|
|
|
|
Memento::~Memento() = default;
|
|
|
|
Widget::Widget(QWidget *parent, not_null<Controller*> controller)
|
|
: ContentWidget(parent, controller) {
|
|
controller->setSearchEnabledByContent(false);
|
|
|
|
_inner = setInnerWidget(object_ptr<InnerWidget>(
|
|
this,
|
|
controller));
|
|
_inner->move(0, 0);
|
|
_inner->scrollToRequests(
|
|
) | rpl::start_with_next([this](Ui::ScrollToRequest request) {
|
|
if (request.ymin < 0) {
|
|
scrollTopRestore(
|
|
qMin(scrollTopSave(), request.ymax));
|
|
} else {
|
|
scrollTo(request);
|
|
}
|
|
}, lifetime());
|
|
}
|
|
|
|
void Widget::setInnerFocus() {
|
|
_inner->setFocus();
|
|
}
|
|
|
|
rpl::producer<QString> Widget::title() {
|
|
if (const auto topic = controller()->key().topic()) {
|
|
return rpl::single(u"Topic Info"_q); // #TODO forum lang
|
|
}
|
|
const auto peer = controller()->key().peer();
|
|
if (const auto user = peer->asUser()) {
|
|
return (user->isBot() && !user->isSupport())
|
|
? tr::lng_info_bot_title()
|
|
: tr::lng_info_user_title();
|
|
} else if (const auto channel = peer->asChannel()) {
|
|
return channel->isMegagroup()
|
|
? tr::lng_info_group_title()
|
|
: tr::lng_info_channel_title();
|
|
} else if (peer->isChat()) {
|
|
return tr::lng_info_group_title();
|
|
}
|
|
Unexpected("Bad peer type in Info::TitleValue()");
|
|
|
|
}
|
|
|
|
bool Widget::showInternal(not_null<ContentMemento*> memento) {
|
|
if (!controller()->validateMementoPeer(memento)) {
|
|
return false;
|
|
}
|
|
if (auto profileMemento = dynamic_cast<Memento*>(memento.get())) {
|
|
restoreState(profileMemento);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void Widget::setInternalState(
|
|
const QRect &geometry,
|
|
not_null<Memento*> memento) {
|
|
setGeometry(geometry);
|
|
Ui::SendPendingMoveResizeEvents(this);
|
|
restoreState(memento);
|
|
}
|
|
|
|
std::shared_ptr<ContentMemento> Widget::doCreateMemento() {
|
|
auto result = std::make_shared<Memento>(controller());
|
|
saveState(result.get());
|
|
return result;
|
|
}
|
|
|
|
void Widget::saveState(not_null<Memento*> memento) {
|
|
memento->setScrollTop(scrollTopSave());
|
|
_inner->saveState(memento);
|
|
}
|
|
|
|
void Widget::restoreState(not_null<Memento*> memento) {
|
|
_inner->restoreState(memento);
|
|
scrollTopRestore(memento->scrollTop());
|
|
}
|
|
|
|
} // namespace Info::Profile
|