mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:37:46 +00:00
HexEditor: Port HexEditor to GML compilation
This commit is contained in:
parent
bcec05a7cb
commit
935aaab757
15 changed files with 147 additions and 51 deletions
23
Userland/Applications/HexEditor/GoToOffsetWidget.h
Normal file
23
Userland/Applications/HexEditor/GoToOffsetWidget.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2023, the SerenityOS developers
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGUI/Widget.h>
|
||||
|
||||
namespace HexEditor {
|
||||
|
||||
class GoToOffsetWidget : public GUI::Widget {
|
||||
C_OBJECT_ABSTRACT(GoToOffsetWidget)
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<GoToOffsetWidget>> try_create();
|
||||
virtual ~GoToOffsetWidget() override = default;
|
||||
|
||||
private:
|
||||
GoToOffsetWidget() = default;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue