Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-27 | Base: Create /res/graphics/ and relocate system art assets | thankyouverycool | |
2020-07-23 | LibGUI: Rename GUI::Image => GUI::ImageWidget | Andreas Kling | |
"Image" was a bit too vague, "ImageWidget" is obviously a widget of some sort. | |||
2020-06-18 | AboutDialog: Replace Label with Image to show banner and app icon | Hüseyin ASLITÜRK | |
2020-06-01 | LibGUI: Tweak AboutDialog a bit, remove big Buggie from system variant | Andreas Kling | |
One Buggie is enough, it looks a lot less confused without the big one. Also make the dialog a bit shorter since there was a lot of dead space. | |||
2020-05-28 | LibGUI: Don't show big Buggie in app about dialogs | Andreas Kling | |
It was getting to crowded between two Buggies and the app icon. | |||
2020-05-27 | LibGUI, About: Implement system-wide W2k-esque About dialog | Nick Vella | |
The new About dialog reads version information from /res/version.ini, which is generated at build time. | |||
2020-05-20 | LibGUI: Update copyright character in about dialog | Hüseyin ASLITÜRK | |
2020-05-12 | LibGUI: Include keyboard modifier state with button on_click calls | Andreas Kling | |
This will allow you us to implement special behavior when Ctrl+clicking a button. | |||
2020-03-30 | LibGUI: AboutDialog now inherits the icon of its parent window | Tibor Nagy | |
2020-03-04 | LibGUI: Don't use Core::Object::add() to instantiate dialogs | Andreas Kling | |
Now that add() returns a WidgetType&, we can't rely on the parent of a GUI::Dialog to still keep it alive after exec() returns. This happens because exec() will call remove_from_parent() on itself before returning. And so we go back to the old idiom for creating a GUI::Dialog centered above a specific window. Just call GUI::Dialog::construct(), passing the "parent" window as the last parameter. | |||
2020-03-04 | LibCore: Make Core::Object::add<ChildType> return a ChildType& | Andreas Kling | |
Since the returned object is now owned by the callee object, we can simply vend a ChildType&. This allows us to use "." instead of "->" at the call site, which is quite nice. :^) | |||
2020-03-04 | LibGUI: Use GUI::Window::set_main_widget<WidgetType>() in clients | Andreas Kling | |
2020-03-04 | LibGUI: Use set_layout<LayoutType>() in lots of client code | Andreas Kling | |
2020-03-03 | LibGUI: Remove Button& parameter from Button::on_click hook | Andreas Kling | |
There was but a single user of this parameter and it's a bit tedious to write it out every time, so let's get rid of it. | |||
2020-02-23 | LibGUI: Use Core::Object::add() a whole bunch | Andreas Kling | |
2020-02-14 | LibGUI: Remove some header dependencies from Widget.h | Andreas Kling | |
2020-02-06 | LibGUI: Remove leading G from filenames | Andreas Kling | |