1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Splash screen class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma interface "splash.h"
20 #include "wx/bitmap.h"
28 * A window for displaying a splash screen
31 #define wxSPLASH_CENTRE_ON_PARENT 0x01
32 #define wxSPLASH_CENTRE_ON_SCREEN 0x02
33 #define wxSPLASH_NO_CENTRE 0x00
34 #define wxSPLASH_TIMEOUT 0x04
35 #define wxSPLASH_NO_TIMEOUT 0x00
37 class WXDLLEXPORT wxSplashScreenWindow
;
43 class WXDLLEXPORT wxSplashScreen
: public wxFrame
46 wxSplashScreen(const wxBitmap
& bitmap
, long splashStyle
, int milliseconds
, wxWindow
* parent
, wxWindowID id
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
, long style
= wxSIMPLE_BORDER
|wxFRAME_FLOAT_ON_PARENT
);
49 void OnCloseWindow(wxCloseEvent
& event
);
50 void OnNotify(wxTimerEvent
& event
);
52 long GetSplashStyle() const { return m_splashStyle
; }
53 wxSplashScreenWindow
* GetSplashWindow() const { return m_window
; }
54 int GetTimeout() const { return m_milliseconds
; }
57 wxSplashScreenWindow
* m_window
;
66 * wxSplashScreenWindow
69 class WXDLLEXPORT wxSplashScreenWindow
: public wxWindow
72 wxSplashScreenWindow(const wxBitmap
& bitmap
, wxWindow
* parent
, wxWindowID id
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
, long style
= wxNO_BORDER
);
74 void OnPaint(wxPaintEvent
& event
);
75 void OnEraseBackground(wxEraseEvent
& event
);
76 void OnMouseEvent(wxMouseEvent
& event
);
77 void OnChar(wxKeyEvent
& event
);
79 void SetBitmap(const wxBitmap
& bitmap
) { m_bitmap
= bitmap
; }
80 wxBitmap
& GetBitmap() { return m_bitmap
; }