xtd 0.2.0
Loading...
Searching...
No Matches
apple_colors.h
Go to the documentation of this file.
1
4#pragma once
5#include "gray_colors.h"
6
8namespace xtd {
10 namespace drawing {
23 public:
25
29 static xtd::drawing::color black() noexcept;
30
33 static xtd::drawing::color blue() noexcept;
34
37 static xtd::drawing::color brown() noexcept;
38
41 static xtd::drawing::color cyan() noexcept;
42
45 static xtd::drawing::color green() noexcept;
46
49 static xtd::drawing::color magenta() noexcept;
50
53 static xtd::drawing::color orange() noexcept;
54
57 static xtd::drawing::color purple() noexcept;
58
61 static xtd::drawing::color red() noexcept;
62
65 static xtd::drawing::color yellow() noexcept;
66
69 static xtd::drawing::color white() noexcept;
71
73
76 static const std::vector<xtd::drawing::color>& get_colors() noexcept;
77
78
79 static const std::vector<xtd::ustring>& get_color_names() noexcept;
81 };
82 }
83}
Apple colors for all the Apple colors. This class cannot be inherited.
Definition apple_colors.h:22
static xtd::drawing::color black() noexcept
A system-defined color object.
Represents an ARGB (alpha, red, green, blue) color.
Definition color.h:49
Represents text as a sequence of UTF-8 code units.
Definition ustring.h:47
Contains xtd::drawing::gray_colors factory.
#define drawing_export_
Define shared library export.
Definition drawing_export.h:13
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition static.h:37
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10