35 static auto draw_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
xtd::forms::visual_styles::push_button_state& state) ->
void {draw_button(default_theme(),
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
false, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
36 static auto draw_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
bool focused,
xtd::forms::visual_styles::push_button_state& state) ->
void {draw_button(default_theme(),
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
true, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
37 static auto draw_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(default_theme(),
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
38 static auto draw_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(default_theme(),
g, bounds,
text, font,
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0), focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
39 static auto draw_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(default_theme(),
g, bounds,
text, font,
flags,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
false, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
40 static auto draw_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(default_theme(),
g, bounds,
text, font,
xtd::forms::text_format_flags::default_format, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
41 static auto draw_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(default_theme(),
g, bounds,
text, font,
flags, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
42 static auto draw_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) ->
void {draw_button(default_theme(),
g, bounds,
text, font,
flags, image, image_bounds, focused, state, back_color, fore_color);}
43 static auto draw_button(
const xtd::string&
theme,
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
xtd::forms::visual_styles::push_button_state& state) ->
void {draw_button(
theme,
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
false, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
44 static auto draw_button(
const xtd::string&
theme,
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
bool focused,
xtd::forms::visual_styles::push_button_state& state) ->
void {draw_button(
theme,
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
true, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
45 static auto draw_button(
const xtd::string&
theme,
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(
theme,
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
46 static auto draw_button(
const xtd::string&
theme,
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(
theme,
g, bounds,
text, font,
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0), focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
47 static auto draw_button(
const xtd::string&
theme,
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(
theme,
g, bounds,
text, font,
flags,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
false, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
48 static auto draw_button(
const xtd::string&
theme,
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(
theme,
g, bounds,
text, font,
xtd::forms::text_format_flags::default_format, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
49 static auto draw_button(
const xtd::string&
theme,
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_button(
theme,
g, bounds,
text, font,
flags, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
50 static auto draw_button(
const xtd::string&
theme,
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
52 static auto draw_flat_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
xtd::forms::visual_styles::push_button_state& state) ->
void {draw_flat_button(
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
false, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
53 static auto draw_flat_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
bool focused,
xtd::forms::visual_styles::push_button_state& state) ->
void {draw_flat_button(
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
true, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
54 static auto draw_flat_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_flat_button(
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
55 static auto draw_flat_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_flat_button(
g, bounds,
text, font,
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0), focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
56 static auto draw_flat_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_flat_button(
g, bounds,
text, font,
flags,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
false, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
57 static auto draw_flat_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_flat_button(
g, bounds,
text, font,
xtd::forms::text_format_flags::default_format, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
58 static auto draw_flat_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_flat_button(
g, bounds,
text, font,
flags, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
59 static auto draw_flat_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
61 static auto draw_popup_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
xtd::forms::visual_styles::push_button_state& state) ->
void {draw_popup_button(
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
false, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
62 static auto draw_popup_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
bool focused,
xtd::forms::visual_styles::push_button_state& state) ->
void {draw_popup_button(
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
true, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
63 static auto draw_popup_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_popup_button(
g, bounds,
xtd::string::empty_string,
xtd::drawing::system_fonts::default_font(),
xtd::forms::text_format_flags::default_format, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
64 static auto draw_popup_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_popup_button(
g, bounds,
text, font,
xtd::forms::text_format_flags::default_format,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0), focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
65 static auto draw_popup_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_popup_button(
g, bounds,
text, font,
flags,
xtd::drawing::image::empty,
xtd::drawing::rectangle(0, 0, 0, 0),
false, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
66 static auto draw_popup_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_popup_button(
g, bounds,
text, font,
xtd::forms::text_format_flags::default_format, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
67 static auto draw_popup_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state) ->
void {draw_popup_button(
g, bounds,
text, font,
flags, image, image_bounds, focused, state,
application::style_sheet().system_colors().
control(),
application::style_sheet().system_colors().
control_text());}
68 static auto draw_popup_button(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
73 static auto draw_button_kde(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
74 static auto draw_button_kde_dark(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
75 static auto draw_button_kde_light(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
76 static auto draw_button_gnome(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
77 static auto draw_button_gnome_dark(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
78 static auto draw_button_gnome_light(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
79 static auto draw_button_macos(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
80 static auto draw_button_macos_dark(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
81 static auto draw_button_macos_light(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
82 static auto draw_button_symbolic(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
83 static auto draw_button_symbolic_dark(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
84 static auto draw_button_symbolic_light(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
85 static auto draw_button_windows(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
86 static auto draw_button_windows_dark(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
87 static auto draw_button_windows_light(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
88 static auto draw_button_xtd(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
89 static auto draw_button_xtd_dark(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
90 static auto draw_button_xtd_light(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
91 static auto draw_flat_button_dark(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
92 static auto draw_flat_button_light(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
93 static auto draw_popup_button_dark(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
94 static auto draw_popup_button_light(
xtd::drawing::graphics g,
const xtd::drawing::rectangle& bounds,
const xtd::string&
text,
const xtd::drawing::font& font,
xtd::forms::text_format_flags flags,
const xtd::drawing::image& image,
const xtd::drawing::rectangle& image_bounds,
bool focused,
xtd::forms::visual_styles::push_button_state state,
const std::optional<xtd::drawing::color>& back_color,
const std::optional<xtd::drawing::color>& fore_color) -> void;
Contains classes that represent ASCII and Unicode character encodings; abstract base classes for conv...
Definition basic_string_builder.hpp:13