/* 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 "ui/rp_widget.h" #include "editor/photo_editor_common.h" namespace Editor { class Crop; class Paint; class PhotoEditorContent final : public Ui::RpWidget { public: PhotoEditorContent( not_null parent, std::shared_ptr photo, PhotoModifications modifications); void applyModifications(PhotoModifications modifications); void applyMode(PhotoEditorMode mode); void save(PhotoModifications &modifications); private: const base::unique_qptr _paint; const base::unique_qptr _crop; const std::shared_ptr _photo; rpl::variable _modifications; QRect _imageRect; QMatrix _imageMatrix; PhotoEditorMode _mode; }; } // namespace Editor