Represents a Windows icon, which is a small bitmap image that is used to represent an object. Icons can be thought of as transparent bitmaps, although their size is determined by the system.
- Inheritance
- xtd::object → xtd::drawing::icon
- Namespace
- xtd::drawing
- Library
- xtd.drawing
- Examples:
- minesweeper.cpp, and stopwatch_form.cpp.
|
| | icon (const xtd::ustring &filename) |
| | Initializes a new instance of the xtd::drawing::icon class from the specified file name. More...
|
| |
| | icon (const xtd::ustring &filename, const xtd::drawing::size &size) |
| | Initializes a new instance of the xtd::drawing::icon class of the specified size from the specified file. More...
|
| |
| | icon (const xtd::ustring &filename, int32 width, int32 height) |
| | Initializes a new instance of the xtd::drawing::icon class with the specified width and height from the specified file. More...
|
| |
| | icon (std::istream &stream) |
| | Initializes a new instance of the xtd::drawing::icon class from the specified data stream. More...
|
| |
| | icon (std::istream &stream, const xtd::drawing::size &size) |
| | Initializes a new instance of the xtd::drawing::icon class of the specified size from the specified stream. More...
|
| |
| | icon (std::istream &stream, int32 width, int32 height) |
| | Initializes a new instance of the xtd::drawing::icon class from the specified data stream and with the specified width and height. More...
|
| |
| | icon (const char *const *bits) |
| | Initializes a new instance of the xtd::drawing::icon class from the specified data. More...
|
| |
| | icon (const char *const *bits, const xtd::drawing::size &size) |
| | Initializes a new instance of the xtd::drawing::icon class of the specified size from the specified data. More...
|
| |
| | icon (const char *const *bits, int32 width, int32 height) |
| | Initializes a new instance of the xtd::drawing::icon class from the specified data and with the specified width and height. More...
|
| |
| | icon (const icon &original, const xtd::drawing::size &size) |
| | Initializes a new instance of the xtd::drawing::icon class and attempts to find a version of the icon that matches the requested size. More...
|
| |
| | icon (const icon &original, int32 width, int32 height) |
| | Initializes a new instance of the xtd::drawing::icon class and attempts to find a version of the icon that matches the requested size. More...
|
| |
|
| | object ()=default |
| | Create a new instance of the ultimate base class object. More...
|
| |
| bool | equals (const object &obj) const noexcept |
| | Determines whether the specified object is equal to the current object. More...
|
| |
| virtual size_t | get_hash_code () const noexcept |
| | Serves as a hash function for a particular type. More...
|
| |
| virtual type_object | get_type () const noexcept |
| | Gets the type of the current instance. More...
|
| |
| template<typename object_t > |
| std::unique_ptr< object_t > | memberwise_clone () const noexcept |
| | Creates a shallow copy of the current object. More...
|
| |
| virtual bool | equals (const icon &) const noexcept=0 |
| | Indicates whether the current object is equal to another object of the same type. More...
|
| |
| static bool | equals (const object &object_a, const object &object_b) noexcept |
| | Determines whether the specified object instances are considered equal. More...
|
| |
| static bool | reference_equals (const object &object_a, const object &object_b) noexcept |
| | Determines whether the specified object instances are the same instance. More...
|
| |
◆ icon() [1/11]
Initializes a new instance of the xtd::drawing::icon class from the specified file name.
- Parameters
-
◆ icon() [2/11]
Initializes a new instance of the xtd::drawing::icon class of the specified size from the specified file.
- Parameters
-
◆ icon() [3/11]
Initializes a new instance of the xtd::drawing::icon class with the specified width and height from the specified file.
- Parameters
-
◆ icon() [4/11]
| xtd::drawing::icon::icon |
( |
std::istream & |
stream | ) |
|
|
explicit |
Initializes a new instance of the xtd::drawing::icon class from the specified data stream.
- Parameters
-
◆ icon() [5/11]
Initializes a new instance of the xtd::drawing::icon class of the specified size from the specified stream.
- Parameters
-
| stream | The data stream from which to load the xtd::drawing::icon. |
| size | The desired size of the icon. |
◆ icon() [6/11]
| xtd::drawing::icon::icon |
( |
std::istream & |
stream, |
|
|
int32 |
width, |
|
|
int32 |
height |
|
) |
| |
Initializes a new instance of the xtd::drawing::icon class from the specified data stream and with the specified width and height.
- Parameters
-
| stream | The data stream from which to load the xtd::drawing::icon. |
| width | The width, in pixels, of the icon. |
| height | The height, in pixels, of the icon. |
◆ icon() [7/11]
| xtd::drawing::icon::icon |
( |
const char *const * |
bits | ) |
|
|
explicit |
Initializes a new instance of the xtd::drawing::icon class from the specified data.
- Parameters
-
◆ icon() [8/11]
Initializes a new instance of the xtd::drawing::icon class of the specified size from the specified data.
- Parameters
-
| stream | The data stream from which to load the xtd::drawing::icon. |
| size | The desired size of the icon. |
◆ icon() [9/11]
| xtd::drawing::icon::icon |
( |
const char *const * |
bits, |
|
|
int32 |
width, |
|
|
int32 |
height |
|
) |
| |
Initializes a new instance of the xtd::drawing::icon class from the specified data and with the specified width and height.
- Parameters
-
| stream | The data stream from which to load the xtd::drawing::icon. |
| width | The width, in pixels, of the icon. |
| height | The height, in pixels, of the icon. |
◆ icon() [10/11]
Initializes a new instance of the xtd::drawing::icon class and attempts to find a version of the icon that matches the requested size.
- Parameters
-
◆ icon() [11/11]
| xtd::drawing::icon::icon |
( |
const icon & |
original, |
|
|
int32 |
width, |
|
|
int32 |
height |
|
) |
| |
Initializes a new instance of the xtd::drawing::icon class and attempts to find a version of the icon that matches the requested size.
- Parameters
-
| original | The xtd::drawing::icon from which to load the newly sized icon. |
| width | The width of the new icon. |
| height | The height of the new icon. |
◆ from_bitmap()
◆ from_handle()
| static icon xtd::drawing::icon::from_handle |
( |
intptr |
handle | ) |
|
|
static |
Creates a GDI+ xtd::drawing::icon from the specified Windows handle to an icon (HICON).
- Parameters
-
| handle | A Windows handle to an icon. |
- Returns
- The xtd::drawing::icon this method creates.
◆ handle()
| intptr xtd::drawing::icon::handle |
( |
| ) |
const |
|
noexcept |
Gets the handle of this icon. This is not a copy of the handle; do not free it.
- Returns
- The Windows handle for the icon.
◆ height()
| int32 xtd::drawing::icon::height |
( |
| ) |
const |
|
noexcept |
◆ save() [1/2]
| void xtd::drawing::icon::save |
( |
const xtd::ustring & |
filename | ) |
const |
Saves this xtd::drawing::icon to the specified output filename.
- Parameters
-
| filename | The file to save to. |
◆ save() [2/2]
| void xtd::drawing::icon::save |
( |
std::ostream & |
stream | ) |
const |
Saves this xtd::drawing::icon to the specified output std::ostream.
- Parameters
-
| stream | The std::ostream to save to. |
◆ size()
◆ to_bitmap()
◆ to_string()
◆ width()
| int32 xtd::drawing::icon::width |
( |
| ) |
const |
|
noexcept |
The documentation for this class was generated from the following file:
- xtd.drawing/include/xtd/drawing/icon.h