1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
package # hide from the CPAN
DummyDriver;
use Moose;
with 'Graphics::Primitive::Driver';
has 'draw_component_called' => (
is => 'rw',
isa => 'Int',
default => sub { 0 }
);
sub _do_fill { }
sub _do_stroke { }
sub _draw_arc { }
sub _draw_bezier { }
sub _draw_canvas { }
sub _draw_circle { }
sub _draw_component {
my ($self, $comp) = @_;
$self->draw_component_called(
$self->draw_component_called + 1
);
}
sub _draw_ellipse { }
sub _draw_line { }
sub _draw_path { }
sub _draw_polygon { }
sub _draw_rectangle { }
sub _draw_textbox { }
sub _finish_page { }
sub _resize { }
sub data { }
sub get_textbox_layout { }
sub height { }
sub reset { }
sub width { }
sub write { }
no Moose;
1;
|