File Coverage

blib/lib/FBP/ListCtrl.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::ListCtrl;
2              
3 4     4   18 use Mouse;
  4         10  
  4         21  
4              
5             our $VERSION = '0.41';
6              
7             extends 'FBP::Control';
8              
9             has style => (
10             is => 'ro',
11             isa => 'Str',
12             );
13              
14             has OnListBeginDrag => (
15             is => 'ro',
16             isa => 'Str',
17             );
18              
19             has OnListBeginRDrag => (
20             is => 'ro',
21             isa => 'Str',
22             );
23              
24             has OnListBeginLabelEdit => (
25             is => 'ro',
26             isa => 'Str',
27             );
28              
29             has OnListEndLabelEdit => (
30             is => 'ro',
31             isa => 'Str',
32             );
33              
34             has OnListDeleteItem => (
35             is => 'ro',
36             isa => 'Str',
37             );
38              
39             has OnListDeleteAllItems => (
40             is => 'ro',
41             isa => 'Str',
42             );
43              
44             has OnListItemSelected => (
45             is => 'ro',
46             isa => 'Str',
47             );
48              
49             has OnListItemDeselected => (
50             is => 'ro',
51             isa => 'Str',
52             );
53              
54             has OnListItemActivated => (
55             is => 'ro',
56             isa => 'Str',
57             );
58              
59             has OnListItemFocused => (
60             is => 'ro',
61             isa => 'Str',
62             );
63              
64             has OnListItemMiddleClick => (
65             is => 'ro',
66             isa => 'Str',
67             );
68              
69             has OnListItemRightClick => (
70             is => 'ro',
71             isa => 'Str',
72             );
73              
74             has OnListKeyDown => (
75             is => 'ro',
76             isa => 'Str',
77             );
78              
79             has OnListInsertItem => (
80             is => 'ro',
81             isa => 'Str',
82             );
83              
84             has OnListColClick => (
85             is => 'ro',
86             isa => 'Str',
87             );
88              
89             has OnListColRightClick => (
90             is => 'ro',
91             isa => 'Str',
92             );
93              
94             has OnListColBeginDrag => (
95             is => 'ro',
96             isa => 'Str',
97             );
98              
99             has OnListColDragging => (
100             is => 'ro',
101             isa => 'Str',
102             );
103              
104             has OnListColEndDrag => (
105             is => 'ro',
106             isa => 'Str',
107             );
108              
109             has OnListCacheHint => (
110             is => 'ro',
111             isa => 'Str',
112             );
113              
114 4     4   2155 no Mouse;
  4         52  
  4         18  
115             __PACKAGE__->meta->make_immutable;
116              
117             1;