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