summaryrefslogtreecommitdiff
path: root/LibGUI
AgeCommit message (Expand)Author
2019-06-23GComboBox: Add set_text() and on_return_pressed hook.Andreas Kling
2019-06-23GVariant: Add to_string(GVariant::Type) helper.Andreas Kling
2019-06-23GTextEditor: Don't replace selection on enter press in single-line editor.Andreas Kling
2019-06-23GAbstractView: Correct placement of editor widgets.Andreas Kling
2019-06-22LibGUI: Fix compiler warnings.Andreas Kling
2019-06-22GSpinBox: Make the increment/decrement buttons unfocusable.Andreas Kling
2019-06-22GComboBox: Don't make the list window wider than the widget unless needed.Andreas Kling
2019-06-22LibGUI: Add a new GComboBox widget.Andreas Kling
2019-06-22GAbstractView: Add on_selection callback.Andreas Kling
2019-06-22GScrollableWidget: Make the scrollbar metrics helpers public.Andreas Kling
2019-06-22GButton: Make it possible to disable focusability.Andreas Kling
2019-06-22GTextEditor: Add select_all() API.Andreas Kling
2019-06-22GVariant: Add a constructor that takes const char*.Andreas Kling
2019-06-22GWindow: Make destroy-on-close an optional behavior.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
2019-06-21LibGUI: Refactor the keyboard activation code a bit to use WeakPtr<GWidget>.Andreas Kling
2019-06-16Merge pull request #173 from faissaloo/serenity-keysAndreas Kling
2019-06-16GWindow: Get rid of superflous variablefaissaloo
2019-06-16LibGUI: clang-formatfaissaloo
2019-06-16GWindow: Cleanupfaissaloo
2019-06-16GSpinBox: The initial text should be "0".Andreas Kling
2019-06-15Merge remote-tracking branch 'origin/master' into serenity-keysfaissaloo
2019-06-15GWindow: Hide SerenityKeys when window is deselectedfaissaloo
2019-06-12LibGUI: Add an "exclusive" property to GAbstractButtons.Andreas Kling
2019-06-09GWindow: Make SerenityKeys labels look betterfaissaloo
2019-06-08GWindow: SerenityKeys refactorfaissaloo
2019-06-07Meta: Tweak .clang-format to not wrap braces after enums.Andreas Kling
2019-06-07LibGUI: Run clang-format on everything.Andreas Kling
2019-06-07GScrollBar: Use increment/decrement naming consistently.Andreas Kling
2019-06-07GScrollBar: Keep scrolling while pushing down increment/decrement button.Andreas Kling
2019-06-07GTextEditor: Set the vertical scrollbar step size to the line height.Andreas Kling
2019-06-03GWindow: Highlight for multicharacter SerenityKeysfaissaloo
2019-06-03Painter: Reduce the number of draw_text overloads to only involve StringViewRobin Burchell
2019-06-03StringViewize a bunch of things -- mostly LibGUIRobin Burchell
2019-06-03GWindow: Leave SerenityKey mode if non-existent keybind is usedfaissaloo
2019-06-03GWindow: Add SerenityKeys minimum functionalityfaissaloo
2019-06-01WindowServer+LibGUI: Add a way to bring a window to the front.Andreas Kling
2019-05-31Update Badge<T> instantiations to simply be {}.Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
2019-05-27LibGUI: Add a GListView widget.Andreas Kling
2019-05-27IRC client setttings, Terminal settings, more WM settingsChristopher Dumas
2019-05-27LibCore: Add CDirIterator, and use it in everything rather than readdirRobin Burchell
2019-05-27LibCore: Add CObject::for_each_child_of_type<T>()Andreas Kling
2019-05-27LibCore+LibGUI: Add is<T>(CObject&) and to<T>(CObject&) helpers.Andreas Kling
2019-05-27LibGUI: Add GWidget::for_each_child_widget(callback).Andreas Kling
2019-05-27GFilePicker: Add a preview pane on the right-hand side for image previews.Andreas Kling
2019-05-26GFilePicker: Return paths as FileSystemPath rather than Stringfaissaloo