Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-27 | Tweak the look of various UI surfaces and buttons. | Andreas Kling | |
2019-03-15 | IRCClient: Add a toolbar with some actions. | Andreas Kling | |
2019-03-10 | LibGUI: Don't fill widgets with background color by defualt. | Andreas Kling | |
2019-03-07 | LibGUI: Implement GToolbar separators. | Andreas Kling | |
2019-03-04 | LibGUI: Improve GStatusBar and GToolBar and share some code via GStyle. | Andreas Kling | |
2019-03-03 | FileManager+LibGUI: Add a simple location textbox. | Andreas Kling | |
The widget layout here is a bit off and needs work. | |||
2019-02-28 | LibGUI: Both GToolBar and GStatusBar should have highlight/shadow. | Andreas Kling | |
2019-02-26 | LibGUI: Make toolbars a bit bigger by default. | Andreas Kling | |
2019-02-25 | AK: Add Retained<T>, like RetainPtr, but never null. | Andreas Kling | |
Also use some Clang attribute wizardry to get a warning for use-after-move. | |||
2019-02-20 | LibGUI: Pack toolbar buttons closer together. | Andreas Kling | |
2019-02-20 | LibGUI: Support different button styles. | Andreas Kling | |
I want to try an MS Office 97 "CoolBar" inspired look for my toolbars. This is only the painting support, we still need hover events to implement the actual effect. | |||
2019-02-20 | LibGUI: Improve GBoxLayout so it can better support GToolBar. | Andreas Kling | |
Added spacing and margin concepts to GLayout. Support layout a sequence of nothing but fixed-size objects in the desired orientation. :^) | |||
2019-02-20 | LibGUI: Add a GToolBar class that can be populated with GActions. | Andreas Kling | |
The same action can be added to both a menu and a toolbar. Use this to put a toolbar into FileManager. This is pretty neat. :^) |