Grrr
Wx::Bitmap->new(...)
of course.
On 18/10/2010 14:26, Mark Dootson wrote:
Hi,
my $evthandler = Wx::EvtHandler->new;
EVT_MOUSE_EVENTS($evthandler, sub { 1 } );
Wx::SplashScreen->new( Wx::Bitmap->('my.png', wxBITMAP_TYPE_PNG),
wxSPLASH_CENTRE_ON_SCREEN|wxSPLASH_TIMEOUT,
1, undef, -1 )
-
Hi,
my $evthandler = Wx::EvtHandler->new;
EVT_MOUSE_EVENTS($evthandler, sub { 1 } );
Wx::SplashScreen->new( Wx::Bitmap->('my.png', wxBITMAP_TYPE_PNG),
wxSPLASH_CENTRE_ON_SCREEN|wxSPLASH_TIMEOUT,
1, undef, -1 )
->GetSplashWindow
02.10.2010 0:54, herbert breunung пишет:
> tricks that came to my mind, like intersecting mouse events,
> but none has worked.
Hello All,
sorry for the long silence. Maybe someone knows way to create window
with image like splash(i mean speed) and ignore mouse input???
i tried some tricks that came to my mind, like intersecting mouse events,
but none has worked.
herbert
Am 29.09.2010 20:50, schrieb Alexander:
> 29.09.2010 21:38, herbert breunung:
>> you message is a bit confusing to be, you already make a timeout by saying
>> 1, the amount of millisecond
29.09.2010 21:38, herbert breunung:
you message is a bit confusing to be, you already make a timeout by saying
1, the amount of milliseconds it should stay. or you say:
my $sc;
BEGIN {
require Wx::Perl::SplashFast;
$sc = Wx::Perl::SplashFast-
Am 29.09.2010 13:59, schrieb Шоренков Александр:
> Hello All.
> In my app i want to use SplashScreen. I found Wx::Perl::SplashFast or
> Wx::SplashScreen, and i want that splash not hide then i click to it,but hide
> by timeout.
> Wx::Perl::SplashFast->new("/image/start.png",1);
> How can i do