| blib/lib/FBP/ToolBar.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::ToolBar; | ||||||
| 2 | |||||||
| 3 | 4 | 4 | 23 | use Mouse; | |||
| 4 | 8 | ||||||
| 4 | 25 | ||||||
| 4 | |||||||
| 5 | our $VERSION = '0.41'; | ||||||
| 6 | |||||||
| 7 | extends 'FBP::Window'; | ||||||
| 8 | with 'FBP::Children'; | ||||||
| 9 | |||||||
| 10 | has bitmapsize => ( | ||||||
| 11 | is => 'ro', | ||||||
| 12 | isa => 'Str', | ||||||
| 13 | ); | ||||||
| 14 | |||||||
| 15 | has margins => ( | ||||||
| 16 | is => 'ro', | ||||||
| 17 | isa => 'Str', | ||||||
| 18 | ); | ||||||
| 19 | |||||||
| 20 | has packing => ( | ||||||
| 21 | is => 'ro', | ||||||
| 22 | isa => 'Int', | ||||||
| 23 | ); | ||||||
| 24 | |||||||
| 25 | has separation => ( | ||||||
| 26 | is => 'ro', | ||||||
| 27 | isa => 'Int', | ||||||
| 28 | ); | ||||||
| 29 | |||||||
| 30 | has style => ( | ||||||
| 31 | is => 'ro', | ||||||
| 32 | isa => 'Str', | ||||||
| 33 | ); | ||||||
| 34 | |||||||
| 35 | 4 | 4 | 1376 | no Mouse; | |||
| 4 | 8 | ||||||
| 4 | 17 | ||||||
| 36 | __PACKAGE__->meta->make_immutable; | ||||||
| 37 | |||||||
| 38 | 1; |