From 8980d7a896439f923861ea0810b4e4c36b757d4a Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 22 Dec 2023 07:51:28 +0100 Subject: HeaderLayout: add "3 columns - 40/30/30", "... 30/40/30" & "... 30/30/40" Existing layouts with three columns do not match my needs... There is always a column too narrow. I think this would be a reasonable choice. --- HeaderLayout.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/HeaderLayout.h b/HeaderLayout.h index 1cf7bf7b..0163b5e9 100644 --- a/HeaderLayout.h +++ b/HeaderLayout.h @@ -26,6 +26,9 @@ typedef enum HeaderLayout_ { HF_THREE_25_25_50, HF_THREE_25_50_25, HF_THREE_50_25_25, + HF_THREE_40_30_30, + HF_THREE_30_40_30, + HF_THREE_30_30_40, HF_THREE_40_20_40, HF_FOUR_25_25_25_25, LAST_HEADER_LAYOUT @@ -44,6 +47,9 @@ static const struct { [HF_THREE_25_25_50] = { 3, { 25, 25, 50, 0 }, "three_25_25_50", "3 columns - 25/25/50", }, [HF_THREE_25_50_25] = { 3, { 25, 50, 25, 0 }, "three_25_50_25", "3 columns - 25/50/25", }, [HF_THREE_50_25_25] = { 3, { 50, 25, 25, 0 }, "three_50_25_25", "3 columns - 50/25/25", }, + [HF_THREE_40_30_30] = { 3, { 40, 30, 30, 0 }, "three_40_30_30", "3 columns - 40/30/30", }, + [HF_THREE_30_40_30] = { 3, { 30, 40, 30, 0 }, "three_30_40_30", "3 columns - 30/40/30", }, + [HF_THREE_30_30_40] = { 3, { 30, 30, 40, 0 }, "three_30_30_40", "3 columns - 30/30/40", }, [HF_THREE_40_20_40] = { 3, { 40, 20, 40, 0 }, "three_40_20_40", "3 columns - 40/20/40", }, [HF_FOUR_25_25_25_25] = { 4, { 25, 25, 25, 25 }, "four_25_25_25_25", "4 columns - 25/25/25/25", }, }; -- cgit v1.2.3