mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 00:27:47 +00:00
FontEditor: Support selection ranges
This makes editing much easier, e.g. you don't need longer to copy hundreds of glyphs one by one. It has some flaws, e.g. it's not integrated with undo stack, but we need to start with something!
This commit is contained in:
parent
ad2551e6b8
commit
1d98499234
Notes:
sideshowbarker
2024-07-17 21:23:40 +09:00
Author: https://github.com/sppmacd
Commit: 1d98499234
Pull-request: https://github.com/SerenityOS/serenity/pull/11621
6 changed files with 283 additions and 163 deletions
|
@ -55,6 +55,11 @@ private:
|
|||
void set_scale(i32);
|
||||
void set_scale_and_save(i32);
|
||||
|
||||
void copy_selected_glyphs();
|
||||
void cut_selected_glyphs();
|
||||
void paste_glyphs();
|
||||
void delete_selected_glyphs();
|
||||
|
||||
RefPtr<Gfx::BitmapFont> m_edited_font;
|
||||
|
||||
RefPtr<GlyphMapWidget> m_glyph_map_widget;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue