xtd 0.2.0
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(const texture_brush& value);
43 texture_brush& operator =(const texture_brush& value);
45
47
51 const drawing::image& image() const noexcept;
56
57 private:
59
60 xtd::sptr<data> data_;
61 };
62 }
63}
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.
const drawing::image & image() const noexcept
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 const_pointer data() const noexcept
Gets direct access to the underlying contiguous storage.
Definition read_only_span.hpp:201