]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: splash.h | |
e54c96f1 | 3 | // Purpose: interface of wxSplashScreen |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxSplashScreen | |
7c913512 | 11 | |
23324ae1 | 12 | wxSplashScreen shows a window with a thin border, displaying a bitmap |
e725ba4f FM |
13 | describing your application. |
14 | ||
15 | Show it in application initialisation, and then either explicitly destroy | |
23324ae1 | 16 | it or let it time-out. |
7c913512 | 17 | |
23324ae1 | 18 | Example usage: |
7c913512 | 19 | |
23324ae1 | 20 | @code |
e725ba4f | 21 | wxBitmap bitmap; |
23324ae1 FM |
22 | if (bitmap.LoadFile("splash16.png", wxBITMAP_TYPE_PNG)) |
23 | { | |
24 | wxSplashScreen* splash = new wxSplashScreen(bitmap, | |
25 | wxSPLASH_CENTRE_ON_SCREEN|wxSPLASH_TIMEOUT, | |
6bfc18d0 | 26 | 6000, NULL, -1, wxDefaultPosition, wxDefaultSize, |
23324ae1 FM |
27 | wxBORDER_SIMPLE|wxSTAY_ON_TOP); |
28 | } | |
29 | wxYield(); | |
30 | @endcode | |
7c913512 | 31 | |
23324ae1 FM |
32 | @library{wxadv} |
33 | @category{managedwnd} | |
34 | */ | |
35 | class wxSplashScreen : public wxFrame | |
36 | { | |
37 | public: | |
38 | /** | |
39 | Construct the splash screen passing a bitmap, a style, a timeout, a window id, | |
e725ba4f FM |
40 | optional position and size, and a window style. |
41 | ||
4cc4bfaf | 42 | @a splashStyle is a bitlist of some of the following: |
e725ba4f FM |
43 | - wxSPLASH_CENTRE_ON_PARENT |
44 | - wxSPLASH_CENTRE_ON_SCREEN | |
45 | - wxSPLASH_NO_CENTRE | |
46 | - wxSPLASH_TIMEOUT | |
47 | - wxSPLASH_NO_TIMEOUT | |
48 | ||
4cc4bfaf | 49 | @a milliseconds is the timeout in milliseconds. |
23324ae1 FM |
50 | */ |
51 | wxSplashScreen(const wxBitmap& bitmap, long splashStyle, | |
52 | int milliseconds, | |
53 | wxWindow* parent, | |
54 | wxWindowID id, | |
55 | const wxPoint& pos = wxDefaultPosition, | |
56 | const wxSize& size = wxDefaultSize, | |
57 | long style = wxBORDER_SIMPLE|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP); | |
58 | ||
59 | /** | |
60 | Destroys the splash screen. | |
61 | */ | |
adaaa686 | 62 | virtual ~wxSplashScreen(); |
23324ae1 FM |
63 | |
64 | /** | |
e725ba4f | 65 | Returns the splash style (see wxSplashScreen() for details). |
23324ae1 | 66 | */ |
328f5751 | 67 | long GetSplashStyle() const; |
23324ae1 FM |
68 | |
69 | /** | |
70 | Returns the window used to display the bitmap. | |
71 | */ | |
328f5751 | 72 | wxSplashScreenWindow* GetSplashWindow() const; |
23324ae1 FM |
73 | |
74 | /** | |
75 | Returns the timeout in milliseconds. | |
76 | */ | |
328f5751 | 77 | int GetTimeout() const; |
23324ae1 FM |
78 | |
79 | /** | |
80 | Reimplement this event handler if you want to set an application variable on | |
81 | window destruction, for example. | |
82 | */ | |
83 | void OnCloseWindow(wxCloseEvent& event); | |
84 | }; | |
e54c96f1 | 85 |