summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2019-08-14GTableView: Add a way to customize cell painting per-columnAndreas Kling
2019-08-14StylePainter: Move progress bar painting from GProgressBar to hereAndreas Kling
2019-08-14GJsonArrayModel: Add hook for customizing the GModel::Role::Custom dataAndreas Kling
2019-08-14Libraries: Add LibPCIDB for reading PCI device information from pci.idsConrad Pankoff
2019-08-13LibVT: Shave down VT::Attribute from 8 bytes to 3 bytesAndreas Kling
2019-08-13LibVT: Rename VT::BufferPosition to VT::Position and move to own fileAndreas Kling
2019-08-12Kernel+LibC+crash: Add mprotect() syscallAndreas Kling
2019-08-12GButton: Allow non-checkable buttons to render as checkedAndreas Kling
2019-08-12LibVT: Factor out terminal emulation from Terminal to make it reusableAndreas Kling
2019-08-12GJsonArrayModel: Add hook to customize what comes out of GModel::SortAndreas Kling
2019-08-12GTableView and friends: API improvements for 'Sortable' flag.Ignas S
2019-08-12GDirectoryModel: prevent sorting by icons.Ignas S
2019-08-12GTableView: add 'sortable' column header flag.Ignas S
2019-08-11GSortingProxyModel: Sort case insensitively by default (#441)ignas-sa
2019-08-11GScrollBar: highlight the scrubber while it's in use.Ignas S
2019-08-10LibCore: Use URL in CHttpRequestAndreas Kling
2019-08-10AK: Add a basic URL class to help us handle URL'sAndreas Kling
2019-08-10GJsonArrayModel: Support fields that aren't tied to a single JSON valueAndreas Kling
2019-08-10GJsonArrayModel: Add an optional "massage_for_display" fieldspec hookAndreas Kling
2019-08-10LibGUI: Add GJsonArrayModel, a simple JSON-data-file-as-GModel helperAndreas Kling
2019-08-10LibM: Implement sqrt()Sergey Bugaev
2019-08-09GLabel: Repaint immediately on icon changeAndreas Kling
2019-08-09GFilePicker: Make double-clicking actually choose/pick the fileAndreas Kling
2019-08-09Painter: Fix off-by-one in bounding rects for right-aligned textAndreas Kling
2019-08-09GTableView: Add a mode for automatically sizing column to fit contentAndreas Kling
2019-08-08GTableView: Debug-log the current column width while resizingAndreas Kling
2019-08-06LibCore: Initialise m_port as zero in CSocketAddressConrad Pankoff
2019-08-05GComboBox: Make set_only_allow_values_from_model() actually take effectAndreas Kling
2019-08-05GComboBox: Include the selected index with the on_change notificationAndreas Kling
2019-08-05LibGUI: Allow specifying the model column for GListView and GComboBoxAndreas Kling
2019-08-05GComboBox: Constrain the list popup window height to the desktop rectAndreas Kling
2019-08-05CEventLoop: Create the wake pipe with O_CLOEXECSergey Bugaev
2019-08-05Kernel+LibC: Support passing O_CLOEXEC to pipe()Sergey Bugaev
2019-08-05LibCore: Add CTCPServerConrad Pankoff
2019-08-04LibCore: Move CHttpJob and CNetworkJob output to the right placesAndreas Kling
2019-08-04CSocket: Close the underlying socket on destructionAndreas Kling
2019-08-04CHttpJob: Drive response download via on_ready_read instead of blockingAndreas Kling
2019-08-04LibC: Define SIZE_MAXConrad Pankoff
2019-08-04CHttpJob: Collect the payload as a list of buffers during downloadAndreas Kling
2019-08-04CHttpJob: If no "Content-Length" header was received, read until EOFAndreas Kling
2019-08-04LibDraw: Add Font::default_bold_fixed_width_font()Andreas Kling
2019-08-03AudioServer: Port to the new generated IPC mechanismAndreas Kling
2019-08-03IPCCompiler: More work towards AudioServer bringupAndreas Kling
2019-08-03IPCCompiler: Generate getters for message ID's and message namesAndreas Kling
2019-08-03LibIPC: Start fleshing out a separate IPC libraryAndreas Kling
2019-08-03GWidget: Implement set_backcolor() and set_forecolor()Andreas Kling
2019-08-03GVariant: Try to do color string parsing in GVariant::to_color()Andreas Kling
2019-08-03LibDraw: Add Color::from_string(StringView)Andreas Kling
2019-08-03LibCore: Make get_current_user_home_path() return String & close passwdAndreas Kling
2019-08-02LibGUI: Allow setting window icon before show().rhin123