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