1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/splash.cpp
3 // Purpose: wxSplashScreen class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
25 #include "wx/splash.h"
28 #include "wx/dcmemory.h"
29 #include "wx/dcclient.h"
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
37 #define wxSPLASH_TIMER_ID 9999
39 IMPLEMENT_DYNAMIC_CLASS(wxSplashScreen
, wxFrame
)
40 BEGIN_EVENT_TABLE(wxSplashScreen
, wxFrame
)
41 EVT_TIMER(wxSPLASH_TIMER_ID
, wxSplashScreen::OnNotify
)
42 EVT_CLOSE(wxSplashScreen::OnCloseWindow
)
45 /* Note that unless we pass a non-default size to the frame, SetClientSize
46 * won't work properly under Windows, and the splash screen frame is sized
50 wxSplashScreen::wxSplashScreen(const wxBitmap
& bitmap
, long splashStyle
, int milliseconds
,
51 wxWindow
* parent
, wxWindowID id
, const wxPoint
& pos
,
52 const wxSize
& size
, long style
)
53 : wxFrame(parent
, id
, wxEmptyString
, wxPoint(0,0), wxSize(100, 100), style
)
55 // splash screen must not be used as parent by the other windows because it
56 // is going to disappear soon, indicate it by giving it this special style
57 SetExtraStyle(GetExtraStyle() | wxWS_EX_TRANSIENT
);
59 #if defined(__WXGTK20__)
60 gtk_window_set_type_hint(GTK_WINDOW(m_widget
),
61 GDK_WINDOW_TYPE_HINT_SPLASHSCREEN
);
65 m_splashStyle
= splashStyle
;
66 m_milliseconds
= milliseconds
;
68 m_window
= new wxSplashScreenWindow(bitmap
, this, wxID_ANY
, pos
, size
, wxNO_BORDER
);
70 SetClientSize(bitmap
.GetWidth(), bitmap
.GetHeight());
72 if (m_splashStyle
& wxSPLASH_CENTRE_ON_PARENT
)
74 else if (m_splashStyle
& wxSPLASH_CENTRE_ON_SCREEN
)
77 if (m_splashStyle
& wxSPLASH_TIMEOUT
)
79 m_timer
.SetOwner(this, wxSPLASH_TIMER_ID
);
80 m_timer
.Start(milliseconds
, true);
85 #if defined( __WXMSW__ ) || defined(__WXMAC__)
86 Update(); // Without this, you see a blank screen for an instant
87 #elif defined(__WXGTK20__)
88 // we don't need to do anything at least on wxGTK with GTK+ 2.12.9
90 wxYieldIfNeeded(); // Should eliminate this
94 wxSplashScreen::~wxSplashScreen()
99 void wxSplashScreen::OnNotify(wxTimerEvent
& WXUNUSED(event
))
104 void wxSplashScreen::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
110 // ----------------------------------------------------------------------------
111 // wxSplashScreenWindow
112 // ----------------------------------------------------------------------------
114 BEGIN_EVENT_TABLE(wxSplashScreenWindow
, wxWindow
)
116 EVT_PAINT(wxSplashScreenWindow::OnPaint
)
118 EVT_ERASE_BACKGROUND(wxSplashScreenWindow::OnEraseBackground
)
119 EVT_CHAR(wxSplashScreenWindow::OnChar
)
120 EVT_MOUSE_EVENTS(wxSplashScreenWindow::OnMouseEvent
)
123 wxSplashScreenWindow::wxSplashScreenWindow(const wxBitmap
& bitmap
, wxWindow
* parent
,
124 wxWindowID id
, const wxPoint
& pos
,
125 const wxSize
& size
, long style
)
126 : wxWindow(parent
, id
, pos
, size
, style
)
130 #if !defined(__WXGTK__) && wxUSE_PALETTE
131 bool hiColour
= (wxDisplayDepth() >= 16) ;
133 if (bitmap
.GetPalette() && !hiColour
)
135 SetPalette(* bitmap
.GetPalette());
140 // VZ: why don't we do it under wxGTK?
141 #if !defined(__WXGTK__) && wxUSE_PALETTE
142 #define USE_PALETTE_IN_SPLASH
145 static void wxDrawSplashBitmap(wxDC
& dc
, const wxBitmap
& bitmap
, int WXUNUSED(x
), int WXUNUSED(y
))
149 #ifdef USE_PALETTE_IN_SPLASH
150 bool hiColour
= (wxDisplayDepth() >= 16) ;
152 if (bitmap
.GetPalette() && !hiColour
)
154 dcMem
.SetPalette(* bitmap
.GetPalette());
156 #endif // USE_PALETTE_IN_SPLASH
158 dcMem
.SelectObjectAsSource(bitmap
);
159 dc
.Blit(0, 0, bitmap
.GetWidth(), bitmap
.GetHeight(), &dcMem
, 0, 0, wxCOPY
,
160 true /* use mask */);
161 dcMem
.SelectObject(wxNullBitmap
);
163 #ifdef USE_PALETTE_IN_SPLASH
164 if (bitmap
.GetPalette() && !hiColour
)
166 dcMem
.SetPalette(wxNullPalette
);
168 #endif // USE_PALETTE_IN_SPLASH
171 void wxSplashScreenWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
175 wxDrawSplashBitmap(dc
, m_bitmap
, 0, 0);
178 void wxSplashScreenWindow::OnEraseBackground(wxEraseEvent
& event
)
180 if (event
.GetDC() && m_bitmap
.Ok())
182 wxDrawSplashBitmap(* event
.GetDC(), m_bitmap
, 0, 0);
188 wxDrawSplashBitmap(dc
, m_bitmap
, 0, 0);
192 void wxSplashScreenWindow::OnMouseEvent(wxMouseEvent
& event
)
194 if (event
.LeftDown() || event
.RightDown())
195 GetParent()->Close(true);
200 void wxSplashScreenWindow::OnChar(wxKeyEvent
& WXUNUSED(event
))
202 GetParent()->Close(true);
205 #endif // wxUSE_SPLASH