]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Ui.h
HiiLibGetCurrentLanguage returns the current UEFI variable "PlatformLang" (if this...
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / Ui.h
1 /** @file
2 Private structure, MACRO and function definitions for User Interface related functionalities.
3
4 Copyright (c) 2004 - 2007, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _UI_H_
16 #define _UI_H_
17
18 #include "Setup.h"
19
20 //
21 // Globals
22 //
23 #define REGULAR_NUMERIC 0
24 #define TIME_NUMERIC 1
25 #define DATE_NUMERIC 2
26
27 #define SUBTITLE_INDENT 2
28
29 typedef enum {
30 UiNoOperation,
31 UiDefault,
32 UiSelect,
33 UiUp,
34 UiDown,
35 UiLeft,
36 UiRight,
37 UiReset,
38 UiSave,
39 UiPrevious,
40 UiPageUp,
41 UiPageDown,
42 UiMaxOperation
43 } UI_SCREEN_OPERATION;
44
45 typedef enum {
46 CfInitialization,
47 CfCheckSelection,
48 CfRepaint,
49 CfRefreshHighLight,
50 CfUpdateHelpString,
51 CfPrepareToReadKey,
52 CfReadKey,
53 CfScreenOperation,
54 CfUiPrevious,
55 CfUiSelect,
56 CfUiReset,
57 CfUiLeft,
58 CfUiRight,
59 CfUiUp,
60 CfUiPageUp,
61 CfUiPageDown,
62 CfUiDown,
63 CfUiSave,
64 CfUiDefault,
65 CfUiNoOperation,
66 CfExit,
67 CfMaxControlFlag
68 } UI_CONTROL_FLAG;
69
70 #define UI_ACTION_NONE 0
71 #define UI_ACTION_REFRESH_FORM 1
72 #define UI_ACTION_REFRESH_FORMSET 2
73 #define UI_ACTION_EXIT 3
74
75 typedef struct {
76 EFI_HII_HANDLE Handle;
77
78 //
79 // Target formset/form/Question information
80 //
81 EFI_GUID FormSetGuid;
82 UINT16 FormId;
83 UINT16 QuestionId;
84
85 UINTN TopRow;
86 UINTN BottomRow;
87 UINTN PromptCol;
88 UINTN OptionCol;
89 UINTN CurrentRow;
90
91 //
92 // Ation for Browser to taken:
93 // UI_ACTION_NONE - navigation inside a form
94 // UI_ACTION_REFRESH_FORM - re-evaluate expressions and repaint form
95 // UI_ACTION_REFRESH_FORMSET - re-parse formset IFR binary
96 //
97 UINTN Action;
98
99 //
100 // Current selected fomset/form/Question
101 //
102 FORM_BROWSER_FORMSET *FormSet;
103 FORM_BROWSER_FORM *Form;
104 FORM_BROWSER_STATEMENT *Statement;
105 } UI_MENU_SELECTION;
106
107 #define UI_MENU_OPTION_SIGNATURE EFI_SIGNATURE_32 ('u', 'i', 'm', 'm')
108 #define UI_MENU_LIST_SIGNATURE EFI_SIGNATURE_32 ('u', 'i', 'm', 'l')
109
110 typedef struct {
111 UINTN Signature;
112 LIST_ENTRY Link;
113
114 EFI_HII_HANDLE Handle;
115 FORM_BROWSER_STATEMENT *ThisTag;
116 UINT16 EntryNumber;
117
118 UINTN Row;
119 UINTN Col;
120 UINTN OptCol;
121 CHAR16 *Description;
122 UINTN Skip; // Number of lines
123
124 //
125 // Display item sequence for date/time
126 // Date: Month/Day/Year
127 // Sequence: 0 1 2
128 //
129 // Time: Hour : Minute : Second
130 // Sequence: 0 1 2
131 //
132 //
133 UINTN Sequence;
134
135 BOOLEAN GrayOut;
136 BOOLEAN ReadOnly;
137 } UI_MENU_OPTION;
138
139 #define MENU_OPTION_FROM_LINK(a) CR (a, UI_MENU_OPTION, Link, UI_MENU_OPTION_SIGNATURE)
140
141 typedef struct {
142 UINTN Signature;
143 LIST_ENTRY MenuLink;
144
145 UINT16 FormId;
146 UINT16 QuestionId;
147 } UI_MENU_LIST;
148
149 typedef struct _MENU_REFRESH_ENTRY {
150 struct _MENU_REFRESH_ENTRY *Next;
151 UI_MENU_OPTION *MenuOption; // Describes the entry needing an update
152 UI_MENU_SELECTION *Selection;
153 UINTN CurrentColumn;
154 UINTN CurrentRow;
155 UINTN CurrentAttribute;
156 } MENU_REFRESH_ENTRY;
157
158 typedef struct {
159 UINT16 ScanCode;
160 UI_SCREEN_OPERATION ScreenOperation;
161 } SCAN_CODE_TO_SCREEN_OPERATION;
162
163 typedef struct {
164 UI_SCREEN_OPERATION ScreenOperation;
165 UI_CONTROL_FLAG ControlFlag;
166 } SCREEN_OPERATION_T0_CONTROL_FLAG;
167
168
169 extern LIST_ENTRY gMenuList;
170 extern MENU_REFRESH_ENTRY *gMenuRefreshHead;
171 extern UI_MENU_SELECTION *gCurrentSelection;
172
173 //
174 // Global Functions
175 //
176 /**
177 Initialize Menu option list.
178
179 **/
180 VOID
181 UiInitMenu (
182 VOID
183 );
184
185 /**
186 Initialize Menu option list.
187
188 **/
189 VOID
190 UiInitMenuList (
191 VOID
192 );
193
194 /**
195 Remove a Menu in list, and return FormId/QuestionId for previous Menu.
196
197 @param Selection Menu selection.
198
199 **/
200 VOID
201 UiRemoveMenuListEntry (
202 OUT UI_MENU_SELECTION *Selection
203 );
204
205 /**
206 Free Menu option linked list.
207
208 **/
209 VOID
210 UiFreeMenuList (
211 VOID
212 );
213
214 /**
215 Add one menu entry to the linked lst
216
217 @param Selection Menu selection.
218
219 **/
220 VOID
221 UiAddMenuListEntry (
222 IN UI_MENU_SELECTION *Selection
223 );
224
225 /**
226 Free Menu option linked list.
227
228 **/
229 VOID
230 UiFreeMenu (
231 VOID
232 );
233
234 /**
235 Add one menu option by specified description and context.
236
237 @param String String description for this option.
238 @param Handle Hii handle for the package list.
239 @param Statement Statement of this Menu Option.
240 @param NumberOfLines Display lines for this Menu Option.
241 @param MenuItemCount The index for this Option in the Menu.
242
243 **/
244 VOID
245 UiAddMenuOption (
246 IN CHAR16 *String,
247 IN EFI_HII_HANDLE Handle,
248 IN FORM_BROWSER_STATEMENT *Statement,
249 IN UINT16 NumberOfLines,
250 IN UINT16 MenuItemCount
251 );
252
253 /**
254 Display menu and wait for user to select one menu option, then return it.
255 If AutoBoot is enabled, then if user doesn't select any option,
256 after period of time, it will automatically return the first menu option.
257
258 @param Selection Menu selection.
259
260 @return Return the pointer of the menu which selected,
261 @return otherwise return NULL.
262
263 **/
264 EFI_STATUS
265 UiDisplayMenu (
266 IN OUT UI_MENU_SELECTION *Selection
267 );
268
269 /**
270 Free up the resource allocated for all strings required
271 by Setup Browser.
272
273 **/
274 VOID
275 FreeBrowserStrings (
276 VOID
277 );
278
279 /**
280 The worker function that send the displays to the screen. On output,
281 the selection made by user is returned.
282
283 @param Selection On input, Selection tell setup browser the information
284 about the Selection, form and formset to be displayed.
285 On output, Selection return the screen item that is selected
286 by user.
287
288 @retval EFI_SUCCESS The page is displayed successfully.
289 @return Other value if the page failed to be diplayed.
290
291 **/
292 EFI_STATUS
293 SetupBrowser (
294 IN OUT UI_MENU_SELECTION *Selection
295 );
296
297 /**
298 VSPrint worker function that prints a Value as a decimal number in Buffer.
299
300 @param Buffer Location to place ascii decimal number string of Value.
301 @param Flags Flags to use in printing decimal string, see file header for
302 details.
303 @param Value Decimal value to convert to a string in Buffer.
304
305 @return Number of characters printed.
306
307 **/
308 VOID
309 ValueToString (
310 IN CHAR16 *Buffer,
311 IN BOOLEAN Flags,
312 IN INT64 Value
313 );
314
315 /**
316 Set Buffer to Value for Size bytes.
317
318 @param Buffer Memory to set.
319 @param Size Number of bytes to set
320 @param Value Value of the set operation.
321
322 **/
323 VOID
324 SetUnicodeMem (
325 IN VOID *Buffer,
326 IN UINTN Size,
327 IN CHAR16 Value
328 );
329
330 /**
331 Wait for a given event to fire, or for an optional timeout to expire.
332
333 @param Event The event to wait for
334 @param Timeout An optional timeout value in 100 ns units.
335 @param RefreshInterval Menu refresh interval (in seconds).
336
337 @retval EFI_SUCCESS Event fired before Timeout expired.
338 @retval EFI_TIME_OUT Timout expired before Event fired.
339
340 **/
341 EFI_STATUS
342 UiWaitForSingleEvent (
343 IN EFI_EVENT Event,
344 IN UINT64 Timeout, OPTIONAL
345 IN UINT8 RefreshInterval OPTIONAL
346 );
347
348 /**
349 Draw a pop up windows based on the dimension, number of lines and
350 strings specified.
351
352 @param RequestedWidth The width of the pop-up.
353 @param NumberOfLines The number of lines.
354 @param ... A series of text strings that displayed in the pop-up.
355
356 **/
357 VOID
358 CreatePopUp (
359 IN UINTN ScreenWidth,
360 IN UINTN NumberOfLines,
361 ...
362 );
363
364 /**
365 Get string or password input from user.
366
367 @param MenuOption Pointer to the current input menu.
368 @param Prompt The prompt string shown on popup window.
369 @param StringPtr Destination for use input string.
370
371 @retval EFI_SUCCESS If string input is read successfully
372 @retval EFI_DEVICE_ERROR If operation fails
373
374 **/
375 EFI_STATUS
376 ReadString (
377 IN UI_MENU_OPTION *MenuOption,
378 IN CHAR16 *Prompt,
379 OUT CHAR16 *StringPtr
380 );
381
382 /**
383 Get selection for OneOf and OrderedList (Left/Right will be ignored).
384
385 @param Selection Pointer to current selection.
386 @param MenuOption Pointer to the current input menu.
387
388 @retval EFI_SUCCESS If Option input is processed successfully
389 @retval EFI_DEVICE_ERROR If operation fails
390
391 **/
392 EFI_STATUS
393 GetSelectionInputPopUp (
394 IN UI_MENU_SELECTION *Selection,
395 IN UI_MENU_OPTION *MenuOption
396 );
397
398 /**
399 This routine reads a numeric value from the user input.
400
401 @param Selection Pointer to current selection.
402 @param MenuOption Pointer to the current input menu.
403
404 @retval EFI_SUCCESS If numerical input is read successfully
405 @retval EFI_DEVICE_ERROR If operation fails
406
407 **/
408 EFI_STATUS
409 GetNumericInput (
410 IN UI_MENU_SELECTION *Selection,
411 IN UI_MENU_OPTION *MenuOption
412 );
413
414 /**
415 Update status bar on the bottom of menu.
416
417 @param MessageType The type of message to be shown.
418 @param Flags The flags in Question header.
419 @param State Set or clear.
420
421 **/
422 VOID
423 UpdateStatusBar (
424 IN UINTN MessageType,
425 IN UINT8 Flags,
426 IN BOOLEAN State
427 );
428
429 /**
430 Process Question Config.
431
432 @param Selection The UI menu selection.
433 @param Question The Question to be peocessed.
434
435 @retval EFI_SUCCESS Question Config process success.
436 @retval Other Question Config process fail.
437
438 **/
439 EFI_STATUS
440 ProcessQuestionConfig (
441 IN UI_MENU_SELECTION *Selection,
442 IN FORM_BROWSER_STATEMENT *Question
443 );
444
445 /**
446 Print Question Value according to it's storage width and display attributes.
447
448 @param Question The Question to be printed.
449 @param FormattedNumber Buffer for output string.
450 @param BufferSize The FormattedNumber buffer size in bytes.
451
452 @retval EFI_SUCCESS Print success.
453 @retval EFI_BUFFER_TOO_SMALL Buffer size is not enough for formatted number.
454
455 **/
456 EFI_STATUS
457 PrintFormattedNumber (
458 IN FORM_BROWSER_STATEMENT *Question,
459 IN OUT CHAR16 *FormattedNumber,
460 IN UINTN BufferSize
461 );
462
463 /**
464 Search an Option of a Question by its value.
465
466 @param Question The Question
467 @param OptionValue Value for Option to be searched.
468
469 @retval Pointer Pointer to the found Option.
470 @retval NULL Option not found.
471
472 **/
473 QUESTION_OPTION *
474 ValueToOption (
475 IN FORM_BROWSER_STATEMENT *Question,
476 IN EFI_HII_VALUE *OptionValue
477 );
478
479 /**
480 Process a Question's Option (whether selected or un-selected).
481
482 @param Selection Pointer to UI_MENU_SELECTION.
483 @param MenuOption The MenuOption for this Question.
484 @param Selected TRUE: if Question is selected.
485 @param OptionString Pointer of the Option String to be displayed.
486
487 @retval EFI_SUCCESS Question Option process success.
488 @retval Other Question Option process fail.
489
490 **/
491 EFI_STATUS
492 ProcessOptions (
493 IN UI_MENU_SELECTION *Selection,
494 IN UI_MENU_OPTION *MenuOption,
495 IN BOOLEAN Selected,
496 OUT CHAR16 **OptionString
497 );
498
499 /**
500 Process the help string: Split StringPtr to several lines of strings stored in
501 FormattedString and the glyph width of each line cannot exceed gHelpBlockWidth.
502
503 @param StringPtr The entire help string.
504 @param FormattedString The oupput formatted string.
505 @param RowCount TRUE: if Question is selected.
506
507 **/
508 VOID
509 ProcessHelpString (
510 IN CHAR16 *StringPtr,
511 OUT CHAR16 **FormattedString,
512 IN UINTN RowCount
513 );
514
515 /**
516 Update key's help imformation.
517
518 @param MenuOption The Menu option
519 @param Selected Whether or not a tag be selected
520
521 **/
522 VOID
523 UpdateKeyHelp (
524 IN UI_MENU_OPTION *MenuOption,
525 IN BOOLEAN Selected
526 );
527
528 /**
529 Clear retangle with specified text attribute.
530
531 @param LeftColumn Left column of retangle.
532 @param RightColumn Right column of retangle.
533 @param TopRow Start row of retangle.
534 @param BottomRow End row of retangle.
535 @param TextAttribute The character foreground and background.
536
537 **/
538 VOID
539 ClearLines (
540 UINTN LeftColumn,
541 UINTN RightColumn,
542 UINTN TopRow,
543 UINTN BottomRow,
544 UINTN TextAttribute
545 );
546
547 /**
548 Count the storage space of a Unicode string.
549
550 This function handles the Unicode string with NARROW_CHAR
551 and WIDE_CHAR control characters. NARROW_HCAR and WIDE_CHAR
552 does not count in the resultant output. If a WIDE_CHAR is
553 hit, then 2 Unicode character will consume an output storage
554 space with size of CHAR16 till a NARROW_CHAR is hit.
555
556 @param String The input string to be counted.
557
558 @return Storage space for the input string.
559
560 **/
561 UINTN
562 GetStringWidth (
563 CHAR16 *String
564 );
565
566 /**
567 Will copy LineWidth amount of a string in the OutputString buffer and return the
568 number of CHAR16 characters that were copied into the OutputString buffer.
569
570 @param InputString String description for this option.
571 @param LineWidth Width of the desired string to extract in CHAR16
572 characters
573 @param Index Where in InputString to start the copy process
574 @param OutputString Buffer to copy the string into
575
576 @return Returns the number of CHAR16 characters that were copied into the OutputString buffer.
577
578 **/
579 UINT16
580 GetLineByWidth (
581 IN CHAR16 *InputString,
582 IN UINT16 LineWidth,
583 IN OUT UINTN *Index,
584 OUT CHAR16 **OutputString
585 );
586
587 /**
588 Get the supported width for a particular op-code
589
590 @param Statement The FORM_BROWSER_STATEMENT structure passed in.
591 @param Handle The handle in the HII database being used
592
593 @return Returns the number of CHAR16 characters that is support.
594
595 **/
596 UINT16
597 GetWidth (
598 IN FORM_BROWSER_STATEMENT *Statement,
599 IN EFI_HII_HANDLE Handle
600 );
601
602 /**
603 Concatenate a narrow string to another string.
604
605 @param Destination The destination string.
606 @param Source The source string. The string to be concatenated.
607 to the end of Destination.
608
609 **/
610 VOID
611 NewStrCat (
612 CHAR16 *Destination,
613 CHAR16 *Source
614 );
615
616 /**
617 Wait for a key to be pressed by user.
618
619 @param Key The key which is pressed by user.
620
621 @retval EFI_SUCCESS The function always completed successfully.
622
623 **/
624 EFI_STATUS
625 WaitForKeyStroke (
626 OUT EFI_INPUT_KEY *Key
627 );
628
629 /**
630 Reset stack pointer to begin of the stack.
631
632 **/
633 VOID
634 ResetScopeStack (
635 VOID
636 );
637
638 /**
639 Push an Operand onto the Stack
640
641 @param Operand Operand to push.
642
643 @retval EFI_SUCCESS The value was pushed onto the stack.
644 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the
645 stack.
646
647 **/
648 EFI_STATUS
649 PushScope (
650 IN UINT8 Operand
651 );
652
653 /**
654 Pop an Operand from the Stack
655
656 @param Operand Operand to pop.
657
658 @retval EFI_SUCCESS The value was pushed onto the stack.
659 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the
660 stack.
661
662 **/
663 EFI_STATUS
664 PopScope (
665 OUT UINT8 *Operand
666 );
667
668 /**
669 Get Form given its FormId.
670
671 @param FormSet The formset which contains this form.
672 @param FormId Id of this form.
673
674 @retval Pointer The form.
675 @retval NULL Specified Form is not found in the formset.
676
677 **/
678 FORM_BROWSER_FORM *
679 IdToForm (
680 IN FORM_BROWSER_FORMSET *FormSet,
681 IN UINT16 FormId
682 );
683
684 /**
685 Search a Question in Formset scope using its QuestionId.
686
687 @param FormSet The formset which contains this form.
688 @param Form The form which contains this Question.
689 @param QuestionId Id of this Question.
690
691 @retval Pointer The Question.
692 @retval NULL Specified Question not found in the form.
693
694 **/
695 FORM_BROWSER_STATEMENT *
696 IdToQuestion (
697 IN FORM_BROWSER_FORMSET *FormSet,
698 IN FORM_BROWSER_FORM *Form,
699 IN UINT16 QuestionId
700 );
701
702 /**
703 Zero extend integer/boolean/date/time to UINT64 for comparing.
704
705 @param Value HII Value to be converted.
706
707 **/
708 VOID
709 ExtendValueToU64 (
710 IN EFI_HII_VALUE *Value
711 );
712
713 /**
714 Compare two Hii value.
715
716 @param Value1 Expression value to compare on left-hand.
717 @param Value2 Expression value to compare on right-hand.
718 @param HiiHandle Only required for string compare.
719
720 @retval EFI_INVALID_PARAMETER Could not perform comparation on two values.
721 @retval 0 Two operators equeal.
722 @return Positive value if Value1 is greater than Value2.
723 @retval Negative value if Value1 is less than Value2.
724
725 **/
726 INTN
727 CompareHiiValue (
728 IN EFI_HII_VALUE *Value1,
729 IN EFI_HII_VALUE *Value2,
730 IN EFI_HII_HANDLE HiiHandle OPTIONAL
731 );
732
733 /**
734 Evaluate the result of a HII expression
735
736 @param FormSet FormSet associated with this expression.
737 @param Form Form associated with this expression.
738 @param Expression Expression to be evaluated.
739
740 @retval EFI_SUCCESS The expression evaluated successfuly
741 @retval EFI_NOT_FOUND The Question which referenced by a QuestionId
742 could not be found.
743 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the
744 stack.
745 @retval EFI_ACCESS_DENIED The pop operation underflowed the stack
746 @retval EFI_INVALID_PARAMETER Syntax error with the Expression
747
748 **/
749 EFI_STATUS
750 EvaluateExpression (
751 IN FORM_BROWSER_FORMSET *FormSet,
752 IN FORM_BROWSER_FORM *Form,
753 IN OUT FORM_EXPRESSION *Expression
754 );
755
756 #endif // _UI_H