summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/Modules/CoreCG/Accessibility.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/Modules/CoreCG/Accessibility.hxx')
-rw-r--r--dev/Kernel/Modules/CoreCG/Accessibility.hxx49
1 files changed, 0 insertions, 49 deletions
diff --git a/dev/Kernel/Modules/CoreCG/Accessibility.hxx b/dev/Kernel/Modules/CoreCG/Accessibility.hxx
deleted file mode 100644
index 743b81ee..00000000
--- a/dev/Kernel/Modules/CoreCG/Accessibility.hxx
+++ /dev/null
@@ -1,49 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
-------------------------------------------- */
-
-#ifndef __CORECG_ACCESS_HXX__
-#define __CORECG_ACCESS_HXX__
-
-#include <NewKit/NewKit.hxx>
-#include <KernelKit/LPC.hxx>
-#include <Modules/CoreCG/FbRenderer.hxx>
-#include <Modules/CoreCG/Lerp.hxx>
-#include <ArchKit/ArchKit.hxx>
-
-namespace Kernel
-{
- inline Bool cKTSyncCall = false;
-
- inline float cDeviceWidthAlert = 150;
- inline float cDeviceHeightAlert = 141;
-
- /// @brief common user interface class.
- class UIAccessibilty final
- {
- explicit UIAccessibilty() = default;
-
- public:
- NEWOS_COPY_DELETE(UIAccessibilty);
-
- static UIAccessibilty& The()
- {
- static UIAccessibilty the;
- return the;
- }
-
- Int64 Width() noexcept
- {
- return kHandoverHeader->f_GOP.f_Width;
- }
-
- Int64 Height() noexcept
- {
- return kHandoverHeader->f_GOP.f_Height;
- }
- };
-} // namespace Kernel
-
-#endif // !__CORECG_ACCESS_HXX__