package RolePage; use Moose::Role; has textFont => ( is => 'rw', isa => 'Str', default => 'Courier' ); has textSize => ( is => 'rw', isa => 'Int', default => 12 ); #### package CairoPage; use Moose; use Cairo; with 'RolePage'; has cairoFont => ( is => 'bare', isa => 'Cairo::ScaledFont' );