mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-25 16:37:42 +01:00
use builtin icons when not theme provided
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
This commit is contained in:
parent
2971779ddf
commit
3ba2ecd0fc
@ -1151,6 +1151,7 @@ UINTN REFIT_MENU_SCREEN::RunGenericMenu(IN MENU_STYLE_FUNC StyleFunc, IN OUT INT
|
|||||||
|
|
||||||
case SCAN_F9:
|
case SCAN_F9:
|
||||||
SetNextScreenMode(1);
|
SetNextScreenMode(1);
|
||||||
|
egGetScreenSize(&UGAWidth, &UGAHeight); //before init theme
|
||||||
InitTheme(FALSE, NULL);
|
InitTheme(FALSE, NULL);
|
||||||
break;
|
break;
|
||||||
case SCAN_F10:
|
case SCAN_F10:
|
||||||
@ -1622,7 +1623,7 @@ VOID REFIT_MENU_SCREEN::DrawMenuText(IN XStringW& Text, IN INTN SelectedWidth, I
|
|||||||
} else {
|
} else {
|
||||||
egRenderText(Text, &TextBufferX, TEXT_XMARGIN, TEXT_YMARGIN, Cursor, TextStyle);
|
egRenderText(Text, &TextBufferX, TEXT_XMARGIN, TEXT_YMARGIN, Cursor, TextStyle);
|
||||||
}
|
}
|
||||||
SelectionBar.Compose(0, 0, TextBufferX, true);
|
SelectionBar.Compose(0, 0, TextBufferX, false);
|
||||||
// TextBufferX.DrawWithoutCompose(XPos, YPos);
|
// TextBufferX.DrawWithoutCompose(XPos, YPos);
|
||||||
SelectionBar.DrawWithoutCompose(XPos, YPos);
|
SelectionBar.DrawWithoutCompose(XPos, YPos);
|
||||||
}
|
}
|
||||||
@ -2746,7 +2747,7 @@ VOID REFIT_MENU_SCREEN::MainMenuVerticalStyle(IN UINTN Function, IN CONST CHAR16
|
|||||||
switch (Function) {
|
switch (Function) {
|
||||||
|
|
||||||
case MENU_FUNCTION_INIT:
|
case MENU_FUNCTION_INIT:
|
||||||
egGetScreenSize(&UGAWidth, &UGAHeight);
|
egGetScreenSize(&UGAWidth, &UGAHeight); //do this when needed
|
||||||
InitAnime();
|
InitAnime();
|
||||||
SwitchToGraphicsAndClear();
|
SwitchToGraphicsAndClear();
|
||||||
//BltClearScreen(FALSE);
|
//BltClearScreen(FALSE);
|
||||||
|
@ -479,14 +479,29 @@ EFI_STATUS XTheme::ParseSVGXTheme(CONST CHAR8* buffer)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Icon* NewIcon = new Icon(i, false); //initialize without embedded
|
Icon* NewIcon = new Icon(i, false); //initialize without embedded
|
||||||
/*Status = */ParseSVGXIcon(mainParser, i, NewIcon->Name, Scale, &NewIcon->Image);
|
Status = ParseSVGXIcon(mainParser, i, NewIcon->Name, Scale, &NewIcon->Image);
|
||||||
|
if (EFI_ERROR(Status) &&
|
||||||
|
(i >= BUILTIN_ICON_VOL_INTERNAL_HFS) &&
|
||||||
|
(i <= BUILTIN_ICON_VOL_INTERNAL_REC)) {
|
||||||
|
NewIcon->Image = GetIcon(BUILTIN_ICON_VOL_INTERNAL); //copy existing
|
||||||
|
}
|
||||||
// DBG("parse %s status %s\n", NewIcon->Name.c_str(), strerror(Status));
|
// DBG("parse %s status %s\n", NewIcon->Name.c_str(), strerror(Status));
|
||||||
/*Status = */ParseSVGXIcon(mainParser, i, NewIcon->Name + "_night"_XS, Scale, &NewIcon->ImageNight);
|
Status = ParseSVGXIcon(mainParser, i, NewIcon->Name + "_night"_XS, Scale, &NewIcon->ImageNight);
|
||||||
// DBG("...night status %s\n", strerror(Status));
|
// DBG("...night status %s\n", strerror(Status));
|
||||||
|
if (EFI_ERROR(Status) &&
|
||||||
|
(i >= BUILTIN_ICON_VOL_INTERNAL_HFS) &&
|
||||||
|
(i <= BUILTIN_ICON_VOL_INTERNAL_REC)) {
|
||||||
|
NewIcon->ImageNight = GetIcon(BUILTIN_ICON_VOL_INTERNAL); //copy existing
|
||||||
|
}
|
||||||
Icons.AddReference(NewIcon, true);
|
Icons.AddReference(NewIcon, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
//selections
|
//selections
|
||||||
|
SelectionBackgroundPixel.Red = (SelectionColor >> 24) & 0xFF;
|
||||||
|
SelectionBackgroundPixel.Green = (SelectionColor >> 16) & 0xFF;
|
||||||
|
SelectionBackgroundPixel.Blue = (SelectionColor >> 8) & 0xFF;
|
||||||
|
SelectionBackgroundPixel.Reserved = (SelectionColor >> 0) & 0xFF;
|
||||||
|
|
||||||
SelectionImages[0] = GetIcon(BUILTIN_SELECTION_BIG);
|
SelectionImages[0] = GetIcon(BUILTIN_SELECTION_BIG);
|
||||||
SelectionImages[2] = GetIcon(BUILTIN_SELECTION_SMALL);
|
SelectionImages[2] = GetIcon(BUILTIN_SELECTION_SMALL);
|
||||||
|
|
||||||
|
@ -681,6 +681,10 @@ void XImage::DummyImage(IN UINTN PixelSize)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void XImage::Copy(XImage* Image)
|
||||||
|
{
|
||||||
|
CopyRect(*Image, 0, 0);
|
||||||
|
}
|
||||||
void XImage::CopyRect(const XImage& Image, INTN XPos, INTN YPos)
|
void XImage::CopyRect(const XImage& Image, INTN XPos, INTN YPos)
|
||||||
{
|
{
|
||||||
for (INTN y = 0; y < GetHeight() && (y + YPos) < Image.GetHeight(); ++y) {
|
for (INTN y = 0; y < GetHeight() && (y + YPos) < Image.GetHeight(); ++y) {
|
||||||
|
@ -84,6 +84,7 @@ public:
|
|||||||
void Fill(const EG_PIXEL* Color);
|
void Fill(const EG_PIXEL* Color);
|
||||||
void FillArea(const EG_PIXEL* Color, EG_RECT& Rect);
|
void FillArea(const EG_PIXEL* Color, EG_RECT& Rect);
|
||||||
void FillArea(const EFI_GRAPHICS_OUTPUT_BLT_PIXEL& Color, EG_RECT& Rect);
|
void FillArea(const EFI_GRAPHICS_OUTPUT_BLT_PIXEL& Color, EG_RECT& Rect);
|
||||||
|
void Copy(XImage* Image);
|
||||||
void CopyScaled(const XImage& Image, float scale);
|
void CopyScaled(const XImage& Image, float scale);
|
||||||
void CopyRect(const XImage& Image, INTN X, INTN Y);
|
void CopyRect(const XImage& Image, INTN X, INTN Y);
|
||||||
void CopyRect(const XImage& Image, const EG_RECT& OwnPlace, const EG_RECT& InputRect);
|
void CopyRect(const XImage& Image, const EG_RECT& OwnPlace, const EG_RECT& InputRect);
|
||||||
|
@ -107,167 +107,7 @@ CONST CHAR8* IconsNames[] = {
|
|||||||
""
|
""
|
||||||
};
|
};
|
||||||
|
|
||||||
Icon::~Icon() {}
|
//icons class
|
||||||
|
|
||||||
XTheme::XTheme() {
|
|
||||||
Init();
|
|
||||||
}
|
|
||||||
|
|
||||||
XTheme::~XTheme() {
|
|
||||||
//nothing todo?
|
|
||||||
}
|
|
||||||
|
|
||||||
void XTheme::Init()
|
|
||||||
{
|
|
||||||
// DisableFlags = 0;
|
|
||||||
HideBadges = 0;
|
|
||||||
HideUIFlags = 0;
|
|
||||||
// TextOnly = FALSE;
|
|
||||||
Font = FONT_GRAY; // FONT_TYPE
|
|
||||||
CharWidth = 9;
|
|
||||||
SelectionColor = 0xFFFFFF80;
|
|
||||||
FontFileName.setEmpty();
|
|
||||||
Theme.takeValueFrom("embedded");
|
|
||||||
embedded = true;
|
|
||||||
BannerFileName.setEmpty();
|
|
||||||
SelectionSmallFileName.setEmpty();
|
|
||||||
SelectionBigFileName.setEmpty();
|
|
||||||
SelectionIndicatorName.setEmpty();
|
|
||||||
DefaultSelection.setEmpty();
|
|
||||||
BackgroundName.setEmpty();
|
|
||||||
BackgroundScale = imNone; // SCALING
|
|
||||||
BackgroundSharp = 0;
|
|
||||||
BackgroundDark = FALSE; //TODO should be set to true if Night theme
|
|
||||||
// CustomIcons = FALSE; //TODO don't know how to handle with SVG theme
|
|
||||||
SelectionOnTop = FALSE;
|
|
||||||
BootCampStyle = FALSE;
|
|
||||||
BadgeOffsetX = 0;
|
|
||||||
BadgeOffsetY = 0;
|
|
||||||
BadgeScale = 4; // TODO now we have float scale = BadgeScale/16
|
|
||||||
ThemeDesignWidth = 0xFFFF;
|
|
||||||
ThemeDesignHeight = 0xFFFF;
|
|
||||||
BannerPosX = 0xFFFF; // the value out of range [0,1000]
|
|
||||||
BannerPosY = 0xFFFF;
|
|
||||||
BannerEdgeHorizontal = 0;
|
|
||||||
BannerEdgeVertical = 0;
|
|
||||||
BannerNudgeX = 0;
|
|
||||||
BannerNudgeY = 0;
|
|
||||||
VerticalLayout = FALSE;
|
|
||||||
NonSelectedGrey = FALSE; //TODO what about SVG?
|
|
||||||
MainEntriesSize = 128;
|
|
||||||
TileXSpace = 8;
|
|
||||||
TileYSpace = 24;
|
|
||||||
// IconFormat = ICON_FORMAT_DEF;
|
|
||||||
Proportional = FALSE;
|
|
||||||
// ShowOptimus = FALSE;
|
|
||||||
DarkEmbedded = FALSE; //looks like redundant, we always check Night or Daylight
|
|
||||||
TypeSVG = FALSE;
|
|
||||||
Codepage = 0xC0; //this is for PNG theme
|
|
||||||
CodepageSize = 0xC0; // INTN CodepageSize; //extended latin
|
|
||||||
Scale = 1.0f;
|
|
||||||
CentreShift = 0.0f;
|
|
||||||
Daylight = true;
|
|
||||||
LayoutHeight = 376;
|
|
||||||
LayoutBannerOffset = 64; //default value if not set
|
|
||||||
LayoutButtonOffset = 0; //default value if not set
|
|
||||||
LayoutTextOffset = 0; //default value if not set
|
|
||||||
LayoutAnimMoveForMenuX = 0; //default value if not set
|
|
||||||
|
|
||||||
row0TileSize = 144;
|
|
||||||
row1TileSize = 64;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* what if the icon is not found or name is wrong?
|
|
||||||
* probably it whould return Empty image
|
|
||||||
* Image.isEmpty() == true
|
|
||||||
*/
|
|
||||||
//const XImage& XTheme::GetIcon(const char* Name)
|
|
||||||
//{
|
|
||||||
// return GetIcon(XString().takeValueFrom(Name));
|
|
||||||
//}
|
|
||||||
//
|
|
||||||
//const XImage& XTheme::GetIcon(const CHAR16* Name)
|
|
||||||
//{
|
|
||||||
// return GetIcon(XString().takeValueFrom(Name));
|
|
||||||
//}
|
|
||||||
|
|
||||||
static XImage NullIcon;
|
|
||||||
static XImage DummyIcon;
|
|
||||||
|
|
||||||
const XImage& XTheme::GetIcon(const XString& Name) const
|
|
||||||
{
|
|
||||||
for (size_t i = 0; i < Icons.size(); i++)
|
|
||||||
{
|
|
||||||
if (Icons[i].Name == Name) //night icon has same name as daylight icon
|
|
||||||
{
|
|
||||||
if (!Daylight && !Icons[i].ImageNight.isEmpty()) {
|
|
||||||
return Icons[i].ImageNight;
|
|
||||||
}
|
|
||||||
//if daylight or night icon absent
|
|
||||||
return Icons[i].Image;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return NullIcon; //return pointer to XImage? Or XImage copy?
|
|
||||||
}
|
|
||||||
|
|
||||||
const XImage& XTheme::GetIcon(INTN Id) const
|
|
||||||
{
|
|
||||||
for (size_t i = 0; i < Icons.size(); i++)
|
|
||||||
{
|
|
||||||
if (Icons[i].Id == Id)
|
|
||||||
{
|
|
||||||
if (!Daylight && !Icons[i].ImageNight.isEmpty()) {
|
|
||||||
return Icons[i].ImageNight;
|
|
||||||
}
|
|
||||||
//if daylight or night icon absent
|
|
||||||
return Icons[i].Image;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return NullIcon;
|
|
||||||
}
|
|
||||||
|
|
||||||
//const XImage& XTheme::LoadOSIcon(const XString& OSIconName)
|
|
||||||
//{
|
|
||||||
// return LoadOSIcon(XString().takeValueFrom(OSIconName));
|
|
||||||
//}
|
|
||||||
|
|
||||||
const XImage& XTheme::LoadOSIcon(const CHAR16* OSIconName)
|
|
||||||
{
|
|
||||||
// input value can be L"win", L"ubuntu,linux", L"moja,mac" set by GetOSIconName (OSVersion)
|
|
||||||
XString Full = XString().takeValueFrom(OSIconName);
|
|
||||||
XString First;
|
|
||||||
XString Second;
|
|
||||||
const XImage *ReturnImage;
|
|
||||||
UINTN Comma = Full.IdxOf(',');
|
|
||||||
UINTN Size = Full.size();
|
|
||||||
// DBG("IconName=%ls comma=%lld size=%lld\n", OSIconName, Comma, Size);
|
|
||||||
if (Comma != MAX_XSIZE) { //Comma
|
|
||||||
First = "os_"_XS + Full.SubString(0, Comma);
|
|
||||||
ReturnImage = &GetIcon(First);
|
|
||||||
// DBG(" first=%s\n", First.c_str());
|
|
||||||
if (!ReturnImage->isEmpty()) return *ReturnImage;
|
|
||||||
//else search second name
|
|
||||||
Second = "os_"_XS + Full.SubString(Comma+1, Size - Comma - 1);
|
|
||||||
ReturnImage = &GetIcon(Second);
|
|
||||||
// DBG(" Second=%s\n", Second.c_str());
|
|
||||||
if (!ReturnImage->isEmpty()) return *ReturnImage;
|
|
||||||
} else {
|
|
||||||
ReturnImage = &GetIcon("os_"_XS + Full);
|
|
||||||
// DBG(" Full=%s\n", Full.c_str());
|
|
||||||
if (!ReturnImage->isEmpty()) return *ReturnImage;
|
|
||||||
}
|
|
||||||
// else something
|
|
||||||
if (DummyIcon.isEmpty()) //initialize once per session
|
|
||||||
DummyIcon.DummyImage(MainEntriesSize);
|
|
||||||
return DummyIcon;
|
|
||||||
}
|
|
||||||
//
|
|
||||||
//void XTheme::AddIcon(Icon& NewIcon)
|
|
||||||
//{
|
|
||||||
// Icons.AddCopy(NewIcon);
|
|
||||||
//}
|
|
||||||
|
|
||||||
//if ImageNight is not set then Image should be used
|
//if ImageNight is not set then Image should be used
|
||||||
#define DEC_BUILTIN_ICON(id, ico) { \
|
#define DEC_BUILTIN_ICON(id, ico) { \
|
||||||
Image.FromPNG(ACCESS_EMB_DATA(ico), ACCESS_EMB_SIZE(ico)); \
|
Image.FromPNG(ACCESS_EMB_DATA(ico), ACCESS_EMB_SIZE(ico)); \
|
||||||
@ -383,6 +223,176 @@ void Icon::GetEmbedded()
|
|||||||
//something to do else?
|
//something to do else?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Icon::~Icon() {}
|
||||||
|
|
||||||
|
//xtheme class
|
||||||
|
XTheme::XTheme() {
|
||||||
|
Init();
|
||||||
|
}
|
||||||
|
|
||||||
|
XTheme::~XTheme() {
|
||||||
|
//nothing todo?
|
||||||
|
}
|
||||||
|
|
||||||
|
void XTheme::Init()
|
||||||
|
{
|
||||||
|
// DisableFlags = 0;
|
||||||
|
HideBadges = 0;
|
||||||
|
HideUIFlags = 0;
|
||||||
|
// TextOnly = FALSE;
|
||||||
|
Font = FONT_GRAY; // FONT_TYPE
|
||||||
|
CharWidth = 9;
|
||||||
|
SelectionColor = 0x80808080;
|
||||||
|
FontFileName.setEmpty();
|
||||||
|
Theme.takeValueFrom("embedded");
|
||||||
|
embedded = true;
|
||||||
|
BannerFileName.setEmpty();
|
||||||
|
SelectionSmallFileName.setEmpty();
|
||||||
|
SelectionBigFileName.setEmpty();
|
||||||
|
SelectionIndicatorName.setEmpty();
|
||||||
|
DefaultSelection.setEmpty();
|
||||||
|
BackgroundName.setEmpty();
|
||||||
|
BackgroundScale = imNone; // SCALING
|
||||||
|
BackgroundSharp = 0;
|
||||||
|
BackgroundDark = FALSE; //TODO should be set to true if Night theme
|
||||||
|
// CustomIcons = FALSE; //TODO don't know how to handle with SVG theme
|
||||||
|
SelectionOnTop = FALSE;
|
||||||
|
BootCampStyle = FALSE;
|
||||||
|
BadgeOffsetX = 0;
|
||||||
|
BadgeOffsetY = 0;
|
||||||
|
BadgeScale = 4; // TODO now we have float scale = BadgeScale/16
|
||||||
|
ThemeDesignWidth = 0xFFFF;
|
||||||
|
ThemeDesignHeight = 0xFFFF;
|
||||||
|
BannerPosX = 0xFFFF; // the value out of range [0,1000]
|
||||||
|
BannerPosY = 0xFFFF;
|
||||||
|
BannerEdgeHorizontal = 0;
|
||||||
|
BannerEdgeVertical = 0;
|
||||||
|
BannerNudgeX = 0;
|
||||||
|
BannerNudgeY = 0;
|
||||||
|
VerticalLayout = FALSE;
|
||||||
|
NonSelectedGrey = FALSE; //TODO what about SVG?
|
||||||
|
MainEntriesSize = 128;
|
||||||
|
TileXSpace = 8;
|
||||||
|
TileYSpace = 24;
|
||||||
|
// IconFormat = ICON_FORMAT_DEF;
|
||||||
|
Proportional = FALSE;
|
||||||
|
// ShowOptimus = FALSE;
|
||||||
|
DarkEmbedded = FALSE; //looks like redundant, we always check Night or Daylight
|
||||||
|
TypeSVG = FALSE;
|
||||||
|
Codepage = 0xC0; //this is for PNG theme
|
||||||
|
CodepageSize = 0xC0; // INTN CodepageSize; //extended latin
|
||||||
|
Scale = 1.0f;
|
||||||
|
CentreShift = 0.0f;
|
||||||
|
Daylight = true;
|
||||||
|
LayoutHeight = 376;
|
||||||
|
LayoutBannerOffset = 64; //default value if not set
|
||||||
|
LayoutButtonOffset = 0; //default value if not set
|
||||||
|
LayoutTextOffset = 0; //default value if not set
|
||||||
|
LayoutAnimMoveForMenuX = 0; //default value if not set
|
||||||
|
|
||||||
|
row0TileSize = 144;
|
||||||
|
row1TileSize = 64;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* what if the icon is not found or name is wrong?
|
||||||
|
* probably it whould return Empty image
|
||||||
|
* Image.isEmpty() == true
|
||||||
|
*/
|
||||||
|
//const XImage& XTheme::GetIcon(const char* Name)
|
||||||
|
//{
|
||||||
|
// return GetIcon(XString().takeValueFrom(Name));
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//const XImage& XTheme::GetIcon(const CHAR16* Name)
|
||||||
|
//{
|
||||||
|
// return GetIcon(XString().takeValueFrom(Name));
|
||||||
|
//}
|
||||||
|
|
||||||
|
static XImage NullIcon;
|
||||||
|
static XImage DummyIcon;
|
||||||
|
|
||||||
|
const XImage& XTheme::GetIcon(const XString& Name) const
|
||||||
|
{
|
||||||
|
for (size_t i = 0; i < Icons.size(); i++)
|
||||||
|
{
|
||||||
|
if (Icons[i].Name == Name) //night icon has same name as daylight icon
|
||||||
|
{
|
||||||
|
return GetIcon(Icons[i].Id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return NullIcon; //if name is not found
|
||||||
|
}
|
||||||
|
|
||||||
|
const XImage& XTheme::GetIcon(INTN Id) const
|
||||||
|
{
|
||||||
|
for (size_t i = 0; i < Icons.size(); i++)
|
||||||
|
{
|
||||||
|
if (Icons[i].Id == Id)
|
||||||
|
{
|
||||||
|
if (!Daylight && !Icons[i].ImageNight.isEmpty()) {
|
||||||
|
return Icons[i].ImageNight;
|
||||||
|
}
|
||||||
|
//if daylight or night icon absent
|
||||||
|
if (!Icons[i].Image.isEmpty()) {
|
||||||
|
return Icons[i].Image;
|
||||||
|
}
|
||||||
|
//if not found then create new one from embedded
|
||||||
|
Icon* NewIcon = new Icon(Id, true);
|
||||||
|
// NewIcon.GetEmbedded();
|
||||||
|
if (!Daylight && !NewIcon->ImageNight.isEmpty()) {
|
||||||
|
// Icons[i].ImageNight.Copy(NewIcon.ImageNight); //can't cash because it is const, fuck!!!
|
||||||
|
return NewIcon->ImageNight;
|
||||||
|
}
|
||||||
|
//if daylight or night icon absent
|
||||||
|
if (!NewIcon->Image.isEmpty()) {
|
||||||
|
// Icons[i].Image.Copy(NewIcon.Image);
|
||||||
|
return NewIcon->Image;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return NullIcon; //such Id is not found in the database
|
||||||
|
}
|
||||||
|
|
||||||
|
const XImage& XTheme::LoadOSIcon(const CHAR16* OSIconName)
|
||||||
|
{
|
||||||
|
return LoadOSIcon(XString().takeValueFrom(OSIconName));
|
||||||
|
}
|
||||||
|
|
||||||
|
const XImage& XTheme::LoadOSIcon(const XString& Full)
|
||||||
|
{
|
||||||
|
// input value can be L"win", L"ubuntu,linux", L"moja,mac" set by GetOSIconName (OSVersion)
|
||||||
|
XString First;
|
||||||
|
XString Second;
|
||||||
|
const XImage *ReturnImage;
|
||||||
|
UINTN Comma = Full.IdxOf(',');
|
||||||
|
UINTN Size = Full.size();
|
||||||
|
// DBG("IconName=%ls comma=%lld size=%lld\n", OSIconName, Comma, Size);
|
||||||
|
if (Comma != MAX_XSIZE) { //Comma
|
||||||
|
First = "os_"_XS + Full.SubString(0, Comma);
|
||||||
|
ReturnImage = &GetIcon(First);
|
||||||
|
// DBG(" first=%s\n", First.c_str());
|
||||||
|
if (!ReturnImage->isEmpty()) return *ReturnImage;
|
||||||
|
//else search second name
|
||||||
|
Second = "os_"_XS + Full.SubString(Comma+1, Size - Comma - 1);
|
||||||
|
ReturnImage = &GetIcon(Second);
|
||||||
|
// DBG(" Second=%s\n", Second.c_str());
|
||||||
|
if (!ReturnImage->isEmpty()) return *ReturnImage;
|
||||||
|
} else {
|
||||||
|
ReturnImage = &GetIcon("os_"_XS + Full);
|
||||||
|
// DBG(" Full=%s\n", Full.c_str());
|
||||||
|
if (!ReturnImage->isEmpty()) return *ReturnImage;
|
||||||
|
}
|
||||||
|
// else something
|
||||||
|
if (DummyIcon.isEmpty()) //initialize once per session
|
||||||
|
DummyIcon.DummyImage(MainEntriesSize);
|
||||||
|
return DummyIcon;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
//void XTheme::AddIcon(Icon& NewIcon)
|
||||||
|
//{
|
||||||
|
// Icons.AddCopy(NewIcon);
|
||||||
|
//}
|
||||||
|
|
||||||
|
|
||||||
void XTheme::FillByEmbedded()
|
void XTheme::FillByEmbedded()
|
||||||
@ -684,11 +694,23 @@ void XTheme::InitSelection() //for PNG theme
|
|||||||
//use this only for PNG theme
|
//use this only for PNG theme
|
||||||
void XTheme::FillByDir() //assume ThemeDir is defined by InitTheme() procedure
|
void XTheme::FillByDir() //assume ThemeDir is defined by InitTheme() procedure
|
||||||
{
|
{
|
||||||
|
EFI_STATUS Status;
|
||||||
Icons.Empty();
|
Icons.Empty();
|
||||||
for (INTN i = 0; i <= BUILTIN_CHECKBOX_CHECKED; ++i) {
|
for (INTN i = 0; i <= BUILTIN_CHECKBOX_CHECKED; ++i) {
|
||||||
Icon* NewIcon = new Icon(i); //initialize without embedded
|
Icon* NewIcon = new Icon(i); //initialize without embedded
|
||||||
NewIcon->Image.LoadXImage(ThemeDir, IconsNames[i]);
|
Status = NewIcon->Image.LoadXImage(ThemeDir, IconsNames[i]);
|
||||||
NewIcon->ImageNight.LoadXImage(ThemeDir, SWPrintf("%s_night", IconsNames[i]));
|
if (EFI_ERROR(Status) &&
|
||||||
|
(i >= BUILTIN_ICON_VOL_INTERNAL_HFS) &&
|
||||||
|
(i <= BUILTIN_ICON_VOL_INTERNAL_REC)) {
|
||||||
|
NewIcon->Image = GetIcon(BUILTIN_ICON_VOL_INTERNAL); //copy existing
|
||||||
|
}
|
||||||
|
|
||||||
|
Status = NewIcon->ImageNight.LoadXImage(ThemeDir, SWPrintf("%s_night", IconsNames[i]));
|
||||||
|
if (EFI_ERROR(Status) &&
|
||||||
|
(i >= BUILTIN_ICON_VOL_INTERNAL_HFS) &&
|
||||||
|
(i <= BUILTIN_ICON_VOL_INTERNAL_REC)) {
|
||||||
|
NewIcon->ImageNight = GetIcon(BUILTIN_ICON_VOL_INTERNAL); //copy existing
|
||||||
|
}
|
||||||
Icons.AddReference(NewIcon, true);
|
Icons.AddReference(NewIcon, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -706,34 +728,28 @@ void XTheme::FillByDir() //assume ThemeDir is defined by InitTheme() procedure
|
|||||||
}
|
}
|
||||||
// now the big selection
|
// now the big selection
|
||||||
SelectionImages[0].setEmpty();
|
SelectionImages[0].setEmpty();
|
||||||
SelectionImages[0].LoadXImage(ThemeDir, SelectionBigFileName);
|
Status = SelectionImages[0].LoadXImage(ThemeDir, SelectionBigFileName);
|
||||||
// then common name selection_small.png
|
// then common name selection_small.png
|
||||||
if (SelectionImages[0].isEmpty()){
|
if (EFI_ERROR(Status)){
|
||||||
SelectionImages[0] = GetIcon(BUILTIN_SELECTION_BIG);
|
SelectionImages[0] = GetIcon(BUILTIN_SELECTION_BIG);
|
||||||
}
|
}
|
||||||
// else use small selection
|
// else use small selection
|
||||||
if (SelectionImages[0].isEmpty()) {
|
if (SelectionImages[0].isEmpty()) {
|
||||||
SelectionImages[0] = SelectionImages[2]; //use same selection if OnTop for example
|
SelectionImages[0] = SelectionImages[2]; //use same selection if OnTop for example
|
||||||
}
|
}
|
||||||
//let they be empty as is
|
|
||||||
// SelectionImages[1] = XImage(row0TileSize, row0TileSize);
|
|
||||||
// SelectionImages[3] = XImage(row1TileSize, row1TileSize);
|
|
||||||
|
|
||||||
if (BootCampStyle) {
|
if (BootCampStyle) {
|
||||||
// load indicator selection image
|
// load indicator selection image
|
||||||
SelectionImages[4].setEmpty();
|
SelectionImages[4].setEmpty();
|
||||||
SelectionImages[4].LoadXImage(ThemeDir, SelectionIndicatorName);
|
Status = SelectionImages[4].LoadXImage(ThemeDir, SelectionIndicatorName);
|
||||||
if (SelectionImages[4].isEmpty()) {
|
if (EFI_ERROR(Status)) {
|
||||||
SelectionImages[4].LoadXImage(ThemeDir, "selection_indicator");
|
Status = SelectionImages[4].LoadXImage(ThemeDir, "selection_indicator");
|
||||||
}
|
}
|
||||||
|
if (EFI_ERROR(Status)) {
|
||||||
INTN ScaledIndicatorSize = (INTN)(INDICATOR_SIZE * Scale);
|
INTN ScaledIndicatorSize = (INTN)(INDICATOR_SIZE * Scale);
|
||||||
SelectionImages[4].EnsureImageSize(ScaledIndicatorSize, ScaledIndicatorSize, MenuBackgroundPixel);
|
SelectionImages[4].EnsureImageSize(ScaledIndicatorSize, ScaledIndicatorSize, MenuBackgroundPixel);
|
||||||
if (SelectionImages[4].isEmpty()) {
|
|
||||||
SelectionImages[4] = XImage(ScaledIndicatorSize, ScaledIndicatorSize);
|
|
||||||
SelectionImages[4].Fill(StdBackgroundPixel);
|
SelectionImages[4].Fill(StdBackgroundPixel);
|
||||||
}
|
}
|
||||||
// SelectionImages[5] = XImage(ScaledIndicatorSize, ScaledIndicatorSize);
|
|
||||||
// SelectionImages[5].Fill(MenuBackgroundPixel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//and buttons
|
//and buttons
|
||||||
@ -744,7 +760,13 @@ void XTheme::FillByDir() //assume ThemeDir is defined by InitTheme() procedure
|
|||||||
|
|
||||||
//load banner and background
|
//load banner and background
|
||||||
Banner.LoadXImage(ThemeDir, BannerFileName);
|
Banner.LoadXImage(ThemeDir, BannerFileName);
|
||||||
BigBack.LoadXImage(ThemeDir, BackgroundName);
|
Status = BigBack.LoadXImage(ThemeDir, BackgroundName);
|
||||||
|
if (EFI_ERROR(Status) && !Banner.isEmpty()) {
|
||||||
|
//take first pixel from banner
|
||||||
|
const EFI_GRAPHICS_OUTPUT_BLT_PIXEL& firstPixel = Banner.GetPixel(0,0);
|
||||||
|
BigBack.setSizeInPixels(UGAWidth, UGAHeight);
|
||||||
|
BigBack.Fill(firstPixel);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -119,13 +119,14 @@ public:
|
|||||||
const XImage& GetIcon(const XString& Name) const; //get by name
|
const XImage& GetIcon(const XString& Name) const; //get by name
|
||||||
const XImage& GetIcon(INTN Id) const; //get by id
|
const XImage& GetIcon(INTN Id) const; //get by id
|
||||||
const XImage& LoadOSIcon(const CHAR16* OSIconName); //TODO make XString provider
|
const XImage& LoadOSIcon(const CHAR16* OSIconName); //TODO make XString provider
|
||||||
|
const XImage& LoadOSIcon(const XString& Full);
|
||||||
|
|
||||||
// void AddIcon(Icon& NewIcon); //return EFI_STATUS?
|
// void AddIcon(Icon& NewIcon); //return EFI_STATUS?
|
||||||
void FillByEmbedded();
|
void FillByEmbedded();
|
||||||
void FillByDir();
|
void FillByDir();
|
||||||
EFI_STATUS GetThemeTagSettings(void* DictPointer);
|
EFI_STATUS GetThemeTagSettings(void* DictPointer);
|
||||||
void parseTheme(void* p, const char** dict); //in nano project
|
void parseTheme(void* p, const char** dict); //in nano project
|
||||||
EFI_STATUS ParseSVGXTheme(CONST CHAR8* buffer); // in VectorTheme
|
EFI_STATUS ParseSVGXTheme(const CHAR8* buffer); // in VectorTheme
|
||||||
EFI_STATUS ParseSVGXIcon(void *p, INTN Id, const XString& IconNameX, float Scale, XImage* Image);
|
EFI_STATUS ParseSVGXIcon(void *p, INTN Id, const XString& IconNameX, float Scale, XImage* Image);
|
||||||
void* LoadTheme(const CHAR16 *TestTheme); //return TagPtr why?
|
void* LoadTheme(const CHAR16 *TestTheme); //return TagPtr why?
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
#define __LIBEG_LIBEG_H__
|
#define __LIBEG_LIBEG_H__
|
||||||
|
|
||||||
#ifndef USE_XTHEME
|
#ifndef USE_XTHEME
|
||||||
#define USE_XTHEME 0
|
#define USE_XTHEME 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
Loading…
Reference in New Issue
Block a user