summaryrefslogtreecommitdiff
path: root/Applications/FontEditor/GlyphEditorWidget.h
AgeCommit message (Collapse)Author
2019-09-21LibGUI: Convert remaining random little things to ObjectPtrAndreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
These types can be picked up by including <AK/Types.h>: * u8, u16, u32, u64 (unsigned) * i8, i16, i32, i64 (signed)
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh.
2019-05-15LibGUI: Support cycling through focusable widgets with Tab and Shift-Tab.Andreas Kling
2019-04-10FontEditor: Convert the glyph map and editor widgets to be GFrames.Andreas Kling
2019-04-06FontEditor: Remove weird focus rects and optimize repaint while drawing.Andreas Kling
I added focus rects to these widgets because I had just started working on focus support and I was excited but it doesn't really make sense for these things to have focus rects. :^) While I was here I also optimized the repaint code to only update the edited glyph in the glyph map when editing its pixels.
2019-04-03FontEditor: Break out classes into separate files.Andreas Kling