summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI
AgeCommit message (Expand)Author
2020-12-27LibGUI: Add GUI::AppFile, a simple wrapper around .af filesLinus Groh
2020-12-27LibGUI: Select the edited text by default in StringModelEditingDelegateAndreas Kling
2020-12-27LibGUI: Make IconView return a larger content rect for editingAndreas Kling
2020-12-27LibGUI+WindowServer: Tweak hover shadows slightlyAndreas Kling
2020-12-27LibGUI: Include LibGfx/Bitmap.h in Icon.hLinus Groh
2020-12-27LibGUI: Support top-to-bottom flow in IconViewAndreas Kling
2020-12-27LibGUI: Move some large IconView internal helpers to the .cpp fileAndreas Kling
2020-12-27Kernel: Remove the per-process icon_id and sys$set_process_icon()Andreas Kling
2020-12-27LibGUI: Use FileIconProvider in RunningProcessesModelAndreas Kling
2020-12-26LibGUI: Make the LinkLabel widget keyboard-friendlyAndreas Kling
2020-12-26LibGUI: Set LinkLabel tooltip if text can't fit the widgetAndreas Kling
2020-12-26LibGUI: Tweak GUI::Label API a bit and add did_change_text() virtualAndreas Kling
2020-12-26LibGUI: Minor tweaks to the GUI::LinkLabelAndreas Kling
2020-12-26LibGUI: Rename Link => LinkLabelAndreas Kling
2020-12-26LibC: Fix some incorrect printf usagesSahan Fernando
2020-12-24LibGUI: Add a Link widgetAlex McGrath
2020-12-21LibGUI+TextEditor+HackStudio: Add GML syntax highlighter :^)Andreas Kling
2020-12-21LibGUi: Rework GML parser into a lexer+parserAndreas Kling
2020-12-21LibGUI: Soft tab expansion should be based on insertion columnAndreas Kling
2020-12-21LibGUI: Get executable file icons from PNGs stored in ELF sections.William Marlow
2020-12-21Everywhere: Switch from (void) to [[maybe_unused]] (#4473)Lenny Maiorani
2020-12-20LibGUI: Make the GML parser a bit more fault-tolerantAndreas Kling
2020-12-20LibGUI: Make GUI::Label auto-sizing declarativeAndreas Kling
2020-12-20LibGUI: Rename ProgressBar property caption => text and expose to GMLAndreas Kling
2020-12-20LibGUI: Add a couple more Widget registrationsAndreas Kling
2020-12-20LibGUI: Introduce GML - a simple GUI Markup Language :^)Andreas Kling
2020-12-18LibGUI: Don't assume main widget exists in Window::handle_resize_event()Linus Groh
2020-12-18LibGUI: Make autoformatting performed on InsertTextCommand visible to on_edit...Sahan Fernando
2020-12-17LibGUI: Table views with SelectRows should scroll entire rows into viewAndreas Kling
2020-12-17LibGUI: Move selection behavior from TableView up to AbstractViewAndreas Kling
2020-12-16LibGUI: Don't fill IconView item text background unless actually wantedAndreas Kling
2020-12-16LibGUI: Make the IconView cursor rect show up on the desktopAndreas Kling
2020-12-16LibGUI: Add ScrollableWidget helpers for rect conversionAndreas Kling
2020-12-16FileManager+LibGUI: Draw the item text for desktop icons with shadowAndreas Kling
2020-12-16LibGUI: Show app icons for executables with associated .af filesAndreas Kling
2020-12-16LibGUI: Generate nicer icons for symlinked filesAndreas Kling
2020-12-16LibGUI: Add GUI::Icon::sizes()Andreas Kling
2020-12-14Loader: Stabilize loader & Use shared libraries everywhere :^)Itamar
2020-12-14LibGUI: Don't focus BreadcrumbBar segments on clickAndreas Kling
2020-12-14LibGUI: Add a basic BreadcrumbBar widget! :^)Andreas Kling
2020-12-14LibGUI: Protect GUI::Button across firing the on_click hookAndreas Kling
2020-12-13LibGUI: Simplify ComboBox/TextEditor relationship a bitAndreas Kling
2020-12-11FileManager: focus_dependent_delete_action is correctly enabled/disabledZac
2020-12-09LibGUI: Show action shortcut in ToolBarButton tooltipSahan Fernando
2020-12-08Clipboard: Remove-unused bpp metadataBen Wiederhake
2020-12-07LibGUI: Expose widget focus policy as a Core::Object propertyAndreas Kling
2020-12-07LibGUI: Allow GUI::Action to swallow key events when disabledLinus Groh
2020-12-03LibGUI: Optimize GUI::Variant move constructorSahan Fernando
2020-12-02Taskbar: Wait on all waitable children in SIGCHLD handlerTom
2020-11-30LibGUI: Add a ModelSelection::add_all(Vector) APIAnotherTest