diff options
Diffstat (limited to 'Public/Kits/System.Graphics/Stylesheet.hxx')
| -rw-r--r-- | Public/Kits/System.Graphics/Stylesheet.hxx | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/Public/Kits/System.Graphics/Stylesheet.hxx b/Public/Kits/System.Graphics/Stylesheet.hxx deleted file mode 100644 index f4106a7b..00000000 --- a/Public/Kits/System.Graphics/Stylesheet.hxx +++ /dev/null @@ -1,50 +0,0 @@ -/* ------------------------------------------- - - Copyright Mahrouss Logic - - File: Stylesheet.hxx - Purpose: - - Revision History: - - 08/02/24: Added file (amlel) - -------------------------------------------- */ - -#pragma once - -/// TODO: Stylesheets for GUI. - -#include <System.Graphics/Core.hxx> -#include <System.Graphics/Dim2d.hxx> -#include <NewKit/MutableArray.hpp> - -namespace HCore { -class G_API GStylesheet final { - public: - explicit GStylesheet() = default; - ~GStylesheet() = default; - - HCORE_COPY_DEFAULT(GStylesheet); - - MutableArray<StringView>& Props() { return mProps; } - - private: - MutableArray<StringView> mProps; -}; - -class StylesheetParser final { - public: - static MutableArray<GStylesheet> FromBlob(Char* Blob, SizeT BlobSz) { - MutableArray<GStylesheet> stylesheet; - - if (!Blob || BlobSz < 1) return stylesheet; - - for (auto BlobIndex = 0UL; BlobIndex < BlobSz; ++BlobIndex) { - - } - - return stylesheet; - } -}; -} // namespace HCore |
