mirror of https://github.com/procxx/kepka.git
Add FAQ and support buttons to settings.
This commit is contained in:
parent
3f543347b8
commit
e2207e33ef
|
@ -4776,6 +4776,23 @@ FileLoadTo ApiWrap::fileLoadTaskOptions(const SendOptions &options) const {
|
|||
options.replyTo);
|
||||
}
|
||||
|
||||
void ApiWrap::requestSupportContact(FnMut<void(const MTPUser &)> callback) {
|
||||
_supportContactCallbacks.push_back(std::move(callback));
|
||||
if (_supportContactCallbacks.size() > 1) {
|
||||
return;
|
||||
}
|
||||
request(MTPhelp_GetSupport(
|
||||
)).done([=](const MTPhelp_Support &result) {
|
||||
result.match([&](const MTPDhelp_support &data) {
|
||||
for (auto &handler : base::take(_supportContactCallbacks)) {
|
||||
handler(data.vuser);
|
||||
}
|
||||
});
|
||||
}).fail([=](const RPCError &error) {
|
||||
_supportContactCallbacks.clear();
|
||||
}).send();
|
||||
}
|
||||
|
||||
void ApiWrap::readServerHistory(not_null<History*> history) {
|
||||
if (history->unreadCount()) {
|
||||
readServerHistoryForce(history);
|
||||
|
|
|
@ -322,6 +322,8 @@ public:
|
|||
TextWithEntities caption,
|
||||
const SendOptions &options);
|
||||
|
||||
void requestSupportContact(FnMut<void(const MTPUser&)> callback);
|
||||
|
||||
~ApiWrap();
|
||||
|
||||
private:
|
||||
|
@ -648,4 +650,6 @@ private:
|
|||
TimeMs _termsUpdateSendAt = 0;
|
||||
mtpRequestId _termsUpdateRequestId = 0;
|
||||
|
||||
std::vector<FnMut<void(const MTPUser &)>> _supportContactCallbacks;
|
||||
|
||||
};
|
||||
|
|
|
@ -15,3 +15,8 @@ settingsButtonRightPosition: point(28px, 10px);
|
|||
settingsButtonRight: FlatLabel(defaultFlatLabel) {
|
||||
textFg: windowActiveTextFg;
|
||||
}
|
||||
settingsScalePadding: margins(79px, 10px, 28px, 8px);
|
||||
settingsSlider: SettingsSlider(defaultSettingsSlider) {
|
||||
labelFg: windowSubTextFg;
|
||||
labelFgActive: windowActiveTextFg;
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include "boxes/abstract_box.h"
|
||||
#include "boxes/language_box.h"
|
||||
#include "boxes/confirm_box.h"
|
||||
#include "boxes/about_box.h"
|
||||
#include "ui/wrap/vertical_layout.h"
|
||||
#include "ui/wrap/padding_wrap.h"
|
||||
#include "ui/widgets/labels.h"
|
||||
|
@ -19,6 +20,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include "info/profile/info_profile_cover.h"
|
||||
#include "lang/lang_keys.h"
|
||||
#include "storage/localstorage.h"
|
||||
#include "auth_session.h"
|
||||
#include "apiwrap.h"
|
||||
#include "styles/style_settings.h"
|
||||
|
||||
namespace Settings {
|
||||
|
@ -68,15 +71,17 @@ void SetupInterfaceScale(not_null<Ui::VerticalLayout*> container) {
|
|||
container,
|
||||
rpl::event_stream<bool>());
|
||||
|
||||
const auto switched = (cConfigScale() == dbisAuto)
|
||||
|| (cConfigScale() == cScreenScale());
|
||||
const auto button = container->add(object_ptr<Button>(
|
||||
container,
|
||||
Lang::Viewer(lng_settings_default_scale),
|
||||
st::settingsSectionButton)
|
||||
)->toggleOn(toggled->events_starting_with(cConfigScale() == dbisAuto));
|
||||
)->toggleOn(toggled->events_starting_with_copy(switched));
|
||||
|
||||
const auto slider = container->add(
|
||||
object_ptr<Ui::SettingsSlider>(container),
|
||||
st::settingsSectionButton.padding);
|
||||
object_ptr<Ui::SettingsSlider>(container, st::settingsSlider),
|
||||
st::settingsScalePadding);
|
||||
|
||||
const auto inSetScale = Ui::AttachAsChild(container, false);
|
||||
const auto setScale = std::make_shared<Fn<void(DBIScale)>>();
|
||||
|
@ -97,7 +102,7 @@ void SetupInterfaceScale(not_null<Ui::VerticalLayout*> container) {
|
|||
|
||||
if (cEvalScale(scale) != cEvalScale(cRealScale())) {
|
||||
const auto confirmed = crl::guard(button, [=] {
|
||||
cSetConfigScale(scale);
|
||||
cSetConfigScale(applying);
|
||||
Local::writeSettings();
|
||||
App::restart();
|
||||
});
|
||||
|
@ -167,6 +172,37 @@ void SetupInterfaceScale(not_null<Ui::VerticalLayout*> container) {
|
|||
AddSkip(container);
|
||||
}
|
||||
|
||||
void SetupHelp(not_null<Ui::VerticalLayout*> container) {
|
||||
AddDivider(container);
|
||||
AddSkip(container);
|
||||
|
||||
container->add(object_ptr<Button>(
|
||||
container,
|
||||
Lang::Viewer(lng_settings_faq),
|
||||
st::settingsSectionButton)
|
||||
)->addClickHandler([] {
|
||||
QDesktopServices::openUrl(telegramFaqLink());
|
||||
});
|
||||
|
||||
if (AuthSession::Exists()) {
|
||||
const auto button = container->add(object_ptr<Button>(
|
||||
container,
|
||||
Lang::Viewer(lng_settings_ask_question),
|
||||
st::settingsSectionButton));
|
||||
button->addClickHandler([=] {
|
||||
const auto ready = crl::guard(button, [](const MTPUser &data) {
|
||||
const auto users = MTP_vector<MTPUser>(1, data);
|
||||
if (const auto user = App::feedUsers(users)) {
|
||||
Ui::showPeerHistory(user, ShowAtUnreadMsgId);
|
||||
}
|
||||
});
|
||||
Auth().api().requestSupportContact(ready);
|
||||
});
|
||||
}
|
||||
|
||||
AddSkip(container);
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
Main::Main(
|
||||
|
@ -189,6 +225,7 @@ void Main::setupContent(not_null<Window::Controller*> controller) {
|
|||
|
||||
setupSections(content);
|
||||
SetupInterfaceScale(content);
|
||||
SetupHelp(content);
|
||||
|
||||
Ui::ResizeFitChild(this, content);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue