summaryrefslogtreecommitdiff
path: root/Userland/Applications/FontEditor/FontEditorWindow.gml
AgeCommit message (Collapse)Author
2021-08-27FontEditor: Adjust margins and spacingthankyouverycool
Brings vertical spacing in line with most other apps using ToolbarContainers. Fixes GroupBox margins since CSS ordering change.
2021-07-27FontEditor: Fix minor margin inconsistencyFrHun
2021-07-10FontEditor: Tweak offensive padding :^)Andreas Kling
2021-05-20FontEditor: Add tooltip to "Move Glyph" buttonMax Wipfli
This adds a simple tooltip to the "Move Glyph" button to indicate its functionality.
2021-04-23FontEditor: Set correct mean- and baseline ranges for new fontsthankyouverycool
Fixes out-of-bounds lines in glyph editor
2021-04-23FontEditor: Add move glyph toolthankyouverycool
When toggled on, glyphs can now be repositioned within the glyph editor by dragging the mouse
2021-04-18FontEditor+LibGfx: Allow user to specify if a specific glyph is presentIdan Horowitz
This replaces the glyph width spinbox in the font editor with a checkbox when editing fixed width fonts that indicates if the currently selected character's glyph is present in the edited font (For variable width fonts a non zero width implies presence) This commit also changes the background color of glyphs in the glyph map based on the presence of each specific glyph in the font.
2021-04-13Everywhere: It's now "Foobar", not "FooBar", and not "foo bar"Andreas Kling
I hereby declare these to be full nouns that we don't split, neither by space, nor by underscore: - Breadcrumbbar - Coolbar - Menubar - Progressbar - Scrollbar - Statusbar - Taskbar - Toolbar This patch makes everything consistent by replacing every other variant of these with the proper one. :^)
2021-04-11FontEditor: Move menu bar into editor and tweak several widgetsthankyouverycool
Actions are now shared between menu bar and toolbar. Adds an edit menu to complement toolbar actions. Glyphs are now passed as ints instead of u8s; fixes Latin Extended+ glyphs failing to update in real time on map. Converts weight and type to more human-readable combo box lists. Selected glyph now scrolls into view on load.
2021-04-06FontEditor: Convert to GML and add new edit commands to GlyphEditorthankyouverycool
Adds cut, copy, paste and delete to GlyphEditor. Font preview has moved to a separate resizable ToolWindow. Font metadata can now be hidden. FontEditor and glyph widgets can now be re-initialized instead of resetting window's main widget after loading new fonts.