summaryrefslogtreecommitdiffhomepage
path: root/dev/Mod/CoreGfx/AccessibilityMgr.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-23 19:13:48 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-23 19:15:17 +0100
commita13e1c0911c0627184bc38f18c7fdda64447b3ad (patch)
tree073a62c09bf216e85a3f310376640fa1805147f9 /dev/Mod/CoreGfx/AccessibilityMgr.h
parent149fa096eb306d03686b3b67e813cf1a78e08cd0 (diff)
meta(kernel): Reworked repository's filesystem structure.
Removing useless parts of the project too. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Mod/CoreGfx/AccessibilityMgr.h')
-rw-r--r--dev/Mod/CoreGfx/AccessibilityMgr.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev/Mod/CoreGfx/AccessibilityMgr.h b/dev/Mod/CoreGfx/AccessibilityMgr.h
deleted file mode 100644
index 58054a89..00000000
--- a/dev/Mod/CoreGfx/AccessibilityMgr.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* -------------------------------------------
-
- Copyright Amlal EL Mahrouss.
-
-------------------------------------------- */
-
-#ifndef GFX_MGR_ACCESSIBILITY_H
-#define GFX_MGR_ACCESSIBILITY_H
-
-#include <NewKit/NewKit.h>
-#include <KernelKit/LPC.h>
-#include <Mod/CoreGfx/FBMgr.h>
-#include <Mod/CoreGfx/MathMgr.h>
-#include <ArchKit/ArchKit.h>
-
-namespace FB
-{
- using namespace NeOS;
-
- /// @brief common User interface class.
- class UIAccessibilty final
- {
- explicit UIAccessibilty() = default;
- ~UIAccessibilty() = default;
-
- public:
- NE_COPY_DELETE(UIAccessibilty);
-
- static Int64 Width() noexcept
- {
- return kHandoverHeader->f_GOP.f_Width;
- }
-
- static Int64 Height() noexcept
- {
- return kHandoverHeader->f_GOP.f_Height;
- }
- };
-} // namespace FB
-
-#endif // !GFX_MGR_ACCESSIBILITY_H_