xtd 0.2.0
panel_renderer.h
Go to the documentation of this file.
1 #pragma once
6 #include "border_sides.h"
7 #include "border_style.h"
8 #include "box_renderer.h"
9 #include <xtd/drawing/graphics>
10 #include <xtd/static>
11 #include <xtd/ustring>
12 
14 namespace xtd {
16  namespace forms {
31  public:
40  static void draw_panel(const xtd::forms::style_sheets::style_sheet& style_sheet, xtd::drawing::graphics& graphics, const xtd::drawing::rectangle& bounds, xtd::forms::visual_styles::form_state form_state, const std::optional<xtd::drawing::color>& back_color, const std::optional<xtd::forms::border_style>& border, xtd::forms::border_sides sides);
41  };
42  }
43 }
Contains xtd::forms::visual_styles::form_state enum class.
#define static_
This keyword is use to represent a static object. A static object can&#39;t be instantiated (constructors...
Definition: static.h:37
Contains xtd::forms::box_renderer static class.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
static void draw_panel(const xtd::forms::style_sheets::style_sheet &style_sheet, xtd::drawing::graphics &graphics, const xtd::drawing::rectangle &bounds, xtd::forms::visual_styles::form_state form_state, const std::optional< xtd::drawing::color > &back_color, const std::optional< xtd::forms::border_style > &border, xtd::forms::border_sides sides)
Draws a box in the specified bounds, form state and background color.
control_state
Specifies the visual state of a control that is drawn with visual styles.
Definition: control_state.h:22
border_sides
Specifies how a control anchors to the edges of its container.
Definition: border_sides.h:21
control_state form_state
Specifies the visual state of a form that is drawn with visual styles.
Definition: form_state.h:22
Stores a set of four integers that represent the location and size of a rectangle.
Definition: rectangle.h:44
Provides panel control renderer methods.
Definition: panel_renderer.h:30
Contains xtd::forms::border_sides enum class.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
Defines an object used to draw lines and curves. This class cannot be inherited.
Definition: graphics.h:70
Contains xtd::forms::border_style enum class.
The xtd::forms::style_sheets::style_sheet allows you to specify an xtd style sheet.
Definition: style_sheet.h:62