summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-05-25LibGUI: Notify widgets when their enabled state changes.Andreas Kling
2019-05-25WindowServer: Don't draw titlebar separator for titlebar-less windows.Andreas Kling
2019-05-25LibGUI: Elide the text in GCheckBox and GRadioButton when low on space.Andreas Kling
2019-05-25StylePainter: Remove some unused code.Andreas Kling
2019-05-24WindowServer: Make it possible to turn off window title bars (#88)Christopher Dumas
2019-05-24GSlider: Ignore mouse events when disabled.Andreas Kling
2019-05-24GLabel: Paint the text with a disabled look when appropriate.Andreas Kling
2019-05-24LibGUI: When tabbing between focusable widgets, skip over disabled ones.Andreas Kling
2019-05-24LibGUI: Share code for text painting in GAbstractButton.Andreas Kling
2019-05-24Demos: Start working on a simple WidgetGallery app.Andreas Kling
2019-05-24WindowServer: Remove some unused WSWindowManager members.Andreas Kling
2019-05-24Launcher loads applications from Launcher.ini, is started by default, and is ...Christopher Dumas
2019-05-24WindowServer: Factor out compositing from WSWindowManager into WSCompositor.Andreas Kling
2019-05-24GRadioButton: Draw a focus rect when focused.Andreas Kling
2019-05-24LibGUI: Make GCheckBox inherit from GAbstractButton.Andreas Kling
2019-05-24LibGUI: Add a GAbstractButton base class for button widgets.Andreas Kling
2019-05-24WindowServer: Add 2560x1440 resolution option.Andreas Kling
2019-05-24LibGUI: Don't crash when updating menu item that's not in the window server (...Christopher Dumas
2019-05-24Kernel: Tidy up IDEDiskDevice a bit.Andreas Kling
2019-05-24LibGUI: Add a GRadioButton widget.Andreas Kling
2019-05-24Added functionality to make back and forward buttons work in FileManager. AlsoChristopher Dumas
2019-05-23Always run QEMU with -debugcon stdio.Andreas Kling
2019-05-23Kernel: Return ENOSYS if an invalid syscall number is requested.Andreas Kling
2019-05-23Kernel/AK: Move ELF loader to AKRobin Burchell
2019-05-23LibC: Stub out dlfcnRobin Burchell
2019-05-23Kernel: getpeername() should fail with ENOTCONN for non-connected sockets.Andreas Kling
2019-05-23LibC: The "install" target should depend on the "startfiles" target.Andreas Kling
2019-05-23LibC: Port setjmp syntax to avoid nasm dependencyRobin Burchell
2019-05-22Kernel: Forked children should inherit their RangeAllocator by copy.Andreas Kling
2019-05-22Kernel: If a signal is ignored, make sure we unset BlockedSignal state.Andreas Kling
2019-05-22Kernel: Dump backtrace on illegal opcode exception.Andreas Kling
2019-05-22LibC: Some compat fixes for GNU make.Andreas Kling
2019-05-22LibC: Implement wait() as a wrapper around waitpid().Andreas Kling
2019-05-21LibC: First pass of compat work / stubs while trying to build OpenSSL.Andreas Kling
2019-05-21GWindow: Only flip the window backing stores once per paint event.Andreas Kling
2019-05-21WindowServer: Don't eat a MouseUp when producing a MouseDoubleClickRobin Burchell
2019-05-21Kernel: Bump kernel stacks to 64 KB.Andreas Kling
2019-05-21AK: Always inline convert_between_host_and_network<T>.Andreas Kling
2019-05-21LibC: Oops, forgot to commit sigsuspend() prototype.Andreas Kling
2019-05-21LibC: Add htonl() and ntohl().Andreas Kling
2019-05-21LibC: Add sigsuspend() stub.Andreas Kling
2019-05-21AK: Add some more features to Vector iterators.Andreas Kling
2019-05-20Kernel: Add getpeername() syscall, and fix getsockname() behavior.Andreas Kling
2019-05-20Socket: Fix missing kprintf() args in setsockopt().Andreas Kling
2019-05-20WindowServer: Don't start window resize for MouseUp or MouseMove.Andreas Kling
2019-05-20Kernel: Let PageDirectory own the associated RangeAllocator.Andreas Kling
2019-05-20WindowServer: Convert some assertions into client did_misbehave()'s.Andreas Kling
2019-05-20WindowServer: Use blocking sockets for client connections.Andreas Kling
2019-05-20LocalSocket: Make send() and sendto() work, too.Andreas Kling
2019-05-20LocalSocket: Bump internal buffer sizes to 16KB.Andreas Kling