1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSplashScreen class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "splash.h"
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
28 #include "wx/splash.h"
34 #define wxSPLASH_TIMER_ID 9999
36 BEGIN_EVENT_TABLE(wxSplashScreen
, wxFrame
)
37 EVT_TIMER(wxSPLASH_TIMER_ID
, wxSplashScreen::OnNotify
)
38 EVT_CLOSE(wxSplashScreen::OnCloseWindow
)
41 wxSplashScreen::wxSplashScreen(const wxBitmap
& bitmap
, long splashStyle
, int milliseconds
, wxWindow
* parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
, long style
):
42 wxFrame(parent
, id
, wxEmptyString
, pos
, size
, style
)
45 m_splashStyle
= splashStyle
;
46 m_milliseconds
= milliseconds
;
48 m_window
= new wxSplashScreenWindow(bitmap
, this, -1, pos
, size
, wxNO_BORDER
);
50 // For some reason, we need to make the client size a couple of pixels
51 // bigger for all of the bitmap to show.
58 SetClientSize(bitmap
.GetWidth()+fudge
, bitmap
.GetHeight()+fudge
);
60 if (m_splashStyle
& wxSPLASH_CENTRE_ON_PARENT
)
62 else if (m_splashStyle
& wxSPLASH_CENTRE_ON_SCREEN
)
65 if (m_splashStyle
& wxSPLASH_TIMEOUT
)
67 m_timer
.SetOwner(this, wxSPLASH_TIMER_ID
);
68 m_timer
.Start(milliseconds
, TRUE
);
73 wxYield(); // Without this, you see a blank screen for an instant
76 wxSplashScreen::~wxSplashScreen()
81 void wxSplashScreen::OnNotify(wxTimerEvent
& WXUNUSED(event
))
86 void wxSplashScreen::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
93 * wxSplashScreenWindow
96 BEGIN_EVENT_TABLE(wxSplashScreenWindow
, wxWindow
)
97 //EVT_PAINT(wxSplashScreenWindow::OnPaint)
98 EVT_ERASE_BACKGROUND(wxSplashScreenWindow::OnEraseBackground
)
99 EVT_CHAR(wxSplashScreenWindow::OnChar
)
100 EVT_MOUSE_EVENTS(wxSplashScreenWindow::OnMouseEvent
)
103 wxSplashScreenWindow::wxSplashScreenWindow(const wxBitmap
& bitmap
, wxWindow
* parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
, long style
):
104 wxWindow(parent
, id
, pos
, size
, style
)
109 void wxSplashScreenWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
113 dc
.DrawBitmap(m_bitmap
, 0, 0);
116 static void wxDrawSplashBitmap(wxDC
& dc
, const wxBitmap
& bitmap
, int WXUNUSED(x
), int WXUNUSED(y
))
121 bool hiColour
= (wxDisplayDepth() >= 16) ;
123 if (bitmap
.GetPalette() && !hiColour
)
125 dc
.SetPalette(* bitmap
.GetPalette());
126 dcMem
.SetPalette(* bitmap
.GetPalette());
130 dcMem
.SelectObject(bitmap
);
131 dc
.Blit(0, 0, bitmap
.GetWidth(), bitmap
.GetHeight(), & dcMem
, 0, 0);
132 dcMem
.SelectObject(wxNullBitmap
);
135 if (bitmap
.GetPalette() && !hiColour
)
137 dc
.SetPalette(wxNullPalette
);
138 dcMem
.SetPalette(wxNullPalette
);
143 void wxSplashScreenWindow::OnEraseBackground(wxEraseEvent
& event
)
149 wxDrawSplashBitmap(* event
.GetDC(), m_bitmap
, 0, 0);
157 wxDrawSplashBitmap(dc
, m_bitmap
, 0, 0);
162 void wxSplashScreenWindow::OnMouseEvent(wxMouseEvent
& event
)
164 if (event
.LeftDown() || event
.RightDown())
165 GetParent()->Close(TRUE
);
168 void wxSplashScreenWindow::OnChar(wxKeyEvent
& WXUNUSED(event
))
170 GetParent()->Close(TRUE
);
173 #endif // wxUSE_SPLASH