local generic_widget = ... --DOC_HIDE_ALL local wibox = require("wibox") local beautiful = require("beautiful") local w = wibox.widget { { { { markup = "expand = false\nhomogeneous = false", widget = wibox.widget.textbox }, { { generic_widget( "short 1" ), generic_widget( "-------- long 1 --------" ), generic_widget( "short 2" ), generic_widget( "-------- long 2 --------" ), forced_num_cols = 2, forced_num_rows = 2, expand = false, homogeneous = false, layout = wibox.layout.grid, }, margins = 1, color = beautiful.border_color, layout = wibox.container.margin, }, layout = wibox.layout.fixed.vertical }, { { markup = "expand = true\nhomogeneous = false", widget = wibox.widget.textbox }, { { generic_widget( "short 1" ), generic_widget( "-------- long 1 --------" ), generic_widget( "short 2" ), generic_widget( "-------- long 2 --------" ), forced_num_cols = 2, forced_num_rows = 2, expand = true, homogeneous = false, layout = wibox.layout.grid, }, margins = 1, color = beautiful.border_color, layout = wibox.container.margin, }, layout = wibox.layout.fixed.vertical }, layout = wibox.layout.flex.horizontal }, { { { markup = "expand = false\nhomogeneous = true", widget = wibox.widget.textbox }, { { generic_widget( "short 1" ), generic_widget( "-------- long 1 --------" ), generic_widget( "short 2" ), generic_widget( "-------- long 2 --------" ), forced_num_cols = 2, forced_num_rows = 2, expand = false, homogeneous = true, layout = wibox.layout.grid, }, margins = 1, color = beautiful.border_color, layout = wibox.container.margin, }, layout = wibox.layout.fixed.vertical }, { { markup = "expand = true\nhomogeneous = true", widget = wibox.widget.textbox }, { { generic_widget( "short 1" ), generic_widget( "-------- long 1 --------" ), generic_widget( "short 2" ), generic_widget( "-------- long 2 --------" ), forced_num_cols = 2, forced_num_rows = 2, expand = true, homogeneous = true, layout = wibox.layout.grid, }, margins = 1, color = beautiful.border_color, layout = wibox.container.margin, }, layout = wibox.layout.fixed.vertical }, layout = wibox.layout.flex.horizontal }, layout = wibox.layout.fixed.vertical } return w, 600, 150