From 8fc5cb226f0c2b36298f51b3d2501b04ebb11b8a Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Fri, 7 Dec 2012 12:28:59 +0200 Subject: [PATCH] Implement the Layout::set_spacing function and friends --- source/layout.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/source/layout.cpp b/source/layout.cpp index ccd0283..d5437f0 100644 --- a/source/layout.cpp +++ b/source/layout.cpp @@ -110,6 +110,28 @@ void Layout::set_margin(const Sides &m) update(); } +void Layout::set_spacing(unsigned s) +{ + row_spacing = s; + col_spacing = s; + if(container) + update(); +} + +void Layout::set_row_spacing(unsigned s) +{ + row_spacing = s; + if(container) + update(); +} + +void Layout::set_column_spacing(unsigned s) +{ + col_spacing = s; + if(container) + update(); +} + void Layout::add_widget(Widget &wdg) { if(!container) -- 2.43.0