]> git.saurik.com Git - wxWidgets.git/blame - src/generic/splash.cpp
fix MSVC warnings about possibly uninitialized variables; some reindentation
[wxWidgets.git] / src / generic / splash.cpp
CommitLineData
3f4fc796 1/////////////////////////////////////////////////////////////////////////////
ed4b0fdc 2// Name: src/generic/splash.cpp
3f4fc796
JS
3// Purpose: wxSplashScreen class
4// Author: Julian Smart
5// Modified by:
6// Created: 28/6/2000
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
3f4fc796
JS
10/////////////////////////////////////////////////////////////////////////////
11
3f4fc796
JS
12// For compilers that support precompilation, includes "wx/wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
ed4b0fdc 16 #pragma hdrstop
3f4fc796
JS
17#endif
18
1e6feb95
VZ
19#if wxUSE_SPLASH
20
231475bf
VS
21#ifdef __WXGTK20__
22 #include <gtk/gtk.h>
23#endif
24
3f4fc796
JS
25#include "wx/splash.h"
26
ed4b0fdc
WS
27#ifndef WX_PRECOMP
28 #include "wx/dcmemory.h"
29 #include "wx/dcclient.h"
30#endif
231475bf 31
3f4fc796 32
aac39d1d
FM
33// ----------------------------------------------------------------------------
34// wxSplashScreen
35// ----------------------------------------------------------------------------
3f4fc796 36
aac39d1d 37#define wxSPLASH_TIMER_ID 9999
d1d2cd38 38
aac39d1d 39IMPLEMENT_DYNAMIC_CLASS(wxSplashScreen, wxFrame)
3f4fc796
JS
40BEGIN_EVENT_TABLE(wxSplashScreen, wxFrame)
41 EVT_TIMER(wxSPLASH_TIMER_ID, wxSplashScreen::OnNotify)
42 EVT_CLOSE(wxSplashScreen::OnCloseWindow)
43END_EVENT_TABLE()
44
97f1fb19
JS
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
47 * slightly too small.
48 */
49
aac39d1d
FM
50wxSplashScreen::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)
3f4fc796 54{
d0247623 55 // At least for GTK+ 2.0, this hint is not available.
95561814
JS
56#if defined(__WXGTK20__)
57#if GTK_CHECK_VERSION(2,2,0)
231475bf
VS
58 gtk_window_set_type_hint(GTK_WINDOW(m_widget),
59 GDK_WINDOW_TYPE_HINT_SPLASHSCREEN);
95561814 60#endif
231475bf 61#endif
2997ca30 62
3f4fc796
JS
63 m_window = NULL;
64 m_splashStyle = splashStyle;
65 m_milliseconds = milliseconds;
66
ca65c044 67 m_window = new wxSplashScreenWindow(bitmap, this, wxID_ANY, pos, size, wxNO_BORDER);
3f4fc796 68
97f1fb19 69 SetClientSize(bitmap.GetWidth(), bitmap.GetHeight());
3f4fc796
JS
70
71 if (m_splashStyle & wxSPLASH_CENTRE_ON_PARENT)
72 CentreOnParent();
73 else if (m_splashStyle & wxSPLASH_CENTRE_ON_SCREEN)
74 CentreOnScreen();
75
76 if (m_splashStyle & wxSPLASH_TIMEOUT)
77 {
78 m_timer.SetOwner(this, wxSPLASH_TIMER_ID);
ca65c044 79 m_timer.Start(milliseconds, true);
3f4fc796
JS
80 }
81
ca65c044 82 Show(true);
3f4fc796 83 m_window->SetFocus();
913ff1a7 84#if defined( __WXMSW__ ) || defined(__WXMAC__)
8d079279 85 Update(); // Without this, you see a blank screen for an instant
aac39d1d
FM
86#elif defined(__WXGTK20__)
87 // we don't need to do anything at least on wxGTK with GTK+ 2.12.9
8d079279
JS
88#else
89 wxYieldIfNeeded(); // Should eliminate this
90#endif
3f4fc796
JS
91}
92
93wxSplashScreen::~wxSplashScreen()
94{
95 m_timer.Stop();
96}
97
33ac7e6f 98void wxSplashScreen::OnNotify(wxTimerEvent& WXUNUSED(event))
3f4fc796 99{
ca65c044 100 Close(true);
3f4fc796
JS
101}
102
33ac7e6f 103void wxSplashScreen::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
3f4fc796
JS
104{
105 m_timer.Stop();
106 this->Destroy();
107}
108
aac39d1d
FM
109// ----------------------------------------------------------------------------
110// wxSplashScreenWindow
111// ----------------------------------------------------------------------------
3f4fc796
JS
112
113BEGIN_EVENT_TABLE(wxSplashScreenWindow, wxWindow)
c2d516f2
RD
114#ifdef __WXGTK__
115 EVT_PAINT(wxSplashScreenWindow::OnPaint)
116#endif
3f4fc796
JS
117 EVT_ERASE_BACKGROUND(wxSplashScreenWindow::OnEraseBackground)
118 EVT_CHAR(wxSplashScreenWindow::OnChar)
119 EVT_MOUSE_EVENTS(wxSplashScreenWindow::OnMouseEvent)
120END_EVENT_TABLE()
121
aac39d1d
FM
122wxSplashScreenWindow::wxSplashScreenWindow(const wxBitmap& bitmap, wxWindow* parent,
123 wxWindowID id, const wxPoint& pos,
124 const wxSize& size, long style)
125 : wxWindow(parent, id, pos, size, style)
3f4fc796
JS
126{
127 m_bitmap = bitmap;
574c939e 128
e3b7670b 129#if !defined(__WXGTK__) && wxUSE_PALETTE
574c939e
KB
130 bool hiColour = (wxDisplayDepth() >= 16) ;
131
132 if (bitmap.GetPalette() && !hiColour)
133 {
134 SetPalette(* bitmap.GetPalette());
135 }
136#endif
3f4fc796
JS
137}
138
e22c13fe
VZ
139// VZ: why don't we do it under wxGTK?
140#if !defined(__WXGTK__) && wxUSE_PALETTE
141 #define USE_PALETTE_IN_SPLASH
142#endif
143
33ac7e6f 144static void wxDrawSplashBitmap(wxDC& dc, const wxBitmap& bitmap, int WXUNUSED(x), int WXUNUSED(y))
3f4fc796
JS
145{
146 wxMemoryDC dcMem;
147
e22c13fe 148#ifdef USE_PALETTE_IN_SPLASH
3f4fc796 149 bool hiColour = (wxDisplayDepth() >= 16) ;
33ac7e6f 150
3f4fc796
JS
151 if (bitmap.GetPalette() && !hiColour)
152 {
3f4fc796
JS
153 dcMem.SetPalette(* bitmap.GetPalette());
154 }
e22c13fe 155#endif // USE_PALETTE_IN_SPLASH
25093cf3 156
fea35690 157 dcMem.SelectObjectAsSource(bitmap);
deb8254e
VZ
158 dc.Blit(0, 0, bitmap.GetWidth(), bitmap.GetHeight(), &dcMem, 0, 0, wxCOPY,
159 true /* use mask */);
3f4fc796 160 dcMem.SelectObject(wxNullBitmap);
25093cf3 161
e22c13fe 162#ifdef USE_PALETTE_IN_SPLASH
3f4fc796
JS
163 if (bitmap.GetPalette() && !hiColour)
164 {
3f4fc796
JS
165 dcMem.SetPalette(wxNullPalette);
166 }
e22c13fe 167#endif // USE_PALETTE_IN_SPLASH
3f4fc796
JS
168}
169
c2d516f2
RD
170void wxSplashScreenWindow::OnPaint(wxPaintEvent& WXUNUSED(event))
171{
172 wxPaintDC dc(this);
173 if (m_bitmap.Ok())
174 wxDrawSplashBitmap(dc, m_bitmap, 0, 0);
175}
176
3f4fc796
JS
177void wxSplashScreenWindow::OnEraseBackground(wxEraseEvent& event)
178{
aac39d1d 179 if (event.GetDC() && m_bitmap.Ok())
3f4fc796 180 {
aac39d1d 181 wxDrawSplashBitmap(* event.GetDC(), m_bitmap, 0, 0);
3f4fc796
JS
182 }
183 else
184 {
185 wxClientDC dc(this);
186 if (m_bitmap.Ok())
3f4fc796 187 wxDrawSplashBitmap(dc, m_bitmap, 0, 0);
3f4fc796
JS
188 }
189}
190
191void wxSplashScreenWindow::OnMouseEvent(wxMouseEvent& event)
192{
193 if (event.LeftDown() || event.RightDown())
ca65c044 194 GetParent()->Close(true);
aac39d1d
FM
195 else
196 event.Skip();
3f4fc796
JS
197}
198
33ac7e6f 199void wxSplashScreenWindow::OnChar(wxKeyEvent& WXUNUSED(event))
3f4fc796 200{
ca65c044 201 GetParent()->Close(true);
3f4fc796
JS
202}
203
1e6feb95 204#endif // wxUSE_SPLASH