2017-09-13 17:01:23 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <rpl/event_stream.h>
|
|
|
|
#include "window/section_widget.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SettingsSlider;
|
|
|
|
} // namespace Ui
|
|
|
|
|
|
|
|
namespace Info {
|
|
|
|
|
|
|
|
class Memento;
|
2017-09-15 17:34:41 +00:00
|
|
|
class MoveMemento;
|
2017-09-30 18:26:45 +00:00
|
|
|
class WrapWidget;
|
|
|
|
enum class Wrap;
|
2017-09-13 17:01:23 +00:00
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
class SectionWidget final : public Window::SectionWidget {
|
2017-09-13 17:01:23 +00:00
|
|
|
public:
|
2017-09-30 18:26:45 +00:00
|
|
|
SectionWidget(
|
2017-09-13 17:01:23 +00:00
|
|
|
QWidget *parent,
|
|
|
|
not_null<Window::Controller*> controller,
|
2017-09-30 18:26:45 +00:00
|
|
|
Wrap wrap,
|
2017-09-13 17:01:23 +00:00
|
|
|
not_null<Memento*> memento);
|
2017-09-30 18:26:45 +00:00
|
|
|
SectionWidget(
|
2017-09-15 17:34:41 +00:00
|
|
|
QWidget *parent,
|
|
|
|
not_null<Window::Controller*> controller,
|
2017-09-30 18:26:45 +00:00
|
|
|
Wrap wrap,
|
2017-09-15 17:34:41 +00:00
|
|
|
not_null<MoveMemento*> memento);
|
2017-09-13 17:01:23 +00:00
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
PeerData *peerForDialogs() const override;
|
2017-09-13 17:01:23 +00:00
|
|
|
|
2017-09-20 18:40:23 +00:00
|
|
|
bool hasTopBarShadow() const override;
|
2017-09-13 17:01:23 +00:00
|
|
|
QPixmap grabForShowAnimation(
|
|
|
|
const Window::SectionSlideParams ¶ms) override;
|
|
|
|
|
|
|
|
bool showInternal(
|
2017-10-03 13:05:58 +00:00
|
|
|
not_null<Window::SectionMemento*> memento,
|
|
|
|
const Window::SectionShow ¶ms) override;
|
2017-09-13 17:01:23 +00:00
|
|
|
std::unique_ptr<Window::SectionMemento> createMemento() override;
|
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
object_ptr<Window::LayerWidget> moveContentToLayer(
|
|
|
|
QRect bodyGeometry) override;
|
2017-09-13 17:01:23 +00:00
|
|
|
|
|
|
|
// Float player interface.
|
2017-09-16 16:53:41 +00:00
|
|
|
bool wheelEventFromFloatPlayer(QEvent *e) override;
|
|
|
|
QRect rectForFloatPlayer() const override;
|
2017-09-13 17:01:23 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void doSetInnerFocus() override;
|
2017-09-30 18:26:45 +00:00
|
|
|
void showFinishedHook() override;
|
2017-09-13 17:01:23 +00:00
|
|
|
|
|
|
|
private:
|
2017-09-30 18:26:45 +00:00
|
|
|
void init();
|
2017-09-13 17:01:23 +00:00
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
object_ptr<WrapWidget> _content;
|
2017-09-13 17:01:23 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Info
|