xtd 1.0.0
Loading...
Searching...
No Matches
apple_colors.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "gray_colors.hpp"
6
8namespace xtd {
10 namespace drawing {
23 public:
25
29 [[nodiscard]] static auto black() noexcept -> xtd::drawing::color;
30
33 [[nodiscard]] static auto blue() noexcept -> xtd::drawing::color;
34
37 [[nodiscard]] static auto brown() noexcept -> xtd::drawing::color;
38
41 [[nodiscard]] static auto cyan() noexcept -> xtd::drawing::color;
42
45 [[nodiscard]] static auto green() noexcept -> xtd::drawing::color;
46
49 [[nodiscard]] static auto magenta() noexcept -> xtd::drawing::color;
50
53 [[nodiscard]] static auto orange() noexcept -> xtd::drawing::color;
54
57 [[nodiscard]] static auto purple() noexcept -> xtd::drawing::color;
58
61 [[nodiscard]] static auto red() noexcept -> xtd::drawing::color;
62
65 [[nodiscard]] static auto yellow() noexcept -> xtd::drawing::color;
66
69 [[nodiscard]] static auto white() noexcept -> xtd::drawing::color;
71
73
76 [[nodiscard]] static auto get_colors() noexcept -> const xtd::array<xtd::drawing::color>&;
77
78
79 [[nodiscard]] static auto get_color_names() noexcept -> const xtd::array<xtd::string>&;
81 };
82 }
83}
Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the ba...
Definition array.hpp:64
Apple colors for all the Apple colors. This class cannot be inherited.
Definition apple_colors.hpp:22
static auto brown() noexcept -> xtd::drawing::color
A system-defined color object.
static auto cyan() noexcept -> xtd::drawing::color
A system-defined color object.
static auto yellow() noexcept -> xtd::drawing::color
A system-defined color object.
static auto blue() noexcept -> xtd::drawing::color
A system-defined color object.
static auto white() noexcept -> xtd::drawing::color
A system-defined color object.
static auto magenta() noexcept -> xtd::drawing::color
A system-defined color object.
static auto purple() noexcept -> xtd::drawing::color
A system-defined color object.
static auto get_colors() noexcept -> const xtd::array< xtd::drawing::color > &
Gets an array of colors.
static auto black() noexcept -> xtd::drawing::color
A system-defined color object.
static auto green() noexcept -> xtd::drawing::color
A system-defined color object.
static auto red() noexcept -> xtd::drawing::color
A system-defined color object.
static auto orange() noexcept -> xtd::drawing::color
A system-defined color object.
Represents an ARGB (alpha, red, green, blue) color.
Definition color.hpp:52
Contains xtd::drawing::gray_colors factory.
#define drawing_export_
Define shared library export.
Definition drawing_export.hpp:13
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition static.hpp:38
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