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

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