File Coverage

lib/Kephra/Config/Default/ToolBars.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 11 72.7


line stmt bran cond sub pod time code
1             package Kephra::Config::Default::ToolBars;
2 1     1   1143 use strict;
  1         3  
  1         37  
3 1     1   5 use warnings;
  1         3  
  1         145  
4            
5             our $VERSION = '0.01';
6            
7             sub get {
8             return {
9 0     0 0   main_toolbar => [
10             'item file-new',
11             'item file-open',
12             'item file-print#',
13             'item file-close-current#',
14             'item file-save-all',
15             'item file-save',
16             undef,
17             'item edit-changes-undo',
18             'item edit-changes-redo',
19             undef,
20             'item edit-cut',
21             'item edit-copy',
22             'item edit-paste',
23             'item edit-replace',
24             'item edit-delete',
25             undef,
26             'checkitem view-editpanel-line-wrap',
27             'checkitem view-window-stay-on-top',
28             undef,
29             'item tool-interpreter-run-document',
30             'checkitem view-panel-output',
31             'checkitem view-panel-notepad',
32             undef,
33             'item view-dialog-find#',
34             'item view-dialog-config#',
35             'item view-dialog-keymap#',
36             ],
37             searchbar => [
38             'item view-searchbar',
39             'combobox find 180',
40             'item find-prev',
41             'item find-next',
42             undef,
43             'item goto-last-edit',
44             undef,
45             'item marker-goto-prev-all',
46             'item marker-goto-next-all',
47             undef,
48             'item goto-line',
49             'item view-dialog-find',
50             ],
51             statusbar => [
52             'textpanel cursor 66',
53             'textpanel selection 60',
54             'textpanel syntaxmode 50',
55             'textpanel codepage 40',
56             'textpanel tab 25',
57             'textpanel EOL 32',
58             'textpanel message -1',
59             ],
60             }
61             }
62            
63             1;