• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1///** @file
2//
3//  Device Manager formset.
4//
5//  Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR>
6//  This program and the accompanying materials
7//  are licensed and made available under the terms and conditions of the BSD License
8//  which accompanies this distribution.  The full text of the license may be found at
9//  http://opensource.org/licenses/bsd-license.php
10//
11//  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12//  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13//
14//**/
15
16#define FORMSET_GUID  { 0x3ebfa8e6, 0x511d, 0x4b5b, 0xa9, 0x5f, 0xfb, 0x38, 0x26, 0xf, 0x1c, 0x27 }
17
18#define LABEL_DEVICES_LIST                 0x1100
19#define LABEL_NETWORK_DEVICE_LIST_ID       0x1101
20#define LABEL_NETWORK_DEVICE_ID            0x1102
21#define LABEL_END                          0xffff
22
23#define DEVICE_MANAGER_FORM_ID             0x1000
24#define NETWORK_DEVICE_LIST_FORM_ID        0x1001
25#define NETWORK_DEVICE_FORM_ID             0x1002
26
27formset
28  guid      = FORMSET_GUID,
29  title     = STRING_TOKEN(STR_EDKII_MENU_TITLE),
30  help      = STRING_TOKEN(STR_EDKII_MENU_HELP),
31  classguid = gEfiIfrFrontPageGuid,
32
33  form formid = DEVICE_MANAGER_FORM_ID,
34    title  = STRING_TOKEN(STR_EDKII_MENU_TITLE);
35    subtitle text = STRING_TOKEN(STR_DEVICES_LIST);
36
37    label LABEL_DEVICES_LIST;
38    label LABEL_END;
39
40    subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
41    subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
42    subtitle text = STRING_TOKEN(STR_EXIT_STRING);
43  endform;
44
45  form formid = NETWORK_DEVICE_LIST_FORM_ID,
46    title = STRING_TOKEN(STR_FORM_NETWORK_DEVICE_LIST_TITLE);
47    subtitle text = STRING_TOKEN(STR_NETWORK_DEVICE_LIST_STRING);
48
49    label LABEL_NETWORK_DEVICE_LIST_ID;
50    label LABEL_END;
51
52    subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
53    subtitle text = STRING_TOKEN(STR_EXIT_STRING);
54  endform;
55
56  form formid = NETWORK_DEVICE_FORM_ID,
57    title = STRING_TOKEN(STR_FORM_NETWORK_DEVICE_TITLE);
58    subtitle text = STRING_TOKEN(STR_NETWORK_DEVICE_STRING);
59
60    label LABEL_NETWORK_DEVICE_ID;
61    label LABEL_END;
62
63    subtitle text = STRING_TOKEN(STR_EMPTY_STRING);
64    subtitle text = STRING_TOKEN(STR_EXIT_STRING);
65  endform;
66endformset;