1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:17:36 +00:00

HexEditor: Port HexEditor to GML compilation

This commit is contained in:
tetektoza 2023-09-28 17:06:49 +02:00 committed by Tim Schumacher
parent bcec05a7cb
commit 935aaab757
15 changed files with 147 additions and 51 deletions

View file

@ -21,6 +21,8 @@
#include <LibGfx/Font/Font.h>
#include <LibGfx/TextAlignment.h>
namespace HexEditor {
class HexEditor : public GUI::AbstractScrollableWidget {
C_OBJECT(HexEditor)
public:
@ -111,3 +113,5 @@ private:
void reset_cursor_blink_state();
};
}