10 #include "../drawing_export.h" 64 rectangle(int32_t x, int32_t y, int32_t width, int32_t height) noexcept;
83 int32_t bottom() const noexcept;
88 int32_t height() const noexcept;
92 void height(int32_t value) noexcept;
96 bool is_empty() const noexcept;
100 int32_t left() const noexcept;
104 xtd::drawing::
point location() const noexcept;
107 void location(const
xtd::drawing::
point& value) noexcept;
111 int32_t right() const noexcept;
118 void size(const
xtd::drawing::
size& value) noexcept;
122 int32_t top() const noexcept;
127 int32_t width() const noexcept;
131 void width(int32_t value) noexcept;
136 int32_t x() const noexcept;
140 void x(int32_t value) noexcept;
145 int32_t y() const noexcept;
149 void y(int32_t value) noexcept;
158 void add(const drawing::
size& sz) noexcept;
163 void add(
int width,
int height) noexcept;
187 bool contains(const
xtd::drawing::
point& pt) const noexcept;
192 bool contains(const
xtd::drawing::
rectangle& rect) const noexcept;
198 bool contains(int32_t x, int32_t y) const noexcept;
207 static
rectangle from_ltrb(int32_t left, int32_t top, int32_t right, int32_t bottom) noexcept;
212 void inflate(const drawing::
size& sz) noexcept;
218 void inflate(
int width,
int height) noexcept;
236 bool intersects_with(const
rectangle& rect) const noexcept;
245 void make_intersect(const
rectangle& rect) noexcept;
254 void make_union(const
rectangle& rect) noexcept;
259 void offset(const
point& pos) noexcept;
263 void offset(int32_t x, int32_t y) noexcept;
299 bool operator==(const
rectangle& value) const noexcept;
303 bool operator!=(const
rectangle& value) const noexcept;
Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional ...
Definition: point.h:53
Contains xtd::drawing::point class.
Stores an ordered pair of integers, which specify a height and width.
Definition: size.h:30
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Stores a set of four floating-point numbers that represent the location and size of a rectangle...
Definition: rectangle_f.h:34
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:50
std::string to_string(const date_time &value, const std::string &fmt, const std::locale &loc)
Convert a specified value into a string with specified format and locale.
Definition: date_time.h:1110
Contains xtd::drawing::rectangle_f class.
Contains xtd::drawing::size class.
Stores a set of four integers that represent the location and size of a rectangle.
Definition: rectangle.h:44
Contains xtd::ustring class.
xtd::ustring to_string() const noexcept override
Converts the attributes of this xtd::drawing::rectangle to a human-readable string.
Contains xtd::object class.
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes...
Definition: object.h:30
static const rectangle empty
Represents a xtd::drawing::rectangle that has xtd::drawing::rectagle::x, xtd::drawing::rectangle::y, xtd::drawing::rectangle::width and xtd::drawing::rectangle::height values set to zero.
Definition: rectangle.h:50