xtd 1.0.0
Loading...
Searching...
No Matches
xtd_system_images.hpp
Go to the documentation of this file.
1
4#pragma once
6#include <vector>
7
9namespace xtd {
11 namespace drawing {
29 public:
31
35 [[nodiscard]] static auto default_size() noexcept -> xtd::drawing::size;
36
39 [[nodiscard]] static auto gammasoft() noexcept -> xtd::drawing::image;
43 [[nodiscard]] static auto gammasoft(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
44
47 [[nodiscard]] static auto xtd() noexcept -> xtd::drawing::image;
51 [[nodiscard]] static auto xtd(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
52
55 [[nodiscard]] static auto xtd_console() noexcept -> xtd::drawing::image;
59 [[nodiscard]] static auto xtd_console(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
60
63 [[nodiscard]] static auto xtd_forms() noexcept -> xtd::drawing::image;
67 [[nodiscard]] static auto xtd_forms(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
68
71 [[nodiscard]] static auto xtd_tunit() noexcept -> xtd::drawing::image;
75 [[nodiscard]] static auto xtd_tunit(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
76
79 [[nodiscard]] static auto xtd_core() noexcept -> xtd::drawing::image;
83 [[nodiscard]] static auto xtd_core(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
84
87 [[nodiscard]] static auto xtd_delegates() noexcept -> xtd::drawing::image;
91 [[nodiscard]] static auto xtd_delegates(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
92
95 [[nodiscard]] static auto xtd_diagnostics() noexcept -> xtd::drawing::image;
99 [[nodiscard]] static auto xtd_diagnostics(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
100
103 [[nodiscard]] static auto xtd_drawing() noexcept -> xtd::drawing::image;
107 [[nodiscard]] static auto xtd_drawing(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
108
111 [[nodiscard]] static auto xtd_io() noexcept -> xtd::drawing::image;
115 [[nodiscard]] static auto xtd_io(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
116
119 [[nodiscard]] static auto xtd_strings() noexcept -> xtd::drawing::image;
123 [[nodiscard]] static auto xtd_strings(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
124
127 [[nodiscard]] static auto xtd_cmake() noexcept -> xtd::drawing::image;
131 [[nodiscard]] static auto xtd_cmake(const xtd::drawing::size& size) noexcept -> xtd::drawing::image;
133
135
139 [[nodiscard]] static auto get_images() noexcept -> const xtd::array<xtd::drawing::image>&;
143 [[nodiscard]] static auto get_images(const xtd::drawing::size& size) noexcept -> xtd::array<xtd::drawing::image>;
144
147 [[nodiscard]] static auto get_image_names() noexcept -> const xtd::array<xtd::string>&;
149 };
150 }
151}
Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the ba...
Definition array.hpp:64
An abstract base class that provides functionality for the bitmap and metafile descended classes.
Definition image.hpp:49
Represents the base for all system_images clases (xtd::drawing::system_images).
Definition system_images_base.hpp:32
Each property of the xtd::drawing::xtd_system_images class is an xtd::drawing::image object for Windo...
Definition xtd_system_images.hpp:28
static auto xtd_drawing() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-drawing".
static auto xtd_delegates() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-delegates".
static auto get_image_names() noexcept -> const xtd::array< xtd::string > &
Gets an array of image names.
static auto xtd_cmake() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-cmake".
static auto xtd_tunit() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-tunit".
static auto xtd_console() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-console".
static auto xtd_core() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-core".
static auto xtd_strings() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-strings".
static auto xtd_forms() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-forms".
static auto xtd_diagnostics() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-diagnostics".
static auto gammasoft() noexcept -> xtd::drawing::image
Gets the xtd system image "gammasoft".
static auto default_size() noexcept -> xtd::drawing::size
Gets system image from specified name.
static auto xtd_io() noexcept -> xtd::drawing::image
Gets the xtd system image "xtd-io".
static auto get_images() noexcept -> const xtd::array< xtd::drawing::image > &
Gets an array of images.
#define drawing_export_
Define shared library export.
Definition drawing_export.hpp:13
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
Stores an ordered pair of integers, which specify a height and width.
Definition size.hpp:32
Contains xtd::drawing::system_images_base factory.