2007-07-02 07:52:03 +02:00
|
|
|
/** @file
|
|
|
|
The EFI_FORM_BROWSER_PROTOCOL is the interface to the EFI
|
2009-07-28 15:25:37 +02:00
|
|
|
Configuration Driver. This interface enables the caller to direct the
|
|
|
|
configuration driver to use either the HII database or the passed-in
|
|
|
|
packet of data. This will also allow the caller to post messages
|
2007-07-02 07:52:03 +02:00
|
|
|
into the configuration drivers internal mailbox.
|
|
|
|
|
2010-04-23 17:52:13 +02:00
|
|
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2010-03-16 02:53:11 +01:00
|
|
|
This program and the accompanying materials are licensed and made available under
|
|
|
|
the terms and conditions of the BSD License that 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.
|
2007-07-02 07:52:03 +02:00
|
|
|
|
2009-07-13 11:28:00 +02:00
|
|
|
Module Name: FrameworkFormBrowser.h
|
|
|
|
|
2007-07-02 07:52:03 +02:00
|
|
|
@par Revision Reference:
|
|
|
|
This protocol is defined in HII spec 0.92.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __FRAMEWORK_FORM_BROWSER_H__
|
|
|
|
#define __FRAMEWORK_FORM_BROWSER_H__
|
|
|
|
|
2007-10-22 11:36:00 +02:00
|
|
|
#include <Protocol/FrameworkHii.h>
|
2007-07-02 11:36:17 +02:00
|
|
|
|
2007-07-02 07:52:03 +02:00
|
|
|
|
|
|
|
#define EFI_FORM_BROWSER_PROTOCOL_GUID \
|
|
|
|
{ \
|
|
|
|
0xe5a1333e, 0xe1b4, 0x4d55, {0xce, 0xeb, 0x35, 0xc3, 0xef, 0x13, 0x34, 0x43 } \
|
|
|
|
}
|
|
|
|
|
2008-09-03 12:49:30 +02:00
|
|
|
#define EFI_FORM_BROWSER_COMPATIBILITY_PROTOCOL_GUID \
|
|
|
|
{ \
|
2009-06-16 05:24:26 +02:00
|
|
|
0xfb7c852, 0xadca, 0x4853, { 0x8d, 0xf, 0xfb, 0xa7, 0x1b, 0x1c, 0xe1, 0x1a } \
|
2008-09-03 12:49:30 +02:00
|
|
|
}
|
|
|
|
|
2007-07-02 07:52:03 +02:00
|
|
|
typedef struct _EFI_FORM_BROWSER_PROTOCOL EFI_FORM_BROWSER_PROTOCOL;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
UINT32 Length;
|
|
|
|
UINT16 Type;
|
|
|
|
UINT8 Data[1];
|
|
|
|
} EFI_HII_PACKET;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
EFI_HII_IFR_PACK *IfrData;
|
|
|
|
EFI_HII_STRING_PACK *StringData;
|
2009-07-13 11:28:00 +02:00
|
|
|
} EFI_IFR_PACKET;
|
2007-07-02 07:52:03 +02:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
UINTN LeftColumn;
|
|
|
|
UINTN RightColumn;
|
|
|
|
UINTN TopRow;
|
|
|
|
UINTN BottomRow;
|
2008-04-03 12:02:13 +02:00
|
|
|
} FRAMEWORK_EFI_SCREEN_DESCRIPTOR;
|
2007-07-02 07:52:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
Provides direction to the configuration driver whether to use the HII
|
|
|
|
database or a passed-in set of data. This function also establishes a
|
|
|
|
pointer to the calling driver's callback interface.
|
|
|
|
|
|
|
|
@param This A pointer to the EFI_FORM_BROWSER_PROTOCOL instance.
|
|
|
|
@param UseDatabase Determines whether the HII database is to be
|
2010-03-16 02:53:11 +01:00
|
|
|
used to gather information. If the value is FALSE,
|
|
|
|
the configuration driver will get the information
|
|
|
|
provided in the passed-in Packet parameters.
|
|
|
|
@param Handle A pointer to an array of HII handles to display.
|
|
|
|
This value should correspond to the value of the
|
|
|
|
HII form package that is required to be displayed.
|
2007-07-02 07:52:03 +02:00
|
|
|
@param HandleCount The number of handles in the array specified by Handle.
|
|
|
|
@param Packet A pointer to a set of data containing pointers to IFR
|
|
|
|
and/or string data.
|
|
|
|
@param CallbackHandle The handle to the driver's callback interface.
|
2010-03-16 02:53:11 +01:00
|
|
|
This parameter is used only when the UseDatabase
|
|
|
|
parameter is FALSE and an application wants to
|
|
|
|
register a callback with the browser.
|
2007-07-02 07:52:03 +02:00
|
|
|
@param NvMapOverride This buffer is used only when there is no NV variable
|
2010-03-16 02:53:11 +01:00
|
|
|
to define the current settings and the caller needs
|
|
|
|
to provide to the browser the current settings for
|
|
|
|
the "fake" NV variable.
|
2007-07-02 07:52:03 +02:00
|
|
|
@param ScreenDimensions Allows the browser to be called so that it occupies
|
2010-03-16 02:53:11 +01:00
|
|
|
a portion of the physical screen instead of dynamically
|
|
|
|
determining the screen dimensions.
|
|
|
|
@param ResetRequired This BOOLEAN value denotes whether a reset is required
|
|
|
|
based on the data that might have been changed.
|
|
|
|
The ResetRequired parameter is primarily applicable
|
|
|
|
for configuration applications, and is an
|
2007-07-02 07:52:03 +02:00
|
|
|
optional parameter.
|
|
|
|
|
2010-03-16 02:53:11 +01:00
|
|
|
@retval EFI_SUCCESS The function completed successfully.
|
2007-07-02 07:52:03 +02:00
|
|
|
@retval EFI_NOT_FOUND The variable was not found.
|
|
|
|
@retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the result.
|
2010-03-16 02:53:11 +01:00
|
|
|
DataSize has been updated with the size needed to
|
|
|
|
complete the request.
|
2007-07-02 07:52:03 +02:00
|
|
|
@retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
|
|
|
|
@retval EFI_DEVICE_ERROR The variable could not be saved due to a hardware failure.
|
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-07-31 09:44:54 +02:00
|
|
|
(EFIAPI *EFI_SEND_FORM)(
|
2007-07-02 07:52:03 +02:00
|
|
|
IN EFI_FORM_BROWSER_PROTOCOL *This,
|
|
|
|
IN BOOLEAN UseDatabase,
|
2008-01-21 15:33:26 +01:00
|
|
|
IN FRAMEWORK_EFI_HII_HANDLE *Handle,
|
2007-07-02 07:52:03 +02:00
|
|
|
IN UINTN HandleCount,
|
2009-07-13 11:28:00 +02:00
|
|
|
IN EFI_IFR_PACKET *Packet, OPTIONAL
|
2007-07-02 07:52:03 +02:00
|
|
|
IN EFI_HANDLE CallbackHandle, OPTIONAL
|
|
|
|
IN UINT8 *NvMapOverride, OPTIONAL
|
2009-05-21 08:08:25 +02:00
|
|
|
IN FRAMEWORK_EFI_SCREEN_DESCRIPTOR *ScreenDimensions, OPTIONAL
|
2007-07-02 07:52:03 +02:00
|
|
|
OUT BOOLEAN *ResetRequired OPTIONAL
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Routine used to abstract a generic dialog interface and return the selected
|
|
|
|
key or string.
|
|
|
|
|
|
|
|
@param NumberOfLines The number of lines for the dialog box.
|
|
|
|
@param HotKey Defines whether a single character is parsed (TRUE)
|
2010-03-16 02:53:11 +01:00
|
|
|
and returned in KeyValue, or if a string is returned
|
|
|
|
in StringBuffer.
|
2007-07-02 07:52:03 +02:00
|
|
|
@param MaximumStringSize The maximum size in bytes of a typed-in string.
|
2010-03-16 02:53:11 +01:00
|
|
|
Because each character is a CHAR16, the minimum
|
|
|
|
string returned is two bytes.
|
2007-07-02 07:52:03 +02:00
|
|
|
@param StringBuffer The passed-in pointer to the buffer that will hold
|
|
|
|
the typed in string if HotKey is FALSE.
|
|
|
|
@param KeyValue The EFI_INPUT_KEY value returned if HotKey is TRUE.
|
|
|
|
@param String The pointer to the first string in the list of strings
|
|
|
|
that comprise the dialog box.
|
|
|
|
@param ... A series of NumberOfLines text strings that will be used
|
|
|
|
to construct the dialog box.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The dialog was displayed and user interaction was received.
|
|
|
|
@retval EFI_DEVICE_ERROR The user typed in an ESC character to exit the routine.
|
|
|
|
@retval EFI_INVALID_PARAMETER One of the parameters was invalid
|
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-07-31 09:44:54 +02:00
|
|
|
(EFIAPI *EFI_CREATE_POP_UP)(
|
2007-07-02 07:52:03 +02:00
|
|
|
IN UINTN NumberOfLines,
|
|
|
|
IN BOOLEAN HotKey,
|
|
|
|
IN UINTN MaximumStringSize,
|
|
|
|
OUT CHAR16 *StringBuffer,
|
|
|
|
OUT EFI_INPUT_KEY *KeyValue,
|
|
|
|
IN CHAR16 *String,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
The EFI_FORM_BROWSER_PROTOCOL is the interface to call for drivers to
|
|
|
|
leverage the EFI configuration driver interface.
|
|
|
|
**/
|
|
|
|
struct _EFI_FORM_BROWSER_PROTOCOL {
|
2009-07-02 09:40:24 +02:00
|
|
|
///
|
|
|
|
/// Provides direction to the configuration driver whether to use the HII
|
2009-07-28 15:25:37 +02:00
|
|
|
/// database or to use a passed-in set of data. This function also establishes
|
2009-07-02 09:40:24 +02:00
|
|
|
/// a pointer to the calling driver's callback interface.
|
|
|
|
///
|
2007-07-02 07:52:03 +02:00
|
|
|
EFI_SEND_FORM SendForm;
|
2009-07-02 09:40:24 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Routine used to abstract a generic dialog interface and return the
|
|
|
|
/// selected key or string.
|
|
|
|
///
|
2007-07-02 07:52:03 +02:00
|
|
|
EFI_CREATE_POP_UP CreatePopUp;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern EFI_GUID gEfiFormBrowserProtocolGuid;
|
2008-09-03 12:49:30 +02:00
|
|
|
extern EFI_GUID gEfiFormBrowserCompatibilityProtocolGuid;
|
|
|
|
|
2007-07-02 07:52:03 +02:00
|
|
|
|
|
|
|
#endif
|