toaruos/lib
2021-10-04 20:31:30 +09:00
..
kuroko kuroko: _yutani: expose shm font support 2021-08-28 17:40:41 +09:00
auth.c groups: First pass at support for supplementary group lists 2021-08-31 20:46:48 +09:00
button.c text: bring back shm-stored fonts provided by compositor 2021-08-28 14:50:52 +09:00
confreader.c
decor-fancy.c decorations: try to be a bit smarter about drawing titlebar elements 2021-09-13 19:39:04 +09:00
decorations.c compositor: Add I-beam cursor; logic in terminal, file-browser 2021-09-16 16:55:43 +09:00
graphics.c graphics: fixup aa line rasterizer 2021-10-04 15:04:34 +09:00
hashmap.c misaka: initial merge 2021-05-31 10:54:11 +09:00
icon_cache.c
inflate.c
jpeg.c misaka: initial merge 2021-05-31 10:54:11 +09:00
json.c
kbd.c kbd: Catch different scancode from PrtSc key 2021-08-30 18:05:59 +09:00
list.c
markup_text.c text: bring back shm-stored fonts provided by compositor 2021-08-28 14:50:52 +09:00
markup.c markup: fix bad malloc 2021-07-27 09:53:06 +09:00
menu.c menu: Really, seriously don't show menus before moving them 2021-08-19 00:13:03 +09:00
pex.c pex: Actually try to close server endpoints 2021-09-12 13:23:38 +09:00
png.c
README.md lib: update docs 2021-07-07 17:17:55 +09:00
rline_exp.c
rline.c rline: stop highlighting numbers in the middle of words 2021-06-19 16:46:46 +09:00
termemu.c misaka: initial merge 2021-05-31 10:54:11 +09:00
text.c text: Expose method for brute-force path stroke 2021-10-04 20:31:30 +09:00
tree.c
yutani.c compositor: Add I-beam cursor; logic in terminal, file-browser 2021-09-16 16:55:43 +09:00

ToaruOS System Libraries

These are the core system libraries of ToaruOS. Where functionality isn't expected in the C standard library, these provide additional features that are shared by multiple ToaruOS applications.

toaru_auth

Provides password validation and login helper methods. Exists primarily because libc doesn't have these things and there are multiple places where logins are checked (login, glogin, sudo, gsudo...).

toaru_button

Renderer for button widgets. Not really a widget library at the moment.

toaru_confreader

Implements a basic INI parser for use with configuration files.

toaru_decorations

Client-side decoration library for the compositor. Supports pluggable decoration themes through additional libraries, which are named as libtoaru_decor-....

toaru_graphics

General-purpose 2D drawing and pixel-pushing library. Provides sprite blitting, rotation, scaling, etc.

toaru_hashmap

Generic hashmap implementation. Also used by the kernel.

toaru_iconcache

Convenience library for loading icons at specific sizes.

toaru_inflate

Decompression library for DEFLATE payloads.

toaru_jpeg

Minimal, incomplete JPEG decoder. Mostly used for providing wallpapers. Doesn't support most JPEG features.

toaru_kbd

Keyboard scancode parser.

toaru_list

Generic expandable linked list implementation.

toaru_markup

XML-like syntax parser.

toaru_menu

Menu widget library. Used for the "Applications" menu, context menus, etc.

toaru_pex

Userspace library for using the ToaruOS "packetfs" subsystem, which provides packet-based IPC.

toaru_png

Decoder for Portable Network Graphics images.

toaru_rline

Rich line editor for terminal applications, with support for tab completion and syntax highlighting.

toaru_termemu

Terminal ANSI escape processor.

toaru_text

TrueType font parser and text renderer.

toaru_tree

Generic tree implementation. Also used by the kernel.

toaru_yutani

Compositor client library, used to build GUI applications.