]> code.delx.au - refind/blob - libeg/libeg.h
c81aaea2aacb2bf2e8f2cc4dfa0484766637b65e
[refind] / libeg / libeg.h
1 /*
2 * libeg/libeg.h
3 * EFI graphics library header for users
4 *
5 * Copyright (c) 2006 Christoph Pfisterer
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the
18 * distribution.
19 *
20 * * Neither the name of Christoph Pfisterer nor the names of the
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36
37 #ifndef __LIBEG_LIBEG_H__
38 #define __LIBEG_LIBEG_H__
39
40 #ifndef __MAKEWITH_GNUEFI
41 #include "../include/tiano_includes.h"
42 #endif
43
44 /* types */
45
46 typedef enum ColorTypes {
47 white,
48 black
49 } Colors;
50
51 /* This should be compatible with EFI_UGA_PIXEL */
52 typedef struct {
53 UINT8 b, g, r, a;
54 } EG_PIXEL;
55
56 typedef struct {
57 UINTN Width;
58 UINTN Height;
59 BOOLEAN HasAlpha;
60 EG_PIXEL *PixelData;
61 } EG_IMAGE;
62
63 #define EG_EIPIXELMODE_GRAY (0)
64 #define EG_EIPIXELMODE_GRAY_ALPHA (1)
65 #define EG_EIPIXELMODE_COLOR (2)
66 #define EG_EIPIXELMODE_COLOR_ALPHA (3)
67 #define EG_EIPIXELMODE_ALPHA (4)
68 #define EG_MAX_EIPIXELMODE EG_EIPIXELMODE_ALPHA
69
70 #define EG_EICOMPMODE_NONE (0)
71 #define EG_EICOMPMODE_RLE (1)
72 #define EG_EICOMPMODE_EFICOMPRESS (2)
73
74 typedef struct {
75 UINTN Width;
76 UINTN Height;
77 UINTN PixelMode;
78 UINTN CompressMode;
79 const UINT8 *Data;
80 UINTN DataLength;
81 } EG_EMBEDDED_IMAGE;
82
83 /* functions */
84
85 VOID egInitScreen(VOID);
86 BOOLEAN egGetResFromMode(UINTN *ModeWidth, UINTN *Height);
87 VOID egGetScreenSize(OUT UINTN *ScreenWidth, OUT UINTN *ScreenHeight);
88 CHAR16 * egScreenDescription(VOID);
89 BOOLEAN egHasGraphicsMode(VOID);
90 BOOLEAN egIsGraphicsModeEnabled(VOID);
91 VOID egSetGraphicsModeEnabled(IN BOOLEAN Enable);
92 // NOTE: Even when egHasGraphicsMode() returns FALSE, you should
93 // call egSetGraphicsModeEnabled(FALSE) to ensure the system
94 // is running in text mode. egHasGraphicsMode() only determines
95 // if libeg can draw to the screen in graphics mode.
96
97 EG_IMAGE * egCreateImage(IN UINTN Width, IN UINTN Height, IN BOOLEAN HasAlpha);
98 EG_IMAGE * egCreateFilledImage(IN UINTN Width, IN UINTN Height, IN BOOLEAN HasAlpha, IN EG_PIXEL *Color);
99 EG_IMAGE * egCopyImage(IN EG_IMAGE *Image);
100 EG_IMAGE * egCropImage(IN EG_IMAGE *Image, IN UINTN StartX, IN UINTN StartY, IN UINTN Width, IN UINTN Height);
101 VOID egFreeImage(IN EG_IMAGE *Image);
102
103 EG_IMAGE * egLoadImage(IN EFI_FILE* BaseDir, IN CHAR16 *FileName, IN BOOLEAN WantAlpha);
104 EG_IMAGE * egLoadIcon(IN EFI_FILE* BaseDir, IN CHAR16 *FileName, IN UINTN IconSize);
105 EG_IMAGE * egPrepareEmbeddedImage(IN EG_EMBEDDED_IMAGE *EmbeddedImage, IN BOOLEAN WantAlpha);
106
107 EG_IMAGE * egEnsureImageSize(IN EG_IMAGE *Image, IN UINTN Width, IN UINTN Height, IN EG_PIXEL *Color);
108
109 EFI_STATUS egLoadFile(IN EFI_FILE* BaseDir, IN CHAR16 *FileName,
110 OUT UINT8 **FileData, OUT UINTN *FileDataLength);
111 EFI_STATUS egSaveFile(IN EFI_FILE* BaseDir OPTIONAL, IN CHAR16 *FileName,
112 IN UINT8 *FileData, IN UINTN FileDataLength);
113
114 VOID egFillImage(IN OUT EG_IMAGE *CompImage, IN EG_PIXEL *Color);
115 VOID egFillImageArea(IN OUT EG_IMAGE *CompImage,
116 IN UINTN AreaPosX, IN UINTN AreaPosY,
117 IN UINTN AreaWidth, IN UINTN AreaHeight,
118 IN EG_PIXEL *Color);
119 VOID egComposeImage(IN OUT EG_IMAGE *CompImage, IN EG_IMAGE *TopImage, IN UINTN PosX, IN UINTN PosY);
120
121 VOID egMeasureText(IN CHAR16 *Text, OUT UINTN *Width, OUT UINTN *Height);
122 VOID egRenderText(IN CHAR16 *Text, IN OUT EG_IMAGE *CompImage, IN UINTN PosX, IN UINTN PosY, IN UINT8 BGBrightness);
123
124 VOID egClearScreen(IN EG_PIXEL *Color);
125 VOID egDrawImage(IN EG_IMAGE *Image, IN UINTN ScreenPosX, IN UINTN ScreenPosY);
126 VOID egDrawImageWithTransparency(EG_IMAGE *Image, EG_IMAGE *BadgeImage, UINTN XPos, UINTN YPos, UINTN Width, UINTN Height);
127 VOID egDrawImageArea(IN EG_IMAGE *Image,
128 IN UINTN AreaPosX, IN UINTN AreaPosY,
129 IN UINTN AreaWidth, IN UINTN AreaHeight,
130 IN UINTN ScreenPosX, IN UINTN ScreenPosY);
131 VOID egDisplayMessage(IN CHAR16 *Text, EG_PIXEL *BGColor);
132 EG_IMAGE * egCopyScreen(VOID);
133 VOID egScreenShot(VOID);
134 //UINT32 egGetGraphicsMode(VOID);
135 BOOLEAN egSetTextMode(UINT32 RequestedMode);
136
137 #endif /* __LIBEG_LIBEG_H__ */
138
139 /* EOF */