summaryrefslogtreecommitdiff
path: root/src/widget_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/widget_type.h')
-rw-r--r--src/widget_type.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/widget_type.h b/src/widget_type.h
index 0128d510d..1e4b657a1 100644
--- a/src/widget_type.h
+++ b/src/widget_type.h
@@ -157,6 +157,21 @@ public:
virtual void StoreWidgets(Widget *widgets, int length, bool left_moving, bool top_moving, bool rtl) = 0;
+ /**
+ * Set additional space (padding) around the widget.
+ * @param top Amount of additional space above the widget.
+ * @param right Amount of additional space right of the widget.
+ * @param bottom Amount of additional space below the widget.
+ * @param left Amount of additional space left of the widget.
+ */
+ inline void SetPadding(uint8 top, uint8 right, uint8 bottom, uint8 left)
+ {
+ this->padding_top = top;
+ this->padding_right = right;
+ this->padding_bottom = bottom;
+ this->padding_left = left;
+ };
+
WidgetType type; ///< Type of the widget / nested widget.
uint min_x; ///< Minimal horizontal size.
uint min_y; ///< Minimal vertical size.