File Coverage

blib/lib/FBP/TreeCtrlBase.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package FBP::TreeCtrlBase;
2              
3 4     4   2312 use Mouse::Role;
  4         9  
  4         28  
4              
5             our $VERSION = '0.41';
6              
7             has OnTreeBeginDrag => (
8             is => 'ro',
9             isa => 'Str',
10             );
11              
12             has OnTreeBeginRDrag => (
13             is => 'ro',
14             isa => 'Str',
15             );
16              
17             has OnTreeEndDrag => (
18             is => 'ro',
19             isa => 'Str',
20             );
21              
22             has OnTreeBeginLabelEdit => (
23             is => 'ro',
24             isa => 'Str',
25             );
26              
27             has OnTreeEndLabelEdit => (
28             is => 'ro',
29             isa => 'Str',
30             );
31              
32             has OnTreeDeleteItem => (
33             is => 'ro',
34             isa => 'Str',
35             );
36              
37             has OnTreeItemActivated => (
38             is => 'ro',
39             isa => 'Str',
40             );
41              
42             has OnTreeItemCollapsed => (
43             is => 'ro',
44             isa => 'Str',
45             );
46              
47             has OnTreeItemCollapsing => (
48             is => 'ro',
49             isa => 'Str',
50             );
51              
52             has OnTreeItemExpanded => (
53             is => 'ro',
54             isa => 'Str',
55             );
56              
57             has OnTreeItemExpanding => (
58             is => 'ro',
59             isa => 'Str',
60             );
61              
62             has OnTreeItemRightClick => (
63             is => 'ro',
64             isa => 'Str',
65             );
66              
67             has OnTreeItemMiddleClick => (
68             is => 'ro',
69             isa => 'Str',
70             );
71              
72             has OnTreeSelChanged => (
73             is => 'ro',
74             isa => 'Str',
75             );
76              
77             has OnTreeSelChanging => (
78             is => 'ro',
79             isa => 'Str',
80             );
81              
82             has OnTreeKeyDown => (
83             is => 'ro',
84             isa => 'Str',
85             );
86              
87             has OnTreeItemMenu => (
88             is => 'ro',
89             isa => 'Str',
90             );
91              
92 4     4   1735 no Mouse::Role;
  4         7  
  4         18  
93              
94             1;