summaryrefslogtreecommitdiff
path: root/DevTools
AgeCommit message (Collapse)Author
2019-06-30Meta: Removed all gitignore in the source tree only keeping the root oneVAN BOSSUYT Nicolas
2019-06-30GUI: Use Win2K-like "warm gray" color instead of the older colder gray.Andreas Kling
Someone suggested this a long time ago and I never got around to it. So here we go, here's the warm gray! I have to admit I like it better. :^)
2019-06-29VisualBuilder: Support loading a saved form from JSON.Andreas Kling
The form to load is specified on the command line, e.g "vb test.frm".
2019-06-27VisualBuilder: Use NonnullRefPtrVector.Andreas Kling
2019-06-23LibGUI+VisualBuilder: Support custom editing widgets for property values.Andreas Kling
Implemented this by letting GAbstractViews provide a GModelEditingDelegate for a given index, which then knows how to create and setup a custom widget appropriate for the data type being edited.
2019-06-22VisualBuilder: Fix compiler warnings.Andreas Kling
2019-06-21AK: Rename Retainable.h => RefCounted.h.Andreas Kling
2019-06-21AK: Rename RetainPtr.h => RefPtr.h, Retained.h => NonnullRefPtr.h.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-21AK: Rename Retainable => RefCounted.Andreas Kling
(And various related renames that go along with it.)
2019-06-18AK: Rename JsonObject::to_string() and pals to serialized().Andreas Kling
And the variant that serializes into a StringBuilder is called serialize().
2019-06-17VisualBuilder: Switch to JSON for the form output.Andreas Kling
This makes widgets-within-widgets straightforward instead of confusing. The UI doesn't actually let you put widgets inside one another just yet, but at least now the output format won't be a problem. :^)
2019-06-07Meta: Tweak .clang-format to not wrap braces after enums.Andreas Kling
2019-06-07VisualBuilder: Run clang-format on everything.Andreas Kling
2019-06-01VisualBuilder: Add GRadioButton to the widget repertoire.Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh.
2019-05-24LibGUI: Make GCheckBox inherit from GAbstractButton.Andreas Kling
2019-05-24LibGUI: Add a GAbstractButton base class for button widgets.Andreas Kling
This patch moves GButton and GRadioButton to inherit from it. This allows them to share code for mouse event handling, etc.
2019-05-13Fix "make clean" not deleting app binaries.Andreas Kling
2019-05-11VisualBuilder: Tweak margins in properties window.Andreas Kling
2019-05-08GMessageBox: Add icons to message boxes with 3 standard ones to choose from.Andreas Kling
2019-05-08GGroupBox: Rename "name" property to "title"Andreas Kling
2019-05-08Move VisualBuilder into a new DevTools directory.Andreas Kling