The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package FBP::Notebook;

our $VERSION = '0.41';

use Mouse;

extends 'FBP::Window';
with    'FBP::Children';

has bitmapsize => (
	is  => 'ro',
	isa => 'Str',
);

has style => (
	is  => 'ro',
	isa => 'Str',
);

has OnNotebookPageChanged => (
	is  => 'ro',
	isa => 'Str',
);

has OnNotebookPageChanging => (
	is  => 'ro',
	isa => 'Str',
);

no Mouse;
__PACKAGE__->meta->make_immutable;

1;