summaryrefslogtreecommitdiff
path: root/LibGUI/GProgressBar.cpp
AgeCommit message (Collapse)Author
2019-04-11VisualBuilder: Add icons to the toolbox, and support for GProgressBar.Andreas Kling
2019-04-10LibGUI: Move frame painting from GFrame to StylePainter.Andreas Kling
This way it can be used by others who might not have a GFrame object.
2019-03-29Rename Painter::set_clip_rect() to add_clip_rect().Andreas Kling
It was confusing to see multiple calls to set_foo() in a row. Since this is an intersecting operation, let's call it add_clip_rect() instead.
2019-03-28LibGUI: Improve GFrame's look for Container shapes.Andreas Kling
This is now starting to look like a proper container. Very nice :^)
2019-03-28LibGUI: Add a GPainter class that inherits from Painter.Andreas Kling
This gets rid of the last little piece of LibGUI knowledge in Painter.
2019-03-25FileManager+LibGUI: Show thumbnail generation progress in the statusbar.Andreas Kling
2019-03-22LibGUI: Remove unnecessary timer in GProgressBar.Andreas Kling
2019-03-22LibGUI: Add a GProgressBar widget.Andreas Kling