/* 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 "boxes/abstract_box.h" namespace Ui { class VerticalLayout; } // namespace Ui struct PollData; class CreatePollBox : public BoxContent { public: CreatePollBox(QWidget*); rpl::producer submitRequests() const; void submitFailed(const QString &error); void setInnerFocus() override; protected: void prepare() override; private: object_ptr setupContent(); not_null setupQuestion( not_null container); Fn _setInnerFocus; Fn()> _dataIsValidValue; rpl::event_stream _submitRequests; };