xtd 1.0.0
Loading...
Searching...
No Matches
texture_brush.hpp
Go to the documentation of this file.
1
4#pragma once
6#include "brush.hpp"
7#include "image.hpp"
8#include <xtd/iequatable>
9
11namespace xtd {
13 namespace drawing {
29 class drawing_export_ texture_brush final : public brush {
30 struct data;
31
32 public:
34
40
42 texture_brush(texture_brush&& value) = default;
43 texture_brush(const texture_brush& value);
44 texture_brush& operator =(texture_brush&& value) = default;
45 texture_brush& operator =(const texture_brush& value);
47
49
53 [[nodiscard]] auto image() const noexcept -> const drawing::image&;
58
59 private:
61
62 xtd::sptr<data> data_;
63 };
64 }
65}
Contains xtd::drawing::brush class.
brush()
Initialize a new instance of brush class.
An abstract base class that provides functionality for the bitmap and metafile descended classes.
Definition image.hpp:49
texture_brush(const drawing::image &image)
Initializes a new xtd::drawing::texture_brush object that uses the specified image.
auto image() const noexcept -> const drawing::image &
Gets the xtd::drawing::image object associated with this xtd::drawing::texture_brush object.
Contains drawing_export_ keyword.
#define drawing_export_
Define shared library export.
Definition drawing_export.hpp:13
xtd::shared_ptr_object< type_t > sptr
The xtd::sptr object is a shared pointer.
Definition sptr.hpp:25
Contains xtd::drawing::image class.
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
constexpr auto data() const noexcept -> const_pointer
Gets direct access to the underlying contiguous storage.
Definition read_only_span.hpp:197