blob: 7d96ebf5518fddb81bb14e0cc2688c32a7c9ba2a [file] [log] [blame]
Sean Condonb2c483c2019-01-16 20:28:55 +00001<!--
2~ Copyright 2019-present Open Networking Foundation
3~
4~ Licensed under the Apache License, Version 2.0 (the "License");
5~ you may not use this file except in compliance with the License.
6~ You may obtain a copy of the License at
7~
8~ http://www.apache.org/licenses/LICENSE-2.0
9~
10~ Unless required by applicable law or agreed to in writing, software
11~ distributed under the License is distributed on an "AS IS" BASIS,
12~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13~ See the License for the specific language governing permissions and
14~ limitations under the License.
15-->
16<div id="quickhelp" [@quickHelpState]="ks.quickHelpShown">
17 <div class="help" *ngIf="ks.quickHelpShown">
18 <p class="title">{{lionFn("qh_title")}}</p>
19 <!-- TODO: drive this through the keys service keyHandler -->
20 <table class="qhrow">
21 <tr>
22 <td class="key">&#92;</td>
Sean Condonbed2e032019-04-17 22:22:49 +010023 <td class="desc">{{lionFn("qh_hint_show_hide_qh")}}</td>
Sean Condonb2c483c2019-01-16 20:28:55 +000024 </tr>
25 <tr>
26 <td class="key">/</td>
Sean Condonbed2e032019-04-17 22:22:49 +010027 <td class="desc">{{lionFn("qh_hint_show_hide_qh")}}</td>
Sean Condonb2c483c2019-01-16 20:28:55 +000028 </tr>
29 <tr>
30 <td class="key">Esc</td>
Sean Condonbed2e032019-04-17 22:22:49 +010031 <td class="desc">{{lionFn("qh_hint_esc")}}</td>
Sean Condonb2c483c2019-01-16 20:28:55 +000032 </tr>
33 <tr>
34 <td class="key">T</td>
Sean Condonbed2e032019-04-17 22:22:49 +010035 <td class="desc">{{lionFn("qh_hint_t")}}</td>
Sean Condonb2c483c2019-01-16 20:28:55 +000036 </tr>
37 </table>
38 <hr class="qhrowsep">
39 <table class="qhrow">
Sean Condonbed2e032019-04-17 22:22:49 +010040 <tr *ngFor="let vk of viewKeys; i as index">
41 <ng-container *ngFor="let vkrow of vk">
42 <td class="key">{{vkrow.keystroke}}</td>
43 <td class="desc">{{vkrow.text}}</td>
44 </ng-container>
Sean Condonb2c483c2019-01-16 20:28:55 +000045 </tr>
46 </table>
Sean Condonbed2e032019-04-17 22:22:49 +010047 <hr class="qhrowsep">
Sean Condonb2c483c2019-01-16 20:28:55 +000048 <div class="qhrow">
49 <table class="qh-r4-c0">
50 <tr>
Sean Condonb0a196a2019-04-19 09:50:44 +010051 <td class="key">{{lionFnTopo("click")}}</td>
52 <td class="desc">{{lionFnTopo("qh_gest_click")}}</td>
Sean Condonb2c483c2019-01-16 20:28:55 +000053 </tr>
54 <tr>
Sean Condonb0a196a2019-04-19 09:50:44 +010055 <td class="key">{{lionFnTopo("shift_click")}}</td>
56 <td class="desc">{{lionFnTopo("qh_gest_shift_click")}}</td>
Sean Condonb2c483c2019-01-16 20:28:55 +000057 </tr>
58 <tr>
Sean Condonb0a196a2019-04-19 09:50:44 +010059 <td class="key">{{lionFnTopo("drag")}}</td>
60 <td class="desc">{{lionFnTopo("qh_gest_drag")}}</td>
Sean Condonb2c483c2019-01-16 20:28:55 +000061 </tr>
62 <tr>
Sean Condonb0a196a2019-04-19 09:50:44 +010063 <td class="key">{{lionFnTopo("cmd_scroll")}}</td>
64 <td class="desc">{{lionFnTopo("qh_gest_cmd_scroll")}}</td>
Sean Condonb2c483c2019-01-16 20:28:55 +000065 </tr>
66 <tr>
Sean Condonb0a196a2019-04-19 09:50:44 +010067 <td class="key" y="48">{{lionFnTopo("drag")}}</td>
68 <td class="desc" y="48" x="74.84375">{{lionFnTopo("qh_gest_cmd_drag")}}</tr>
Sean Condonb2c483c2019-01-16 20:28:55 +000069 </table>
70 </div>
71 </div>
72</div>