tdesktop/Telegram/SourceFiles/info/info_top_bar.h

155 lines
4.3 KiB
C
Raw Normal View History

/*
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"
2017-11-26 17:05:52 +00:00
#include "ui/wrap/fade_wrap.h"
#include "ui/effects/numbers_animation.h"
#include "info/info_wrap_widget.h"
namespace style {
struct InfoTopBar;
} // namespace style
namespace Ui {
class IconButton;
class FlatLabel;
2017-11-03 12:03:00 +00:00
class InputField;
class SearchFieldController;
2017-11-26 17:05:52 +00:00
class LabelWithNumbers;
} // namespace Ui
namespace Info {
class Section;
rpl::producer<QString> TitleValue(
const Section &section,
not_null<PeerData*> peer,
bool isStackBottom);
class TopBar : public Ui::RpWidget {
public:
2017-11-26 17:05:52 +00:00
TopBar(
QWidget *parent,
const style::InfoTopBar &st,
SelectedItems &&items);
2017-09-27 12:04:19 +00:00
auto backRequest() const {
return _backClicks.events();
}
void setTitle(rpl::producer<QString> &&title);
2017-11-26 17:05:52 +00:00
void enableBackButton();
2017-11-16 09:13:17 +00:00
void highlight();
template <typename ButtonWidget>
2017-11-03 12:03:00 +00:00
ButtonWidget *addButton(base::unique_qptr<ButtonWidget> button) {
auto result = button.get();
pushButton(std::move(button));
return result;
}
2017-11-03 12:03:00 +00:00
void createSearchView(
not_null<Ui::SearchFieldController*> controller,
rpl::producer<bool> &&shown,
bool startsFocused);
bool focusSearchField();
2017-11-03 12:03:00 +00:00
2017-11-26 17:05:52 +00:00
void setSelectedItems(SelectedItems &&items);
SelectedItems takeSelectedItems();
rpl::producer<> cancelSelectionRequests() const;
void finishAnimating() {
updateControlsVisibility(anim::type::instant);
}
protected:
int resizeGetHeight(int newWidth) override;
void paintEvent(QPaintEvent *e) override;
private:
void updateControlsGeometry(int newWidth);
2017-11-26 17:05:52 +00:00
void updateDefaultControlsGeometry(int newWidth);
void updateSelectionControlsGeometry(int newWidth);
Ui::FadeWrap<Ui::RpWidget> *pushButton(base::unique_qptr<Ui::RpWidget> button);
2017-11-03 12:03:00 +00:00
void removeButton(not_null<Ui::RpWidget*> button);
2017-11-16 09:13:17 +00:00
void startHighlightAnimation();
void updateControlsVisibility(anim::type animated);
2017-11-03 12:03:00 +00:00
2017-11-26 17:05:52 +00:00
bool selectionMode() const;
bool searchMode() const;
2017-11-26 17:05:52 +00:00
Ui::StringWithNumbers generateSelectedText() const;
[[nodiscard]] bool computeCanDelete() const;
void updateSelectionState();
void createSelectionControls();
void clearSelectionControls();
MessageIdsList collectItems() const;
2017-11-26 17:05:52 +00:00
void performForward();
void performDelete();
void setSearchField(
base::unique_qptr<Ui::InputField> field,
rpl::producer<bool> &&shown,
bool startsFocused);
void clearSearchField();
void createSearchView(
not_null<Ui::InputField*> field,
rpl::producer<bool> &&shown,
bool startsFocused);
template <typename Callback>
void registerUpdateControlCallback(QObject *guard, Callback &&callback);
template <typename Widget, typename IsVisible>
void registerToggleControlCallback(Widget *widget, IsVisible &&callback);
const style::InfoTopBar &_st;
2017-11-16 09:13:17 +00:00
Animation _a_highlight;
bool _highlight = false;
2017-11-26 17:05:52 +00:00
QPointer<Ui::FadeWrap<Ui::IconButton>> _back;
2017-11-03 12:03:00 +00:00
std::vector<base::unique_qptr<Ui::RpWidget>> _buttons;
2017-11-26 17:05:52 +00:00
QPointer<Ui::FadeWrap<Ui::FlatLabel>> _title;
bool _searchModeEnabled = false;
bool _searchModeAvailable = false;
2017-11-03 12:03:00 +00:00
base::unique_qptr<Ui::RpWidget> _searchView;
QPointer<Ui::InputField> _searchField;
2017-11-03 12:03:00 +00:00
rpl::event_stream<> _backClicks;
2017-11-26 17:05:52 +00:00
SelectedItems _selectedItems;
bool _canDelete = false;
QPointer<Ui::FadeWrap<Ui::IconButton>> _cancelSelection;
QPointer<Ui::FadeWrap<Ui::LabelWithNumbers>> _selectionText;
QPointer<Ui::FadeWrap<Ui::IconButton>> _forward;
QPointer<Ui::FadeWrap<Ui::IconButton>> _delete;
rpl::event_stream<> _cancelSelectionClicks;
using UpdateCallback = base::lambda<bool(anim::type)>;
std::map<QObject*, UpdateCallback> _updateControlCallbacks;
2017-11-26 17:05:52 +00:00
};
} // namespace Info