mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
8b5ec83c6a
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
145 lines
4.0 KiB
C++
145 lines
4.0 KiB
C++
#if !defined(__XTHEME_H__)
|
|
#define __XTHEME_H__
|
|
|
|
#include "../cpp_foundation/XToolsCommon.h"
|
|
#include "../cpp_foundation/XObjArray.h"
|
|
#include "../cpp_foundation/XString.h"
|
|
#include "libeg.h"
|
|
//#include "nanosvg.h"
|
|
#include "XImage.h"
|
|
|
|
|
|
#define INDICATOR_SIZE (52)
|
|
|
|
class Icon
|
|
{
|
|
public:
|
|
INTN Id; //for example BUILTIN_ICON_POINTER
|
|
XString Name; //for example "os_moja", "vol_internal"
|
|
XImage Image;
|
|
XImage ImageNight;
|
|
|
|
Icon(INTN Id);
|
|
~Icon();
|
|
|
|
// Default are not valid, as usual. We delete them. If needed, proper ones can be created
|
|
Icon(const Icon&) = delete;
|
|
Icon& operator=(const Icon&) = delete;
|
|
};
|
|
|
|
class XTheme
|
|
{
|
|
public:
|
|
XObjArray<Icon> Icons;
|
|
EFI_FILE *ThemeDir;
|
|
|
|
// UINTN DisableFlags;
|
|
UINTN HideBadges;
|
|
UINTN HideUIFlags;
|
|
// BOOLEAN TextOnly;
|
|
FONT_TYPE Font;
|
|
INTN CharWidth;
|
|
UINTN SelectionColor;
|
|
XStringW FontFileName;
|
|
XStringW Theme;
|
|
XStringW BannerFileName;
|
|
XStringW SelectionSmallFileName;
|
|
XStringW SelectionBigFileName;
|
|
XStringW SelectionIndicatorName;
|
|
XStringW DefaultSelection;
|
|
XStringW BackgroundName;
|
|
SCALING BackgroundScale;
|
|
INTN BackgroundSharp;
|
|
BOOLEAN BackgroundDark;
|
|
// BOOLEAN CustomIcons;
|
|
BOOLEAN SelectionOnTop;
|
|
BOOLEAN BootCampStyle;
|
|
INTN BadgeOffsetX;
|
|
INTN BadgeOffsetY;
|
|
INTN BadgeScale;
|
|
INTN ThemeDesignWidth;
|
|
INTN ThemeDesignHeight;
|
|
INTN BannerPosX;
|
|
INTN BannerPosY;
|
|
INTN BannerEdgeHorizontal;
|
|
INTN BannerEdgeVertical;
|
|
INTN BannerNudgeX;
|
|
INTN BannerNudgeY;
|
|
BOOLEAN VerticalLayout;
|
|
BOOLEAN NonSelectedGrey;
|
|
INTN MainEntriesSize;
|
|
INTN TileXSpace;
|
|
INTN TileYSpace;
|
|
// INTN IconFormat;
|
|
BOOLEAN Proportional;
|
|
// BOOLEAN ShowOptimus;
|
|
BOOLEAN embedded;
|
|
BOOLEAN DarkEmbedded;
|
|
BOOLEAN TypeSVG;
|
|
INTN Codepage;
|
|
INTN CodepageSize;
|
|
float Scale;
|
|
float CentreShift;
|
|
INTN row0TileSize;
|
|
INTN row1TileSize;
|
|
UINTN BanHeight;
|
|
INTN LayoutHeight; //it was 376 before
|
|
INTN LayoutBannerOffset;
|
|
INTN LayoutButtonOffset;
|
|
INTN LayoutTextOffset;
|
|
INTN LayoutAnimMoveForMenuX;
|
|
INTN ScrollWidth;
|
|
INTN ScrollButtonsHeight;
|
|
INTN ScrollBarDecorationsHeight;
|
|
INTN ScrollScrollDecorationsHeight;
|
|
|
|
|
|
BOOLEAN Daylight;
|
|
|
|
XImage Background; //Background and Banner will not be in array as they live own life
|
|
XImage BigBack; //it size is not equal to screen size will be scaled or cropped
|
|
XImage Banner; //same as logo in the array, make a link?
|
|
XImage SelectionImages[6];
|
|
XImage Buttons[4];
|
|
XImage ScrollbarBackgroundImage;
|
|
XImage BarStartImage;
|
|
XImage BarEndImage;
|
|
XImage ScrollbarImage;
|
|
XImage ScrollStartImage;
|
|
XImage ScrollEndImage;
|
|
XImage UpButtonImage;
|
|
XImage DownButtonImage;
|
|
|
|
EG_RECT BannerPlace; //TODO exclude BanHeight = BannerPlace.Height
|
|
|
|
//fill the theme
|
|
const XImage& GetIcon(const XString& Name); //get by name
|
|
const XImage& GetIcon(const char* Name);
|
|
const XImage& GetIcon(const CHAR16* Name);
|
|
const XImage& GetIcon(INTN Id); //get by id
|
|
|
|
// void AddIcon(Icon& NewIcon); //return EFI_STATUS?
|
|
void FillByEmbedded();
|
|
void FillByDir();
|
|
EFI_STATUS GetThemeTagSettings(void* DictPointer);
|
|
void parseTheme(void* p, const char** dict); //in nano project
|
|
EFI_STATUS ParseSVGXTheme(CONST CHAR8* buffer); // in VectorTheme
|
|
EFI_STATUS ParseSVGXIcon(void *p, INTN Id, const XString& IconNameX, float Scale, XImage* Image);
|
|
void* LoadTheme(const CHAR16 *TestTheme); //return TagPtr why?
|
|
|
|
//screen operations
|
|
void ClearScreen();
|
|
void FillRectAreaOfScreen(IN INTN XPos, IN INTN YPos, IN INTN Width, IN INTN Height);
|
|
void InitSelection();
|
|
void InitBar();
|
|
|
|
void Init();
|
|
XTheme(); //default constructor
|
|
~XTheme();
|
|
|
|
protected:
|
|
//internal layout variables instead of globals in menu.cpp
|
|
|
|
};
|
|
#endif
|