xtd 0.2.0
Loading...
Searching...
No Matches
border_color.h
Go to the documentation of this file.
1
4#pragma once
5#include "../../forms_export.h"
6#include <xtd/drawing/color>
7#include <xtd/iequatable>
8#include <xtd/string>
9
11namespace xtd {
13 namespace forms {
15 namespace style_sheets {
33 class forms_export_ border_color : public xtd::iequatable<border_color>, public xtd::object {
34 public:
36
39 static const border_color empty;
41
43
46 border_color() = default;
47
51 explicit border_color(const xtd::drawing::color& all);
52
61
63 border_color(const border_color&) = default;
64 border_color& operator =(const border_color&) = default;
66
68
73 const xtd::drawing::color& all() const noexcept;
77 void all(const xtd::drawing::color& all) noexcept;
78
82 const xtd::drawing::color& bottom() const noexcept;
86 void bottom(const xtd::drawing::color& bottom) noexcept;
87
91 const xtd::drawing::color& left() const noexcept;
95 void left(const xtd::drawing::color& left) noexcept;
96
100 const xtd::drawing::color& right() const noexcept;
104 void right(const xtd::drawing::color& right) noexcept;
105
109 const xtd::drawing::color& top() const noexcept;
113 void top(const xtd::drawing::color& top) noexcept;
115
117
119 using object::equals;
120 bool equals(const border_color& other) const noexcept override;
122
123 private:
124 bool all_ = true;
125 xtd::drawing::color left_ = xtd::drawing::color::black;
126 xtd::drawing::color top_ = xtd::drawing::color::black;
127 xtd::drawing::color right_ = xtd::drawing::color::black;
128 xtd::drawing::color bottom_ = xtd::drawing::color::black;
129 };
130 }
131 }
132}
Represents an ARGB (alpha, red, green, blue) color.
Definition color.h:49
The xtd::forms::style_sheets::border_color is used to set the color of the borders.
Definition border_color.h:33
static const border_color empty
Provides an empty xtd::forms::style_sheets::border_color object.
Definition border_color.h:39
const xtd::drawing::color & all() const noexcept
Gets the xtd::forms::style_sheets::border_color value for all the edges.
border_color(const xtd::drawing::color &all)
Initializes a new instance of the xtd::forms::style_sheets::border_color class using the supplied bor...
border_color(const xtd::drawing::color &left, const xtd::drawing::color &top, const xtd::drawing::color &right, const xtd::drawing::color &bottom)
Initializes a new instance of the xtd::forms::style_sheets::border_color class using a separate borde...
border_color()=default
Initializes a new instance of the xtd::forms::style_sheets::border_color class.
Defines a generalized method that a value type or class implements to create a type-specific method f...
Definition iequatable.h:22
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes....
Definition object.h:42
#define forms_export_
Define shared library export.
Definition forms_export.h:13
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10