1Prima::StartupWindow(3)User Contributed Perl DocumentatioPnrima::StartupWindow(3)
2
3
4
6 Prima::StartupWindow - a simplistic startup banner window
7
9 The module, when imported by "use" call, creates a temporary window
10 which appears with 'loading...' text while the modules required by a
11 program are loading. The window parameters can be modified by passing
12 custom parameters after "use Prima::StartupWindow" statement, which are
13 passed to "Prima::Window" class as creation parameters. The window is
14 discarded by explicit unimporting of the module ( see "SYNOPSIS" ).
15
17 use Prima;
18 use Prima::Application;
19 use Prima::StartupWindow; # the window is created here
20
21 use Prima::Buttons;
22 .... # lots of 'use' of other modules
23
24 no Prima::StartupWindow; # the window is discarded here
25
27 Anton Berezin <tobez@tobez.org>, Dmitry Karasik,
28 <dmitry@karasik.eu.org> ( documentation ).
29
31 Prima, Prima::Application.
32
33
34
35perl v5.30.1 2020-01-30 Prima::StartupWindow(3)