summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2020-01-25LibVT: Rename escape$K and escape$J to EL and ED respectivelyAndreas Kling
2020-01-25LibVT: Fix off-by-ones in ED (Erase in Display) and EL (Erase in Line)Andreas Kling
2020-01-25LibVT: Make backspace (BS) non-destructiveAndreas Kling
2020-01-25LibVT: Support IND and RI (cursor down/up basically)Andreas Kling
2020-01-25LibVT: Rename EscapeState::ExpectBracket => GotEscapeAndreas Kling
2020-01-25LibVT: Support NEL (Next Line)Andreas Kling
2020-01-25LibVT: Support <esc>#8 to fill screen with E'sAndreas Kling
2020-01-25LibVT: Don't go into "stomp" state after moving the cursorAndreas Kling
2020-01-25LibVT: Support HVP (Horizontal and Vertical Position) (final 'f')Andreas Kling
2020-01-25LibVT: Support the DA (Device Attributes) request (final 'c')Andreas Kling
2020-01-25LibIPC: Short-cirtcuit post_message() if socket already disconnectedAndreas Kling
2020-01-25Meta: Remove some copyright headers added in errorAndreas Kling
2020-01-24Meta: Claim copyright for files created by meSergey Bugaev
2020-01-23GTextEditor: Create the "go to line" action eagerlyAndreas Kling
2020-01-23GTextEditor: Move "Go to line" feature from HackStudio into GTextEditorAndreas Kling
2020-01-23GTextEditor: Make color of non-highlighted line numbers darkerAndreas Kling
2020-01-23GTextEditor: Disable auto-indentation while pastingAndreas Kling
2020-01-23LibGUI: Give GTextDocument access to the GTextEditor during commandsAndreas Kling
2020-01-23LibCore: Remove redundant check in CObject::dispatch_event()Andreas Kling
2020-01-23AK: Let's call decrementing reference counts "unref" instead of "deref"Andreas Kling
2020-01-23LibC: The pwd and grp related functions need to preserve empty fieldsoAndreas Kling
2020-01-22LibGUI: Rename GAbstractColumnView to GAbstractTableViewSergey Bugaev
2020-01-22LibGUI: Let GModel specify the drag data typeSergey Bugaev
2020-01-22LibGUI: Move most of mouse event handling to GAbstractViewSergey Bugaev
2020-01-22LibGUI: Misc tweaksSergey Bugaev
2020-01-22LibGUI: Move index_at_event_position() up to GAbstractViewSergey Bugaev
2020-01-22LibGUI: Add GItemView::index_at_event_position()Sergey Bugaev
2020-01-22LibGUI: Add GListView::index_at_event_position()Sergey Bugaev
2020-01-22LibVT: Input dragged file path into the terminal on dropSergey Bugaev
2020-01-21LibCore: Fix broken "stay_within" mechanism in event dispatchAndreas Kling
2020-01-21LibGUI: Make GDialog accept escape key press eventsAndreas Kling
2020-01-21LibGUI: GFileSystemModel::index() now survives negative inputsAndreas Kling
2020-01-21LibGUI: Fix missing initializer for GColumnsView::m_model_columnAndreas Kling
2020-01-21LibGUI: Import GColorPicker from the PaintBrush applicationAndreas Kling
2020-01-21SystemMonitor: Show process unveil() state as "Veil"Andreas Kling
2020-01-21LibDraw: Remove old PNG_STOPWATCH_DEBUG debug codeAndreas Kling
2020-01-21Kernel+LibC: Clean up open() flag (O_*) definitionsAndreas Kling
2020-01-21Kernel: Make O_RDONLY non-zeroAndreas Kling
2020-01-20Kernel: Add a basic implementation of unveil()Andreas Kling
2020-01-20LibGUI: Use clamp() is various placesAndreas Kling
2020-01-20Kernel+AK: Add/fix uintptr_t and intptr_t definitionsAndreas Kling
2020-01-19LibDraw: Add beginnings of a triangle classShannon Booth
2020-01-18LibC: Use the templated type consistently in strtol_impl<T>Andreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-18LibGUI: Handle "Return" key eventsShannon Booth
2020-01-17LibCore: Make CIODevice::read_all() actually read all dataSergey Bugaev
2020-01-17Kernel+LibC: Unify sys$open() and sys$openat()Sergey Bugaev
2020-01-16Kernel+LibELF: Don't blindly trust ELF symbol offsets in symbolicationAndreas Kling
2020-01-16LibC: Add strnlen()Andreas Kling
2020-01-16LibVT: enforce a minimum size of 1 column and 1 rowjoshua stein