init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,103 @@
|
||||
/*
|
||||
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
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include "base/required.h"
|
||||
#include "data/business/data_business_common.h"
|
||||
#include "settings/settings_common_session.h"
|
||||
|
||||
class FilterChatsPreview;
|
||||
|
||||
namespace Ui {
|
||||
class VerticalLayout;
|
||||
} // namespace Ui
|
||||
|
||||
namespace Window {
|
||||
class SessionController;
|
||||
} // namespace Window
|
||||
|
||||
namespace Settings {
|
||||
|
||||
template <typename SectionType>
|
||||
class BusinessSection : public Section<SectionType> {
|
||||
public:
|
||||
BusinessSection(
|
||||
QWidget *parent,
|
||||
not_null<Window::SessionController*> controller)
|
||||
: Section<SectionType>(parent)
|
||||
, _controller(controller) {
|
||||
}
|
||||
|
||||
[[nodiscard]] not_null<Window::SessionController*> controller() const {
|
||||
return _controller;
|
||||
}
|
||||
[[nodiscard]] rpl::producer<> showFinishes() const {
|
||||
return _showFinished.events();
|
||||
}
|
||||
|
||||
private:
|
||||
void showFinished() override {
|
||||
_showFinished.fire({});
|
||||
}
|
||||
|
||||
const not_null<Window::SessionController*> _controller;
|
||||
rpl::event_stream<> _showFinished;
|
||||
|
||||
};
|
||||
|
||||
struct BusinessChatsDescriptor {
|
||||
Data::BusinessChats current;
|
||||
Fn<void(const Data::BusinessChats&)> save;
|
||||
bool usersOnly = false;
|
||||
bool include = false;
|
||||
};
|
||||
void EditBusinessChats(
|
||||
not_null<Window::SessionController*> window,
|
||||
BusinessChatsDescriptor &&descriptor);
|
||||
|
||||
not_null<FilterChatsPreview*> SetupBusinessChatsPreview(
|
||||
not_null<Ui::VerticalLayout*> container,
|
||||
not_null<rpl::variable<Data::BusinessChats>*> data);
|
||||
|
||||
struct BusinessRecipientsSelectorDescriptor {
|
||||
not_null<Window::SessionController*> controller;
|
||||
rpl::producer<QString> title;
|
||||
not_null<rpl::variable<Data::BusinessRecipients>*> data;
|
||||
base::required<Data::BusinessRecipientsType> type;
|
||||
};
|
||||
void AddBusinessRecipientsSelector(
|
||||
not_null<Ui::VerticalLayout*> container,
|
||||
BusinessRecipientsSelectorDescriptor &&descriptor);
|
||||
|
||||
[[nodiscard]] int ShortcutsCount(not_null<::Main::Session*> session);
|
||||
[[nodiscard]] rpl::producer<int> ShortcutsCountValue(
|
||||
not_null<::Main::Session*> session);
|
||||
[[nodiscard]] int ShortcutMessagesCount(
|
||||
not_null<::Main::Session*> session,
|
||||
const QString &name);
|
||||
[[nodiscard]] rpl::producer<int> ShortcutMessagesCountValue(
|
||||
not_null<::Main::Session*> session,
|
||||
const QString &name);
|
||||
[[nodiscard]] bool ShortcutExists(
|
||||
not_null<::Main::Session*> session,
|
||||
const QString &name);
|
||||
[[nodiscard]] rpl::producer<bool> ShortcutExistsValue(
|
||||
not_null<::Main::Session*> session,
|
||||
const QString &name);
|
||||
[[nodiscard]] int ShortcutsLimit(not_null<::Main::Session*> session);
|
||||
[[nodiscard]] rpl::producer<int> ShortcutsLimitValue(
|
||||
not_null<::Main::Session*> session);
|
||||
[[nodiscard]] int ShortcutMessagesLimit(not_null<::Main::Session*> session);
|
||||
[[nodiscard]] rpl::producer<int> ShortcutMessagesLimitValue(
|
||||
not_null<::Main::Session*> session);
|
||||
|
||||
[[nodiscard]] BusinessShortcutId LookupShortcutId(
|
||||
not_null<::Main::Session*> session,
|
||||
const QString &name);
|
||||
|
||||
} // namespace Settings
|
||||
Reference in New Issue
Block a user