mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-01-26 01:03:49 +00:00
d1687ab963
Also move layerwidget to window/layer_widget. Also replace ui/effects/widget_fade_wrap with ui/wrap/fade_wrap.
78 lines
2.0 KiB
C++
78 lines
2.0 KiB
C++
/*
|
|
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 "ui/rp_widget.h"
|
|
|
|
namespace style {
|
|
struct InfoTopBar;
|
|
} // namespace style
|
|
|
|
namespace Ui {
|
|
class IconButton;
|
|
class FlatLabel;
|
|
} // namespace Ui
|
|
|
|
namespace Info {
|
|
|
|
class Section;
|
|
|
|
rpl::producer<QString> TitleValue(
|
|
const Section §ion,
|
|
PeerId peerId);
|
|
|
|
class TopBar : public Ui::RpWidget {
|
|
public:
|
|
TopBar(QWidget *parent, const style::InfoTopBar &st);
|
|
|
|
auto backRequest() const {
|
|
return _backClicks.events();
|
|
}
|
|
|
|
void setTitle(rpl::producer<QString> &&title);
|
|
void enableBackButton(bool enable);
|
|
|
|
template <typename ButtonWidget>
|
|
ButtonWidget *addButton(object_ptr<ButtonWidget> button) {
|
|
auto result = button.data();
|
|
pushButton(std::move(button));
|
|
return result;
|
|
}
|
|
|
|
protected:
|
|
int resizeGetHeight(int newWidth) override;
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
private:
|
|
void updateControlsGeometry(int newWidth);
|
|
void pushButton(object_ptr<Ui::RpWidget> button);
|
|
|
|
const style::InfoTopBar &_st;
|
|
object_ptr<Ui::IconButton> _back = { nullptr };
|
|
std::vector<object_ptr<Ui::RpWidget>> _buttons;
|
|
object_ptr<Ui::FlatLabel> _title = { nullptr };
|
|
|
|
rpl::event_stream<> _backClicks;
|
|
|
|
};
|
|
|
|
} // namespace Info
|