summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/AboutDialog.cpp
AgeCommit message (Collapse)Author
2020-08-27Base: Create /res/graphics/ and relocate system art assetsthankyouverycool
2020-07-23LibGUI: Rename GUI::Image => GUI::ImageWidgetAndreas Kling
"Image" was a bit too vague, "ImageWidget" is obviously a widget of some sort.
2020-06-18AboutDialog: Replace Label with Image to show banner and app iconHüseyin ASLITÜRK
2020-06-01LibGUI: Tweak AboutDialog a bit, remove big Buggie from system variantAndreas 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-28LibGUI: Don't show big Buggie in app about dialogsAndreas Kling
It was getting to crowded between two Buggies and the app icon.
2020-05-27LibGUI, About: Implement system-wide W2k-esque About dialogNick Vella
The new About dialog reads version information from /res/version.ini, which is generated at build time.
2020-05-20LibGUI: Update copyright character in about dialogHüseyin ASLITÜRK
2020-05-12LibGUI: Include keyboard modifier state with button on_click callsAndreas Kling
This will allow you us to implement special behavior when Ctrl+clicking a button.
2020-03-30LibGUI: AboutDialog now inherits the icon of its parent windowTibor Nagy
2020-03-04LibGUI: Don't use Core::Object::add() to instantiate dialogsAndreas 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-04LibCore: 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-04LibGUI: Use GUI::Window::set_main_widget<WidgetType>() in clientsAndreas Kling
2020-03-04LibGUI: Use set_layout<LayoutType>() in lots of client codeAndreas Kling
2020-03-03LibGUI: Remove Button& parameter from Button::on_click hookAndreas 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-23LibGUI: Use Core::Object::add() a whole bunchAndreas Kling
2020-02-14LibGUI: Remove some header dependencies from Widget.hAndreas Kling
2020-02-06LibGUI: Remove leading G from filenamesAndreas Kling