]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Mod/Color.pm
Remove magic LaTeX::TikZ::Interface->import
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Mod / Color.pm
1 package LaTeX::TikZ::Mod::Color;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Mod::Color - A modifier that sets the line color.
9
10 =head1 VERSION
11
12 Version 0.01
13
14 =cut
15
16 our $VERSION = '0.01';
17
18 use LaTeX::TikZ::Interface;
19
20 use Any::Moose;
21
22 with 'LaTeX::TikZ::Mod';
23
24 has 'color' => (
25  is       => 'ro',
26  isa      => 'Str',
27  required => 1,
28 );
29
30 sub tag { ref $_[0] }
31
32 sub cover { $_[0]->color eq $_[1]->color }
33
34 sub declare { }
35
36 sub apply { 'color=' . $_[0]->color }
37
38 LaTeX::TikZ::Interface->register(
39  color => sub {
40   shift;
41
42   __PACKAGE__->new(color => $_[0]);
43  },
44 );
45
46 __PACKAGE__->meta->make_immutable;
47
48 =head1 AUTHOR
49
50 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
51
52 You can contact me by mail or on C<irc.perl.org> (vincent).
53
54 =head1 BUGS
55
56 Please report any bugs or feature requests to C<bug-latex-tikz at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=LaTeX-TikZ>.
57 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
58
59 =head1 SUPPORT
60
61 You can find documentation for this module with the perldoc command.
62
63     perldoc LaTeX::TikZ
64
65 =head1 COPYRIGHT & LICENSE
66
67 Copyright 2010 Vincent Pit, all rights reserved.
68
69 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
70
71 =cut
72
73 1; # End of LaTeX::TikZ::Mod::Color