aboutsummaryrefslogtreecommitdiff
path: root/src/windows/leash/kfwribbon.xml
blob: 975991b0a57d04a466638b5acaf0eb3bc2a84e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?xml version="1.0" encoding="utf-8"?>
<Application xmlns="http://schemas.microsoft.com/windows/2009/Ribbon">
  <Application.Commands>
    <Command Name="cmdAppMenu" LabelTitle="Application Menu" />
    <Command Name="cmdQAT" LabelTitle="" />
    <Command Name="cmdHelp" LabelTitle="Help" />
    <Command Name="cmdAbout" LabelTitle="About MIT Kerberos" />
    <Command Name="cmdExit" LabelTitle="Exit application" />
    <Command Name="cmdHomeTab" LabelTitle="Home" Keytip="H" />
    <Command Name="cmdOptionsTab" LabelTitle="Options" Keytip="O" />
    <Command Name="cmdChangePasswordGroup" LabelTitle="" />
    <Command Name="cmdTicketGroup" LabelTitle=" " />
    <Command Name="cmdViewOptionsGroup" LabelTitle="View Options" />
    <Command Name="cmdTicketOptionsGroup" LabelTitle="Ticket Options" />
    <Command Name="cmdGetTicketButton"
             LabelTitle="Get Ticket"
             Keytip="T">
      <Command.LargeImages>
        <Image>res/getticketlarge.bmp</Image>
      </Command.LargeImages>
    </Command>
    <Command Name="cmdRenewTicketButton"
             LabelTitle="Renew Ticket"
             Keytip="R">
      <Command.LargeImages>
        <Image>res/renewlarge.bmp</Image>
      </Command.LargeImages>
    </Command>
    <Command Name="cmdDestroyTicketButton"
             LabelTitle="Destroy Ticket"
             Keytip="D">
      <Command.LargeImages>
        <Image>res/destroylarge.bmp</Image>
      </Command.LargeImages>
    </Command>
    <Command Name="cmdMakeDefaultButton"
             LabelTitle="Make Default"
             Keytip="M">
      <Command.LargeImages>
        <Image>res/makedefaultlarge.bmp</Image>
      </Command.LargeImages>
    </Command>
    <Command Name="cmdChangePasswordButton"
             LabelTitle="Change Password"
             Keytip="C">
      <Command.LargeImages>
        <Image>res/cpwlarge.bmp</Image>
      </Command.LargeImages>
    </Command>
    <Command Name="cmdIssuedCheckBox"
             LabelTitle="Issued"
             Keytip="I" />
    <Command Name="cmdRenewUntilCheckBox"
             LabelTitle="Renewable Until"
             Keytip="R" />
    <Command Name="cmdValidUntilCheckBox"
             LabelTitle="Valid Until"
             Keytip="V" />
    <Command Name="cmdEncTypeCheckBox"
             LabelTitle="Encryption Type"
             Keytip="E" />
    <Command Name="cmdFlagsCheckBox"
             LabelTitle="Flags"
             Keytip="F" />
    <Command Name="cmdCcacheNameCheckBox"
             LabelTitle="Credential Cache Name"
             Keytip="N" />
    <Command Name="cmdAutoRenewCheckBox"
             LabelTitle="Automatic Ticket Renewal"
             Keytip="R" />
    <Command Name="cmdExpireAlarmCheckBox"
             LabelTitle="Expiration Alarm"
             Keytip="A" />
    <Command Name="cmdDestroyOnExitCheckBox"
             LabelTitle="Destroy Tickets on Exit"
             Keytip="D" />
    <Command Name="cmdMixedCaseCheckBox"
             LabelTitle="Allow Mixed Case Realm Names"
             Keytip="M" />
  </Application.Commands>
  <Application.Views>
    <Ribbon>
      <Ribbon.ApplicationMenu>
        <ApplicationMenu CommandName="cmdAppMenu">
          <MenuGroup>
            <Button CommandName="cmdHelp" />
            <Button CommandName="cmdAbout" />
            <Button CommandName="cmdExit" />
          </MenuGroup>
        </ApplicationMenu>
      </Ribbon.ApplicationMenu>
      <Ribbon.QuickAccessToolbar>
        <QuickAccessToolbar CommandName="cmdQAT" />
      </Ribbon.QuickAccessToolbar>
      <Ribbon.Tabs>
        <Tab CommandName="cmdHomeTab">
          <Tab.ScalingPolicy>
            <ScalingPolicy>
              <ScalingPolicy.IdealSizes>
                <Scale Group="cmdTicketGroup" Size="Large" />
                <Scale Group="cmdChangePasswordGroup" Size="Large" />
              </ScalingPolicy.IdealSizes>
            </ScalingPolicy>
          </Tab.ScalingPolicy>
          <Group CommandName="cmdTicketGroup" SizeDefinition="FourButtons">
            <Button CommandName="cmdGetTicketButton" />
            <Button CommandName="cmdRenewTicketButton" />
            <Button CommandName="cmdDestroyTicketButton" />
            <Button CommandName="cmdMakeDefaultButton" />
          </Group>
          <Group CommandName="cmdChangePasswordGroup"
                 SizeDefinition="OneButton">
            <Button CommandName="cmdChangePasswordButton" />
          </Group>
        </Tab>
        <Tab CommandName="cmdOptionsTab">
          <Group CommandName="cmdViewOptionsGroup">
            <CheckBox CommandName="cmdIssuedCheckBox" />
            <CheckBox CommandName="cmdRenewUntilCheckBox" />
            <CheckBox CommandName="cmdValidUntilCheckBox" />
            <CheckBox CommandName="cmdEncTypeCheckBox" />
            <CheckBox CommandName="cmdFlagsCheckBox" />
            <CheckBox CommandName="cmdCcacheNameCheckBox" />
          </Group>
          <Group CommandName="cmdTicketOptionsGroup" >
            <CheckBox CommandName="cmdAutoRenewCheckBox" />
            <CheckBox CommandName="cmdExpireAlarmCheckBox" />
            <CheckBox CommandName="cmdDestroyOnExitCheckBox" />
            <CheckBox CommandName="cmdMixedCaseCheckBox" />
          </Group>
        </Tab>
      </Ribbon.Tabs>
    </Ribbon>
  </Application.Views>
</Application>