Warning, /maui/index-fm/src/widgets/views/ShortcutsDialog.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick.Controls 2.14
0002 
0003 import org.mauikit.controls 1.3 as Maui
0004 
0005 Maui.SettingsDialog
0006 {
0007     id: control
0008     maxWidth: 400
0009     maxHeight: 400
0010     hint: 0.8
0011     title: i18n("Shortcuts")
0012     persistent: false
0013     page.showTitle: false
0014     headBar.visible: false
0015 
0016     Maui.SectionGroup
0017     {
0018         title: i18n("Navigation")
0019         description: i18n("Browser navigation with keyboard.")
0020 
0021         Maui.SectionItem
0022         {
0023             label1.text: i18n("New Tab")
0024 
0025             Maui.ToolActions
0026             {
0027                 checkable: false
0028                 autoExclusive: false
0029                 Action
0030                 {
0031                     text: "Ctrl"
0032                 }
0033 
0034                 Action
0035                 {
0036                     text: "T"
0037                 }
0038             }
0039         }
0040 
0041         Maui.SectionItem
0042         {
0043             label1.text: i18n("Close Tab")
0044 
0045             Maui.ToolActions
0046             {
0047                 checkable: false
0048                 autoExclusive: false
0049                 Action
0050                 {
0051                     text: "Ctrl"
0052                 }
0053 
0054                 Action
0055                 {
0056                     text: "W"
0057                 }
0058             }
0059         }
0060 
0061         Maui.SectionItem
0062         {
0063             label1.text: i18n("Path Edit")
0064 
0065             Maui.ToolActions
0066             {
0067                 checkable: false
0068                 autoExclusive: false
0069                 Action
0070                 {
0071                     text: "Ctrl"
0072                 }
0073 
0074                 Action
0075                 {
0076                     text: "K"
0077                 }
0078             }
0079         }
0080 
0081         Maui.SectionItem
0082         {
0083             label1.text: i18n("Terminal")
0084 
0085             Maui.ToolActions
0086             {
0087                 checkable: false
0088                 autoExclusive: false
0089                 Action
0090                 {
0091                     text: "F4"
0092                 }
0093             }
0094         }
0095 
0096         Maui.SectionItem
0097         {
0098             label1.text: i18n("Split")
0099 
0100             Maui.ToolActions
0101             {
0102                 checkable: false
0103                 autoExclusive: false
0104                 Action
0105                 {
0106                     text: "F3"
0107                 }
0108             }
0109         }
0110 
0111         Maui.SectionItem
0112         {
0113             label1.text: i18n("New File")
0114 
0115             Maui.ToolActions
0116             {
0117                 checkable: false
0118                 autoExclusive: false
0119                 Action
0120                 {
0121                     text: "Ctrl"
0122                 }
0123 
0124                 Action
0125                 {
0126                     text: "N"
0127                 }
0128             }
0129         }
0130 
0131         Maui.SectionItem
0132         {
0133             label1.text: i18n("Preview")
0134 
0135             Maui.ToolActions
0136             {
0137                 checkable: false
0138                 autoExclusive: false
0139                 Action
0140                 {
0141                     text: "SpaceBar"
0142                 }
0143             }
0144         }
0145 
0146         Maui.SectionItem
0147         {
0148             label1.text: i18n("Find Tab")
0149 
0150             Maui.ToolActions
0151             {
0152                 checkable: false
0153                 autoExclusive: false
0154                 Action
0155                 {
0156                     text: "Ctrl"
0157                 }
0158 
0159                 Action
0160                 {
0161                     text: "H"
0162                 }
0163             }
0164         }
0165 
0166         Maui.SectionItem
0167         {
0168             label1.text: i18n("Select All")
0169 
0170             Maui.ToolActions
0171             {
0172                 checkable: false
0173                 autoExclusive: false
0174                 Action
0175                 {
0176                     text: "Ctrl"
0177                 }
0178 
0179                 Action
0180                 {
0181                     text: "A"
0182                 }
0183             }
0184         }
0185 
0186         Maui.SectionItem
0187         {
0188             label1.text: i18n("Select")
0189 
0190             Maui.ToolActions
0191             {
0192                 checkable: false
0193                 autoExclusive: false
0194                 Action
0195                 {
0196                     text: "Ctrl"
0197                 }
0198 
0199                 Action
0200                 {
0201                     text: "Shift"
0202                 }
0203 
0204                 Action
0205                 {
0206                     text: "Arrows"
0207                 }
0208             }
0209         }
0210     }
0211 }