serenity/Applications/IRCClient
Andreas Kling 7dc5a3ead8 LibGUI: Rewrite layout system in terms of min and max sizes
This patch removes size policies and preferred sizes, and replaces them
with min-size and max-size for each widget.

Box layout now works in 3 passes:

    1) Set all items (widgets/spacers) to their min-size
    2) Distribute remaining space evenly, respecting max-size
    3) Place widgets one after the other, adding spacing in between

I've also added convenience helpers for setting a fixed size (which is
the same as setting min-size and max-size to the same value.)

This significantly reduces the verbosity of widget layout and makes GML
a bit more pleasant to write, too. :^)
2020-12-30 01:36:41 +01:00
..
CMakeLists.txt Build: Embed application icons directly in the executables. 2020-12-21 00:12:59 +01:00
IRCAppWindow.cpp LibGUI: Rewrite layout system in terms of min and max sizes 2020-12-30 01:36:41 +01:00
IRCAppWindow.h IRCClient: remove some unused headers and replace tabs with spaces 2020-05-28 17:01:31 +02:00
IRCChannel.cpp IRCClient: Use new format functions. 2020-10-06 15:28:39 +02:00
IRCChannel.h IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCChannelMemberListModel.cpp LibGUI: Move GUI::Model::Role to GUI::ModelRole 2020-08-16 16:44:09 +02:00
IRCChannelMemberListModel.h LibGUI: Move GUI::Model::Role to GUI::ModelRole 2020-08-16 16:44:09 +02:00
IRCClient.cpp Everywhere: Switch from (void) to [[maybe_unused]] (#4473) 2020-12-21 00:09:48 +01:00
IRCClient.h LibCore: Make IODevice::read_line() return a String 2020-12-13 11:54:11 +01:00
IRCLogBuffer.cpp LibWeb: Fix Document construction mishap in <template> element 2020-10-23 08:33:16 +02:00
IRCLogBuffer.h IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCQuery.cpp IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCQuery.h IRCClient: Remove unused dump() logic 2020-09-12 13:46:15 +02:00
IRCWindow.cpp LibGUI: Rewrite layout system in terms of min and max sizes 2020-12-30 01:36:41 +01:00
IRCWindow.h IRCClient: Use NonnullRefPtr<IRCClient> throughout 2020-09-10 18:45:00 +02:00
IRCWindowListModel.cpp IRCClient: Use new format functions. 2020-10-06 15:28:39 +02:00
IRCWindowListModel.h IRCClient: Use NonnullRefPtr<IRCClient> throughout 2020-09-10 18:45:00 +02:00
main.cpp Applications: Use pledge and unveil 2020-11-02 22:36:27 +01:00