|
void | SetImage (ID2D1Image *image) const |
| Sets the image associated with the provided image brush.
|
|
void | SetImage (const Image &image) const |
|
void | SetExtendModeX (D2D1_EXTEND_MODE extendModeX) const |
| Sets how the content inside the source rectangle in the image brush will be extended on the x-axis.
|
|
void | SetExtendModeY (D2D1_EXTEND_MODE extendModeY) const |
| Sets the extend mode on the y-axis.
|
|
void | SetInterpolationMode (D2D1_INTERPOLATION_MODE interpolationMode) const |
| Sets the interpolation mode for the image brush.
|
|
void | SetSourceRectangle (const D2D1_RECT_F *sourceRectangle) const |
| Sets the source rectangle in the image brush.
|
|
void | SetSourceRectangle (const D2D1_RECT_F &sourceRectangle) const |
|
void | GetImage (ID2D1Image **image) const |
| Gets the image associated with the image brush.
|
|
Image | GetImage () const |
|
D2D1_EXTEND_MODE | GetExtendModeX () const |
| Gets the extend mode of the image brush on the x-axis.
|
|
D2D1_EXTEND_MODE | GetExtendModeY () const |
| Gets the extend mode of the image brush on the y-axis of the image.
|
|
D2D1_INTERPOLATION_MODE | GetInterpolationMode () const |
| Gets the interpolation mode of the image brush.
|
|
void | GetSourceRectangle (D2D1_RECT_F *sourceRectangle) const |
| Gets the rectangle that will be used as the bounds of the image when drawn as an image brush.
|
|
void | GetSourceRectangle (D2D1_RECT_F &sourceRectangle) const |
|
D2D1_RECT_F | GetSourceRectangle () const |
|
void | SetOpacity (FLOAT opacity) const |
|
FLOAT | GetOpacity () const |
|
void | SetTransform (const D2D1_MATRIX_3X2_F *transform) const |
|
void | SetTransform (const D2D1_MATRIX_3X2_F &transform) const |
|
void | GetTransform (D2D1_MATRIX_3X2_F *transform) const |
|
template<typename T = Factory>
requires std::is_base_of_v< Factory, T> |
T | GetFactory () |
|
constexpr | Unknown () noexcept |
|
| Unknown (IUnknown *unknown, bool addref=false) noexcept |
|
| Unknown (REFIID iid, const Unknown &unknown, bool throwIfNoInterface=true) |
|
| Unknown (const Unknown &other) noexcept |
|
| Unknown (Unknown &&other) noexcept |
|
| ~Unknown () noexcept |
|
constexpr | operator bool () const noexcept |
|
Unknown & | operator= (const Unknown &other) noexcept |
|
Unknown & | operator= (Unknown &&other) noexcept |
|
void | swap (Unknown &other) noexcept |
|
void | ResetPtr (IUnknown *other=nullptr, bool addRef=false) noexcept |
|
Unknown & | operator= (nullptr_t) |
|
IUnknown * | Detach () |
|
template<typename T >
requires std::is_base_of_v<Unknown, T > |
T | As () const |
|
template<typename T >
requires std::is_base_of_v<Unknown, T> |
bool | Is () const noexcept |
|
template<typename T >
requires std::is_base_of_v<IUnknown, T> |
ComPtr< T > | As () const |
|
template<typename T >
requires std::is_base_of_v<IUnknown, T> |
bool | Is () const noexcept |
| This function can be used to detect if an object supports a particular COM interface derived from IUnknown.
|
|
template<typename T = IUnknown> |
T * | GetInterfacePointer () const noexcept |
|
bool | QueryInterface (REFIID riid, void **itf) const |
| Queries a COM object for a pointer to one of its interface; identifying the interface by a reference to its interface identifier (IID). If the COM object implements the interface, then it returns a pointer to that interface after calling IUnknown::AddRef on it.
|
|
template<typename T >
requires std::is_base_of_v<IUnknown, T> |
bool | QueryInterface (T **itf) const |
|
constexpr bool | operator== (const Unknown &other) const noexcept |
|
constexpr bool | operator!= (const Unknown &other) const noexcept |
|
constexpr bool | operator== (const IUnknown *other) const noexcept |
|
constexpr bool | operator!= (const IUnknown *other) const noexcept |
|
|
template<typename T >
requires std::is_base_of_v<Unknown, T> |
static T | CoCreateInstanceFromClassId (const CLSID &clsid, DWORD classContext=CLSCTX_INPROC_SERVER) |
|
template<typename T >
requires std::is_base_of_v<Unknown, T> |
static T | CoCreateInstanceFromClassId (const wchar_t *clsid, DWORD classContext=CLSCTX_INPROC_SERVER) |
|
template<typename T >
requires std::is_base_of_v<Unknown, T> |
static T | CoCreateInstanceFromClassId (const WideString &clsid, DWORD classContext=CLSCTX_INPROC_SERVER) |
|
template<typename T >
requires std::is_base_of_v<Unknown, T> |
static T | CoCreateInstanceFromProgId (const wchar_t *progId, DWORD classContext=CLSCTX_INPROC_SERVER) |
|
template<typename T >
requires std::is_base_of_v<Unknown, T> |
static T | CoCreateInstanceFromProgId (const WideString &progId, DWORD classContext=CLSCTX_INPROC_SERVER) |
|
template<typename T >
requires std::is_base_of_v<Unknown, T> |
static T | CoCreateInstanceFromDll (const ModuleHandle &dll, const CLSID &clsid) |
|
IUnknown * | unknown_ |
|
Represents a brush based on an ID2D1Image.