]>
Commit | Line | Data |
---|---|---|
3f4fc796 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: splash.h | |
3 | // Purpose: Splash screen class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 28/6/2000 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
99d80019 | 9 | // Licence: wxWindows Licence |
3f4fc796 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
3f4fc796 JS |
12 | #ifndef _WX_SPLASH_H_ |
13 | #define _WX_SPLASH_H_ | |
14 | ||
d84d25dd | 15 | #include "wx/bitmap.h" |
3f4fc796 | 16 | #include "wx/timer.h" |
d84d25dd VZ |
17 | #include "wx/frame.h" |
18 | ||
3f4fc796 JS |
19 | |
20 | /* | |
21 | * A window for displaying a splash screen | |
22 | */ | |
23 | ||
24 | #define wxSPLASH_CENTRE_ON_PARENT 0x01 | |
25 | #define wxSPLASH_CENTRE_ON_SCREEN 0x02 | |
26 | #define wxSPLASH_NO_CENTRE 0x00 | |
27 | #define wxSPLASH_TIMEOUT 0x04 | |
28 | #define wxSPLASH_NO_TIMEOUT 0x00 | |
29 | ||
b5dbe15d | 30 | class WXDLLIMPEXP_FWD_ADV wxSplashScreenWindow; |
3f4fc796 JS |
31 | |
32 | /* | |
33 | * wxSplashScreen | |
34 | */ | |
35 | ||
12f190b0 | 36 | class WXDLLIMPEXP_ADV wxSplashScreen: public wxFrame |
3f4fc796 JS |
37 | { |
38 | public: | |
479101ca | 39 | // for RTTI macros only |
6fb99eb3 | 40 | wxSplashScreen() {} |
479101ca RD |
41 | wxSplashScreen(const wxBitmap& bitmap, long splashStyle, int milliseconds, |
42 | wxWindow* parent, wxWindowID id, | |
43 | const wxPoint& pos = wxDefaultPosition, | |
44 | const wxSize& size = wxDefaultSize, | |
45 | long style = wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP); | |
d3c7fc99 | 46 | virtual ~wxSplashScreen(); |
3f4fc796 JS |
47 | |
48 | void OnCloseWindow(wxCloseEvent& event); | |
49 | void OnNotify(wxTimerEvent& event); | |
50 | ||
51 | long GetSplashStyle() const { return m_splashStyle; } | |
52 | wxSplashScreenWindow* GetSplashWindow() const { return m_window; } | |
53 | int GetTimeout() const { return m_milliseconds; } | |
54 | ||
55 | protected: | |
56 | wxSplashScreenWindow* m_window; | |
57 | long m_splashStyle; | |
58 | int m_milliseconds; | |
59 | wxTimer m_timer; | |
60 | ||
12f190b0 VS |
61 | DECLARE_DYNAMIC_CLASS(wxSplashScreen) |
62 | DECLARE_EVENT_TABLE() | |
22f3361e | 63 | DECLARE_NO_COPY_CLASS(wxSplashScreen) |
3f4fc796 JS |
64 | }; |
65 | ||
66 | /* | |
67 | * wxSplashScreenWindow | |
68 | */ | |
69 | ||
12f190b0 | 70 | class WXDLLIMPEXP_ADV wxSplashScreenWindow: public wxWindow |
3f4fc796 JS |
71 | { |
72 | public: | |
73 | wxSplashScreenWindow(const wxBitmap& bitmap, wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxNO_BORDER); | |
74 | ||
75 | void OnPaint(wxPaintEvent& event); | |
76 | void OnEraseBackground(wxEraseEvent& event); | |
77 | void OnMouseEvent(wxMouseEvent& event); | |
78 | void OnChar(wxKeyEvent& event); | |
79 | ||
80 | void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; } | |
81 | wxBitmap& GetBitmap() { return m_bitmap; } | |
82 | ||
83 | protected: | |
84 | wxBitmap m_bitmap; | |
85 | ||
2eb10e2a VZ |
86 | DECLARE_EVENT_TABLE() |
87 | DECLARE_NO_COPY_CLASS(wxSplashScreenWindow) | |
3f4fc796 JS |
88 | }; |
89 | ||
90 | ||
91 | #endif | |
92 | // _WX_SPLASH_H_ |