summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-05-08Replace various copies of parse_uint(String) with String::to_uint().Andreas Kling
2019-05-08Added killall command (#30)GuillaumeGas
2019-05-08Toolchain: Make sure everything ends up in the right place in Root/Andreas Kling
2019-05-08GGroupBox: Rename "name" property to "title"Andreas Kling
2019-05-08Move VisualBuilder into a new DevTools directory.Andreas Kling
2019-05-08GTextEditor: Add a readonly mode.Andreas Kling
2019-05-08VisualBuilder: Add a simple mechanism to write a form out to disk.Andreas Kling
2019-05-08CIODevice: Add some basic output facilities: write() and printf().Andreas Kling
2019-05-08GEventLoop: Calm down with the Vector inline capacity for messages.Andreas Kling
2019-05-08GWindow: Mirror the correct number of pixels to newly created back bitmaps.Andreas Kling
2019-05-08GTableView: Fix crash on mousemove when no model is assigned.Andreas Kling
2019-05-08GraphicsBitmap: size_in_bytes() was overshooting by 4x, oops!Andreas Kling
2019-05-08HelloWorld: Add a simple "Hello World!" app showing the basics.Andreas Kling
2019-05-08GApplication: quit() should have a default exit code of 0.Andreas Kling
2019-05-07VisualBuilder: Add a way to dump the current form to the debugger.Andreas Kling
2019-05-07GSpinBox: Add class_name() override.Andreas Kling
2019-05-07ProcessManager: Draw the graphs as lines.Andreas Kling
2019-05-07WindowServer: Don't launch a terminal when clicking system menu separators.Andreas Kling
2019-05-07Painter: Support diagonal lines with dy>dx, and apply clipping as well.Andreas Kling
2019-05-07GTabWidget: Fill the entire tab widget instead of just the bar.Andreas Kling
2019-05-07Painter: Remove unused draw_focus_rect().Andreas Kling
2019-05-07ProcessManager: Tweak default column widths.Andreas Kling
2019-05-07AK: Add InlineLinkedList::remove_tail().Andreas Kling
2019-05-07GTabWidget: Tweak appearance.Andreas Kling
2019-05-07GTabWidget: Highlight tab buttons when hovered.Andreas Kling
2019-05-07Shell: Make ^W and ^U work when cursor is not at the end of the line.Andreas Kling
2019-05-07Shell: Support home/end keys for line editing.Andreas Kling
2019-05-07Shell: Support basic line editing with left/right arrow keys.Andreas Kling
2019-05-07WindowServer: Don't invalidate the cursor on left button state change.Andreas Kling
2019-05-07Shell: Ignore tab key for now.Andreas Kling
2019-05-07Shell: Allow browsing history with up/down arrow keys.Andreas Kling
2019-05-07Shell: Add "history" command that shows command history.Andreas Kling
2019-05-07Shell: Move line editing to a separate class.Andreas Kling
2019-05-07Shell: Move the Shell to a separate directory and let's call it "Shell" :^)Andreas Kling
2019-05-07Shell: Use a Vector<char> for the main input buffer.Andreas Kling
2019-05-06GTableView: Make column resizing work when view is scrolled horizontally.Andreas Kling
2019-05-06GTextEditor: set_cursor() should gracefully handle old cursor being invalid.Andreas Kling
2019-05-06Kernel: Dump backtrace on exit() syscall.Andreas Kling
2019-05-06GraphicsBitmap: Add non-const overload of bits().Andreas Kling
2019-05-06GraphicsBitmap: Add a new "Indexed8" format that uses a 256-entry palette.Andreas Kling
2019-05-06Make sure all GraphicsBitmap scanlines are 16-byte aligned.Andreas Kling
2019-05-06AK: Change HashTable and HashMap size/capacity to be ints.Andreas Kling
2019-05-06Minesweeper: Flag unflagged mines on win.Andreas Kling
2019-05-06ProcessManager: Use the same margins for both CPU and memory graph.Andreas Kling
2019-05-06ProcessManager: Add CPU/memory usage graphs in a separate tab.Andreas Kling
2019-05-06Color: Add named color "Cyan"Andreas Kling
2019-05-05ProcessManager+LibGUI: Tweak things to improve ProcessManager look.Andreas Kling
2019-05-05GTabWidget: Paint a frame around the container part of the widget.Andreas Kling
2019-05-05GTabWidget: Make a custom look for tab buttons.Andreas Kling
2019-05-05LibGUI: Start working on a tabbed widget container: GTabWidget.Andreas Kling