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