From c0d8b6d9fc73abc8de4575686e0776e3468d37b2 Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Sat, 28 Dec 2019 10:43:58 +0100 Subject: GUI: Introduce dynamic layouts Prior to this change, a GUI layout was only affected by the screen size. Now, a layout can additionally be influenced by the GUI dialog and widgets that uses it. This capability is leveraged to implement the following features: * Layout elements that are not bound to a GUI widget do not take space. This means that dialogs where the widgets shown depend on for example a feature being enabled at configure time no longer have blank spaces. * Widgets can define a minimal required size for their contents not to be cut. For now this is only used for buttons so their width is always sufficient for their caption not to be cut. This mechanism could be applied to other widget types in the future. --- backends/keymapper/remap-dialog.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'backends/keymapper/remap-dialog.cpp') diff --git a/backends/keymapper/remap-dialog.cpp b/backends/keymapper/remap-dialog.cpp index 9c52a922c5..02400b4c49 100644 --- a/backends/keymapper/remap-dialog.cpp +++ b/backends/keymapper/remap-dialog.cpp @@ -50,6 +50,9 @@ RemapDialog::RemapDialog() _scrollBar = new GUI::ScrollBarWidget(this, 0, 0, 0, 0); + GUI::ContainerWidget *keymapArea = new GUI::ContainerWidget(this, "KeyMapper.KeymapArea"); + keymapArea->setBackgroundType(GUI::ThemeEngine::kWidgetBackgroundNo); + new GUI::ButtonWidget(this, "KeyMapper.Close", _("Close"), 0, kCloseCmd); } -- cgit v1.2.3