mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-13 10:04:04 +01:00
0eb9528089
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
103 lines
2.5 KiB
C++
103 lines
2.5 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 "XImage.h"
|
|
|
|
class Icon
|
|
{
|
|
public:
|
|
INTN Id; //for example BUILTIN_ICON_POINTER
|
|
XString Name; //for example "os_moja", "vol_internal"
|
|
XImage ImageNight;
|
|
XImage Image;
|
|
|
|
Icon(INTN Id);
|
|
~Icon();
|
|
|
|
};
|
|
|
|
class XTheme
|
|
{
|
|
public:
|
|
XObjArray<Icon> Icons;
|
|
|
|
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;
|
|
UINTN 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 DarkEmbedded;
|
|
BOOLEAN TypeSVG;
|
|
INTN Codepage;
|
|
INTN CodepageSize;
|
|
float Scale;
|
|
float CentreShift;
|
|
INTN row0TileSize;
|
|
INTN row1TileSize;
|
|
INTN BanHeight;
|
|
INTN LayoutHeight; //it was 376 before
|
|
|
|
void Init();
|
|
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?
|
|
|
|
//fill the theme
|
|
XImage& GetIcon(XStringW& Name, BOOLEAN Night); //get by name
|
|
XImage& GetIcon(INTN Id, BOOLEAN Night); //get by id
|
|
|
|
void AddIcon(Icon& NewIcon); //return EFI_STATUS?
|
|
void FillByEmbedded();
|
|
|
|
//screen operations
|
|
void ClearScreen();
|
|
VOID FillRectAreaOfScreen(IN INTN XPos, IN INTN YPos, IN INTN Width, IN INTN Height);
|
|
|
|
XTheme(); //default constructor
|
|
~XTheme();
|
|
|
|
protected:
|
|
//internal layout variables instead of globals in menu.cpp
|
|
|
|
};
|
|
#endif
|