summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Protocol/HiiImage.h
blob: ed511c7ac0cc825dc7569269f5b90180241fd214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
/** @file
  The file provides services to access to images in the images database.
  
  Copyright (c) 2006 - 2007, Intel Corporation
  All rights reserved. This program and the accompanying materials                          
  are licensed and made available under the terms and conditions of the BSD License         
  which accompanies this distribution.  The full text of the license may be found at        
  http://opensource.org/licenses/bsd-license.php                                            

  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     
  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             

  Module Name: HiiImage.h

**/

#ifndef __HII_IMAGE_H__
#define __HII_IMAGE_H__


#define EFI_HII_IMAGE_PROTOCOL_GUID \
  { 0x31a6406a, 0x6bdf, 0x4e46, { 0xb2, 0xa2, 0xeb, 0xaa, 0x89, 0xc4, 0x9, 0x20 } }

typedef struct _EFI_HII_IMAGE_PROTOCOL EFI_HII_IMAGE_PROTOCOL;


//
// Flags in EFI_IMAGE_INPUT
// 
#define EFI_IMAGE_TRANSPARENT 0x00000001

/**
   
  Definition of EFI_IMAGE_INPUT.
   
  @param Flags  Describe image characteristics. If
                EFI_IMAGE_TRANSPARENT is set, then the image was
                designed for transparent display.

  @param Width  Image width, in pixels. 

  @param Height Image height, in pixels.

  @param Bitmap The actual bitmap, organized left-to-right,
                top-to-bottom. The size of the bitmap is
                Width*Height*sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL).

   
**/
typedef struct _EFI_IMAGE_INPUT {
  UINT32  Flags;
  UINT16  Width;
  UINT16  Height;
  EFI_GRAPHICS_OUTPUT_BLT_PIXEL   *Bitmap;
} EFI_IMAGE_INPUT;


/**

  This function adds the image Image to the group of images
  owned by PackageList, and returns a new image identifier
  (ImageId).

  @param This   A pointer to the EFI_HII_IMAGE_PROTOCOL
                instance. PackageList Handle of the package list
                where this image will be added.

  @param ImageId  On return, contains the new image id, which is
                  unique within PackageList.

  @param Image  Points to the image.

  @retval EFI_SUCCESS             The new image was added
                                  successfully
  
  @retval EFI_OUT_OF_RESOURCES    Could not add the image.
  
  @retval EFI_INVALID_PARAMETER   Image is NULL or ImageId is
                                  NULL.


**/
typedef
EFI_STATUS
(EFIAPI *EFI_HII_NEW_IMAGE) (
  IN CONST  EFI_HII_IMAGE_PROTOCOL  *This,
  IN CONST  EFI_HII_HANDLE          PackageList,
  OUT       EFI_IMAGE_ID            *ImageId,
  IN CONST  EFI_IMAGE_INPUT         *Image
);

/**

  This function retrieves the image specified by ImageId which
  is associated with the specified PackageList and copies it
  into the buffer specified by Image. If the image specified by
  ImageId is not present in the specified PackageList, then
  EFI_NOT_FOUND is returned. If the buffer specified by
  ImageSize is too small to hold the image, then
  EFI_BUFFER_TOO_SMALL will be returned. ImageSize will be
  updated to the size of buffer actually required to hold the
  image.

  @param This   A pointer to the EFI_HII_IMAGE_PROTOCOL
                instance.
  
  @param PackageList  The package list in the HII database to
                      search for the specified image.
  
  @param ImageId  The image's id, which is unique within
                  PackageList.
  
  @param Image  Points to the new image.
  
  @param ImageSize  On entry, points to the size of the buffer
                    pointed to by Image, in bytes. On return,
                    points to the length of the image, in bytes.
  
  
  @retval EFI_SUCCESS   The image was returned successfully.
  
  @retval EFI_NOT_FOUND The image specified by ImageId is not
                        available.
  
  @retval EFI_BUFFER_TOO_SMALL  The buffer specified by
                                ImageLength is too small to hold
                                the image.
  
  @retval EFI_INVALID_PARAMETER The Image or Langugae was NULL.


**/
typedef
EFI_STATUS
(EFIAPI *EFI_HII_GET_IMAGE) (
  IN CONST  EFI_HII_IMAGE_PROTOCOL  *This,
  IN CONST  EFI_HII_HANDLE          PackageList,
  IN CONST  EFI_IMAGE_ID            ImageId,
  OUT       EFI_IMAGE_INPUT         *Image,
  OUT       UINTN                   *ImageSize
);

/**
   
  This function updates the image specified by ImageId in the
  specified PackageListHandle to the image specified by Image.


  @param This   A pointer to the EFI_HII_IMAGE_PROTOCOL
                instance.

  @param PackageList  The package list containing the images.

  @param ImageId  The image id, which is unique within
                  PackageList.

  @param Image  Points to the image.

  @retval EFI_SUCCESS The image was successfully updated.
  
  @retval EFI_NOT_FOUND   The image specified by ImageId is not
                          in the database.
  
  @retval EFI_INVALID_PARAMETER   The Image or Language was
                                  NULL.

**/
typedef
EFI_STATUS
(EFIAPI *EFI_HII_SET_IMAGE) (
  IN CONST  EFI_HII_IMAGE_PROTOCOL  *This,
  IN CONST  EFI_HII_HANDLE          PackageList,
  IN CONST  EFI_IMAGE_ID            ImageId,
  IN CONST  EFI_IMAGE_INPUT         Image
);


//
// EFI_HII_DRAW_FLAGS
// 
typedef UINT32  EFI_HII_DRAW_FLAGS;

#define EFI_HII_DRAW_FLAG_CLIP          0x00000001
#define EFI_HII_DRAW_FLAG_TRANSPARENT   0x00000030
#define EFI_HII_DRAW_FLAG_DEFAULT       0x00000000
#define EFI_HII_DRAW_FLAG_FORCE_TRANS   0x00000001
#define EFI_HII_DRAW_FLAG_FORCE_OPAQUE  0x00000002
#define EFI_HII_DIRECT_TO_SCREEN        0x00000080


/**
   
  Definition of EFI_IMAGE_OUTPUT.
   
  @param Width  Width of the output image.

  @param Height Height of the output image.

  @param Bitmap Points to the output bitmap.

  @param Screen Points to the EFI_GRAPHICS_OUTPUT_PROTOCOL which
                describes the screen on which to draw the
                specified image.

**/
typedef struct _EFI_IMAGE_OUTPUT {
  UINT16  Width;
  UINT16  Height;
  union {
    EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Bitmap;
    EFI_GRAPHICS_OUTPUT_PROTOCOL  *Screen;
  } Image;
} EFI_IMAGE_OUTPUT;


/**
   
  This function renders an image to a bitmap or the screen using
  the specified color and options. It draws the image on an
  existing bitmap, allocates a new bitmap or uses the screen. The
  images can be clipped. If EFI_HII_DRAW_FLAG_CLIP is set, then
  all pixels drawn outside the bounding box specified by Width and
  Height are ignored. If EFI_HII_DRAW_FLAG_TRANSPARENT is set,
  then all ????off???? pixels in the images drawn will use the
  pixel value from Blt. This flag cannot be used if Blt is NULL
  upon entry. If EFI_HII_DIRECT_TO_SCREEN is set, then the image
  will be written directly to the output device specified by
  Screen. Otherwise the image will be rendered to the bitmap
  specified by Bitmap.


  @param This   A pointer to the EFI_HII_IMAGE_PROTOCOL
                instance.
  
  @param Flags  Describes how the image is to be drawn.
                EFI_HII_DRAW_FLAGS is defined in Related
                Definitions, below.
  
  @param Image  Points to the image to be displayed. 
  
  @param Blt  If this points to a non-NULL on entry, this points
              to the image, which is Width pixels wide and
              Height pixels high. The image will be drawn onto
              this image and EFI_HII_DRAW_FLAG_CLIP is implied.
              If this points to a NULL on entry, then a buffer
              will be allocated to hold the generated image and
              the pointer updated on exit. It is the caller????s
              responsibility to free this buffer.

  @param BltX, BltY   Specifies the offset from the left and top
                      edge of the image of the first pixel in
                      the image.

  @retval EFI_SUCCESS   The image was successfully updated.

  @retval EFI_OUT_OF_RESOURCES  Unable to allocate an output
                                buffer for RowInfoArray or Blt.

  @retval EFI_INVALID_PARAMETER The Image or Blt or Height or
                                Width was NULL.


**/
typedef
EFI_STATUS
(EFIAPI *EFI_HII_DRAW_IMAGE) (
  IN CONST  EFI_HII_IMAGE_PROTOCOL  *This,
  IN CONST  EFI_HII_DRAW_FLAGS      Flags,
  IN CONST  EFI_IMAGE_INPUT         Image,
  IN OUT    EFI_IMAGE_OUTPUT        **Blt,
  IN CONST  UINTN                   BltX,
  IN CONST  UINTN                   BltY
);

/**
   
  This function renders an image as a bitmap or to the screen and
  can clip the image. The bitmap is either supplied by the caller
  or else is allocated by the function. The images can be drawn
  transparently or opaquely. If EFI_HII_DRAW_FLAG_CLIP is set,
  then all pixels drawn outside the bounding box specified by
  Width and Height are ignored. If EFI_HII_DRAW_FLAG_TRANSPARENT
  is set, then all "off" pixels in the character's glyph will
  use the pixel value from Blt. This flag cannot be used if Blt
  is NULL upon entry. If EFI_HII_DIRECT_TO_SCREEN is set, then
  the image will be written directly to the output device
  specified by Screen. Otherwise the image will be rendered to
  the bitmap specified by Bitmap.
  This function renders an image to a bitmap or the screen using
  the specified color and options. It draws the image on an
  existing bitmap, allocates a new bitmap or uses the screen. The
  images can be clipped. If EFI_HII_DRAW_FLAG_CLIP is set, then
  all pixels drawn outside the bounding box specified by Width and
  Height are ignored. The EFI_HII_DRAW_FLAG_TRANSPARENT flag
  determines whether the image will be drawn transparent or
  opaque. If EFI_HII_DRAW_FLAG_FORCE_TRANS is set, then the image
  will be drawn so that all ????off???? pixels in the image will
  be drawn using the pixel value from Blt and all other pixels
  will be copied. If EFI_HII_DRAW_FLAG_FORCE_OPAQUE is set, then
  the image????s pixels will be copied directly to the
  destination. If EFI_HII_DRAW_FLAG_DEFAULT is set, then the image
  will be drawn transparently or opaque, depending on the
  image????s transparency setting (see EFI_IMAGE_TRANSPARENT).
  Images cannot be drawn transparently if Blt is NULL. If
  EFI_HII_DIRECT_TO_SCREEN is set, then the image will be written
  directly to the output device specified by Screen. Otherwise the
  image will be rendered to the bitmap specified by Bitmap.

  @param This   A pointer to the EFI_HII_IMAGE_PROTOCOL
                instance.

  @param Flags  Describes how the image is to be drawn.

  @param PackageList  The package list in the HII database to
                      search for the specified image.

  @param ImageId  The image's id, which is unique within
                  PackageList.

  @param Blt  If this points to a non-NULL on entry, this points
              to the image, which is Width pixels wide and
              Height pixels high. The image will be drawn onto
              this image and EFI_HII_DRAW_FLAG_CLIP is implied.
              If this points to a NULL on entry, then a buffer
              will be allocated to hold the generated image and
              the pointer updated on exit. It is the caller's
              responsibility to free this buffer.

  @param BltX, BltY   Specifies the offset from the left and top
                      edge of the output image of the first
                      pixel in the image.

  @retval EFI_SUCCESS   The image was successfully updated.
  
  @retval EFI_OUT_OF_RESOURCES  Unable to allocate an output
                                buffer for RowInfoArray or Blt.
  
  @retval EFI_INVALID_PARAMETER The Image or Blt or Height or
                                Width was NULL.

**/
typedef
EFI_STATUS
(EFIAPI *EFI_HII_DRAW_IMAGE_ID) (
IN CONST  EFI_HII_IMAGE_PROTOCOL  *This,
IN CONST  EFI_HII_DRAW_FLAGS      Flags,
IN CONST  EFI_HII_HANDLE          PackageList,
IN CONST  EFI_IMAGE_ID            ImageId,
IN OUT    EFI_IMAGE_OUTPUT        **Blt,
IN CONST  UINTN                   BltX,
IN CONST  UINTN                   BltY
);


/**
  
  services to access to images in the images database.

  @param NewImage   Add a new image.

  @param GetImage   Retrieve an image and related font
                    information.

  @param SetImage   Change an image. EFI_INVALID_LANGUAGE The
                    language specified by FirstLanguage is not
                    present in the specified package list.
                    EFI_INVALID_PARAMETER FirstLanguage is NULL
                    or SecondLanguage is NULL.

**/
struct _EFI_HII_IMAGE_PROTOCOL {
  EFI_HII_NEW_IMAGE     NewImage;
  EFI_HII_GET_IMAGE     GetImage;
  EFI_HII_SET_IMAGE     SetImage;
  EFI_HII_DRAW_IMAGE    DrawImage;
  EFI_HII_DRAW_IMAGE_ID DrawImageId;
};

extern EFI_GUID gEfiHiiImageProtocolGuid;

#endif