// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #pragma once #include "td/telegram/td_api.h" #include "td/telegram/telegram_api.h" #include "td/utils/common.h" #include "td/utils/StringBuilder.h" namespace td { class MediaAreaCoordinates { double x_ = 0.0; double y_ = 0.0; double width_ = 0.0; double height_ = 0.0; double rotation_angle_ = 0.0; friend bool operator==(const MediaAreaCoordinates &lhs, const MediaAreaCoordinates &rhs); friend bool operator!=(const MediaAreaCoordinates &lhs, const MediaAreaCoordinates &rhs); friend StringBuilder &operator<<(StringBuilder &string_builder, const MediaAreaCoordinates &coordinates); void init(double x, double y, double width, double height, double rotation_angle); public: MediaAreaCoordinates() = default; explicit MediaAreaCoordinates(const telegram_api::object_ptr &coordinates); explicit MediaAreaCoordinates(const td_api::object_ptr &position); td_api::object_ptr get_story_area_position_object() const; telegram_api::object_ptr get_input_media_area_coordinates() const; bool is_valid() const { return width_ > 0.0 && height_ > 0.0; } template void store(StorerT &storer) const; template void parse(ParserT &parser); }; bool operator==(const MediaAreaCoordinates &lhs, const MediaAreaCoordinates &rhs); bool operator!=(const MediaAreaCoordinates &lhs, const MediaAreaCoordinates &rhs); StringBuilder &operator<<(StringBuilder &string_builder, const MediaAreaCoordinates &coordinates); } // namespace td