> I use this to get the style flasg and set it to on_top:
>
> ---------------------------------
> my $style_def = $frame->GetWindowStyleFlag() ;
> my $style_top = $style_def|wxSTAY_ON_TOP ;
>
> $frame->SetWindowStyleFlag( $style_top );
> ---------------------------------
>
> But I need to know what style are in the $style_def to make more
> usefull changes, like see if the window are on_top and cutout
> the on_top manteining the other styles! How I do this if $style_def
> has only a number reference for XS?
$on_top & ~wxSTAY_ON_TOP
Regards
Mattia
|