/* 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 "settings/settings_block_widget.h" namespace Ui { class FlatLabel; } // namespace Ui namespace Settings { class LabeledLink : public TWidget { public: enum class Type { Primary, Secondary, }; LabeledLink(QWidget *parent, const QString &label, const QString &text, Type type, const char *slot); void setLink(const QString &text); Ui::LinkButton *link() const; int naturalWidth() const override; protected: int resizeGetHeight(int newWidth) override; private: object_ptr _label; object_ptr _link; }; #ifndef OS_WIN_STORE class DownloadPathState : public TWidget, private base::Subscriber { Q_OBJECT public: DownloadPathState(QWidget *parent); protected: int resizeGetHeight(int newWidth) override; void paintEvent(QPaintEvent *e) override; private slots: void onDownloadPath(); void onClear(); void onTempDirCleared(int task); void onTempDirClearFailed(int task); private: QString downloadPathText() const; void updateControls(); enum class State { Empty, Exists, Clearing, Cleared, ClearFailed, }; State _state = State::Empty; object_ptr _path; object_ptr _clear; }; #endif // OS_WIN_STORE class ChatSettingsWidget : public BlockWidget { Q_OBJECT public: ChatSettingsWidget(QWidget *parent, UserData *self); private slots: void onReplaceEmoji(); void onViewList(); void onDontAskDownloadPath(); void onSendByEnter(); void onSendByCtrlEnter(); void onAutomaticMediaDownloadSettings(); void onManageStickerSets(); private: void createControls(); object_ptr _replaceEmoji = { nullptr }; object_ptr> _viewList = { nullptr }; object_ptr _dontAskDownloadPath = { nullptr }; #ifndef OS_WIN_STORE object_ptr> _downloadPath = { nullptr }; #endif // OS_WIN_STORE object_ptr _sendByEnter = { nullptr }; object_ptr _sendByCtrlEnter = { nullptr }; object_ptr _automaticMediaDownloadSettings = { nullptr }; object_ptr _manageStickerSets = { nullptr }; }; } // namespace Settings