FBP
    
    
  
  
  
view release on metacpan or search on metacpan
t/03_simple.t view on Meta::CPAN
# DatePickerCtrl properties
my $datepicker = $fbp->find_first(
	isa => 'FBP::DatePickerCtrl',
);
isa_ok( $datepicker, 'FBP::DatePickerCtrl' );
is( $datepicker->name, 'm_datePicker1', '->name' );
is( $datepicker->style, 'wxDP_DEFAULT', '->style' );
# CalendarCtrl properties
my $calendar = $fbp->find_first(
	isa => 'FBP::CalendarCtrl',
);
isa_ok( $calendar, 'FBP::CalendarCtrl' );
is( $calendar->name, 'm_calendar1', '->name' );
is( $calendar->style, 'wxCAL_SHOW_HOLIDAYS', '->style' );
# ScrolledWindow properties
my $scrolled = $fbp->find_first(
	isa => 'FBP::ScrolledWindow',
);
isa_ok( $scrolled, 'FBP::ScrolledWindow' );
is( $scrolled->name, 'm_scrolledWindow2', '->name' );
is( $scrolled->scroll_rate_x, 5, '->scroll_rate_x' );
is( $scrolled->scroll_rate_y, 5, '->scroll_rate_y' );
t/data/simple.fbp view on Meta::CPAN
                                                            <property name="bg"></property>
                                                            <property name="context_help"></property>
                                                            <property name="context_menu">1</property>
                                                            <property name="enabled">1</property>
                                                            <property name="fg"></property>
                                                            <property name="font"></property>
                                                            <property name="hidden">0</property>
                                                            <property name="id">wxID_ANY</property>
                                                            <property name="maximum_size"></property>
                                                            <property name="minimum_size"></property>
                                                            <property name="name">m_calendar1</property>
                                                            <property name="permission">protected</property>
                                                            <property name="pos"></property>
                                                            <property name="size"></property>
                                                            <property name="style">wxCAL_SHOW_HOLIDAYS</property>
                                                            <property name="subclass"></property>
                                                            <property name="tooltip"></property>
                                                            <property name="validator_data_type"></property>
                                                            <property name="validator_style">wxFILTER_NONE</property>
                                                            <property name="validator_type">wxDefaultValidator</property>
                                                            <property name="validator_variable"></property>
( run in 0.464 second using v1.01-cache-2.11-cpan-5dc5da66d9d )