ladybird/Userland/Libraries/LibGfx
Sam Atkins 4f42e4ba90 LibGfx: Add 'IsDark' flag to SystemTheme and Palette
This explicitly states whether a given theme is a dark theme, so that
applications not using the system palette colors can still attempt to
match the overall theme.
2021-10-31 18:39:13 +01:00
..
Filters LibGfx: Move FastBoxBlurFilter to its own .cpp file 2021-09-17 13:20:18 +02:00
TrueTypeFont LibGUI: Add missing headers 2021-10-06 23:52:40 +01:00
AffineTransform.cpp
AffineTransform.h
AntiAliasingPainter.cpp LibGfx: Implement cubic bezier curves by splitting them to subcurves 2021-09-18 02:12:38 +04:30
AntiAliasingPainter.h LibGfx: Implement cubic bezier curves by splitting them to subcurves 2021-09-18 02:12:38 +04:30
Bitmap.cpp LibGfx: Add method to load bitmap from fd 2021-09-09 02:34:29 +02:00
Bitmap.h LibGfx: Add method to load bitmap from fd 2021-09-09 02:34:29 +02:00
BitmapFont.cpp LibGfx: Add a simple Gfx::FontMetrics and Gfx::Font::metrics(code_point) 2021-09-24 15:01:49 +02:00
BitmapFont.h LibGfx: Make BitmapFont::variant() report a complete typeface 2021-09-24 14:59:39 +02:00
BMPLoader.cpp LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
BMPLoader.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
BMPWriter.cpp Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safe 2021-09-06 01:53:26 +02:00
BMPWriter.h
CharacterBitmap.cpp
CharacterBitmap.h
ClassicStylePainter.cpp LibGfx+WindowServer: Move shadow-painting code to StylePainter 2021-10-28 11:23:44 +02:00
ClassicStylePainter.h LibGfx+WindowServer: Move shadow-painting code to StylePainter 2021-10-28 11:23:44 +02:00
ClassicWindowTheme.cpp
ClassicWindowTheme.h
CMakeLists.txt LibGfx: Start a very basic anti-aliased Painter implementation 2021-09-18 02:12:38 +04:30
Color.cpp LibGfx: Make Color::from_string() case-insensitive 2021-10-24 22:12:35 +02:00
Color.h LibGfx: Make Color use east-const 2021-10-24 22:12:35 +02:00
CursorParams.cpp WindowServer+LibGfx: Move CursorParams to LibGfx 2021-08-23 01:41:53 +02:00
CursorParams.h WindowServer+LibGfx: Move CursorParams to LibGfx 2021-08-23 01:41:53 +02:00
DDSLoader.cpp Libraries: Fix -Wunreachable-code warnings from clang 2021-10-08 23:33:46 +02:00
DDSLoader.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
DisjointRectSet.cpp
DisjointRectSet.h
Emoji.cpp
Emoji.h
FillPathImplementation.h LibWeb: Use Gfx::AntiAliasingPainter to draw SVG paths 2021-09-18 02:12:38 +04:30
Font.h LibGfx: Add a simple Gfx::FontMetrics and Gfx::Font::metrics(code_point) 2021-09-24 15:01:49 +02:00
FontDatabase.cpp LibGfx: Remove debug spam about not having some font installed 2021-09-24 15:01:49 +02:00
FontDatabase.h
FontStyleMapping.h LibGUI: Add missing headers 2021-10-06 23:52:40 +01:00
Forward.h LibGfx: Forward declare Gfx::FontMetrics as a struct 2021-09-24 19:03:46 +02:00
Gamma.h
GIFLoader.cpp LibGfx: Restrict cleared area to GIF framebuffer 2021-10-22 20:37:27 +01:00
GIFLoader.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
ICOLoader.cpp LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
ICOLoader.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
ImageDecoder.cpp
ImageDecoder.h
JPGLoader.cpp LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
JPGLoader.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
Line.h LibGUI: Add missing headers 2021-10-06 23:52:40 +01:00
Matrix.h LibGfx: Implement copy-assign for Matrix 2021-10-10 21:03:27 +01:00
Matrix4x4.h
Orientation.h
Painter.cpp LibGFX: Draw the ends of lines with non-standard thickness 2021-10-02 20:54:47 +02:00
Painter.h LibGfx: Add optional bilinear filtering to draw_scaled_bitmap() 2021-09-20 22:18:20 +02:00
Palette.cpp LibGfx: Add 'IsDark' flag to SystemTheme and Palette 2021-10-31 18:39:13 +01:00
Palette.h LibGfx: Add 'IsDark' flag to SystemTheme and Palette 2021-10-31 18:39:13 +01:00
Path.cpp LibGfx: Implement cubic bezier curves by splitting them to subcurves 2021-09-18 02:12:38 +04:30
Path.h LibGfx: Implement cubic bezier curves by splitting them to subcurves 2021-09-18 02:12:38 +04:30
PBMLoader.cpp LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
PBMLoader.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
PGMLoader.cpp LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
PGMLoader.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
PNGLoader.cpp LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
PNGLoader.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
PNGWriter.cpp Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safe 2021-09-06 01:53:26 +02:00
PNGWriter.h
Point.cpp LibGfx+PixelPaint: Add Point::end_point_for_aspect_ratio method 2021-09-17 11:54:13 +02:00
Point.h LibGfx: Add Point<T>::to_rounded<U>() 2021-09-18 12:21:42 +02:00
PortableImageLoaderCommon.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
PPMLoader.cpp LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
PPMLoader.h LibGfx: Move common loader functionality to load from memory functions 2021-09-09 02:34:29 +02:00
Rect.cpp
Rect.h LibGfx: Add rounded_int_rect() function for Rects 2021-09-21 16:53:46 +02:00
ShareableBitmap.cpp
ShareableBitmap.h
Size.cpp
Size.h
StandardCursor.h Cursors: Add new Magnifying glass cursor 2021-09-04 03:35:23 +02:00
Streamer.h Everywhere: Fix more Copyright header inconsistencies 2021-10-04 11:10:09 +01:00
StylePainter.cpp LibGfx+WindowServer: Move shadow-painting code to StylePainter 2021-10-28 11:23:44 +02:00
StylePainter.h LibGfx+WindowServer: Move shadow-painting code to StylePainter 2021-10-28 11:23:44 +02:00
SystemTheme.cpp LibGfx: Add 'IsDark' flag to SystemTheme and Palette 2021-10-31 18:39:13 +01:00
SystemTheme.h LibGfx: Add 'IsDark' flag to SystemTheme and Palette 2021-10-31 18:39:13 +01:00
TextAlignment.h
TextAttributes.h
TextDirection.cpp
TextDirection.h LibGUI: Add missing headers 2021-10-06 23:52:40 +01:00
TextElision.h
TextLayout.cpp
TextLayout.h
TextWrapping.h
Triangle.cpp
Triangle.h
Typeface.cpp LibGfx: Use move to avoid unnecessary ref/unref of network device RefPtr 2021-09-16 17:17:13 +02:00
Typeface.h
Vector2.h
Vector3.h
Vector4.h
WindowTheme.cpp
WindowTheme.h