VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Library/FileExplorerLib/FileExplorerVfr.vfr

Last change on this file was 80721, checked in by vboxsync, 6 years ago

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

  • Property svn:eol-style set to native
File size: 2.2 KB
Line 
1///** @file
2//
3// File Explorer Formset
4//
5// Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
6// SPDX-License-Identifier: BSD-2-Clause-Patent
7//
8//**/
9
10#include "FormGuid.h"
11
12formset
13 guid = EFI_FILE_EXPLORE_FORMSET_GUID,
14 title = STRING_TOKEN(STR_FILE_EXPLORER_TITLE),
15 help = STRING_TOKEN(STR_NULL_STRING),
16 classguid = EFI_FILE_EXPLORE_FORMSET_GUID,
17
18 form formid = FORM_FILE_EXPLORER_ID,
19 title = STRING_TOKEN(STR_FILE_EXPLORER_TITLE);
20
21 label FORM_FILE_EXPLORER_ID;
22 label LABEL_END;
23 endform;
24
25 form formid = FORM_ADD_NEW_FILE_ID,
26 title = STRING_TOKEN(STR_ADD_NEW_FILE_TITLE);
27
28 string
29 prompt = STRING_TOKEN(STR_NEW_FILE_NAME_PROMPT),
30 help = STRING_TOKEN(STR_NEW_FILE_NAME_HELP),
31 flags = INTERACTIVE,
32 key = NEW_FILE_NAME_ID,
33 minsize = 2,
34 maxsize = 20,
35 endstring;
36
37 subtitle text = STRING_TOKEN(STR_NULL_STRING);
38
39 text
40 help = STRING_TOKEN(STR_CREATE_FILE_AND_EXIT),
41 text = STRING_TOKEN(STR_CREATE_FILE_AND_EXIT),
42 flags = INTERACTIVE,
43 key = KEY_VALUE_CREATE_FILE_AND_EXIT;
44
45 text
46 help = STRING_TOKEN(STR_NO_CREATE_FILE_AND_EXIT),
47 text = STRING_TOKEN(STR_NO_CREATE_FILE_AND_EXIT),
48 flags = INTERACTIVE,
49 key = KEY_VALUE_NO_CREATE_FILE_AND_EXIT;
50 endform;
51
52 form formid = FORM_ADD_NEW_FOLDER_ID,
53 title = STRING_TOKEN(STR_ADD_NEW_FOLDER_TITLE);
54
55 string
56 prompt = STRING_TOKEN(STR_NEW_FOLDER_NAME_PROMPT),
57 help = STRING_TOKEN(STR_NEW_FOLDER_NAME_HELP),
58 flags = INTERACTIVE,
59 key = NEW_FOLDER_NAME_ID,
60 minsize = 2,
61 maxsize = 20,
62 endstring;
63
64 subtitle text = STRING_TOKEN(STR_NULL_STRING);
65
66 text
67 help = STRING_TOKEN(STR_CREATE_FOLDER_AND_EXIT),
68 text = STRING_TOKEN(STR_CREATE_FOLDER_AND_EXIT),
69 flags = INTERACTIVE,
70 key = KEY_VALUE_CREATE_FOLDER_AND_EXIT;
71
72 text
73 help = STRING_TOKEN(STR_NO_CREATE_FOLDER_AND_EXIT),
74 text = STRING_TOKEN(STR_NO_CREATE_FOLDER_AND_EXIT),
75 flags = INTERACTIVE,
76 key = KEY_VALUE_NO_CREATE_FOLDER_AND_EXIT;
77 endform;
78
79endformset;
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette