Click here to Skip to main content
Licence 
First Posted 30 Sep 2002
Views 225,239
Downloads 7,040
Bookmarked 174 times

CSplashScreenEx : a non rectangular splash screen class with Alpha blending

By John O'Byrne | 1 Oct 2002
CSplashScreenEx allows to display a non rectangular bitmap with informations about the init of your app

1

2

3
6 votes, 10.3%
4
52 votes, 89.7%
5
4.89/5 - 81 votes
μ 4.86, σa 0.96 [?]

Sample Image - SplashScreenEx.jpg

Introduction

A little time ago I was looking for a Splash Screen class which would allow me to display a non rectangular bitmap without masking the background. Since I didn't find a class that matched with my needs, I developed my own Splash Screen class :- CSplashScreenEx

Compatibility

This class needs MFC to be either statically or dynamically linked in your project; it has been written, compiled and tested under Visual Studio .NET (but should work well with VC6)

How to use the Class

The class is very easy to use: Just add SplashScreenEx.h and SplashScreenEx.cpp into your project, then include SplashScreenEx.h into your application. To display the splash screen just include these lines in your OnInitDialog() function:

CSplashScreenEx *pSplash=new CSplashScreenEx();
pSplash->Create(this,NULL,2000,CSS_FADE | CSS_CENTERSCREEN | CSS_SHADOW);
pSplash->SetBitmap(IDB_SPLASH,255,0,255);
pSplash->Show();

And that's it, the splash screen appears for 2000 ms and then disappears and frees the memory allocated.

Important note - The class must be allocated on the heap since it is automatically destroyed when it disappears.

CSplashScreenEx *pSplash=new CSplashScreenEx()

The splash screen can also be used to display the loading progression of your app, as seen in the Sample number 2:

CSplashScreenEx *pSplash=new CSplashScreenEx();
pSplash->Create(this,"CSplashScreenEx dynamic text:",0,CSS_FADE | 
                        CSS_CENTERSCREEN | CSS_SHADOW);
pSplash->SetBitmap(IDB_SPLASH,255,0,255);
pSplash->SetTextFont("Impact",100,CSS_TEXT_NORMAL);
pSplash->SetTextRect(CRect(125,60,291,104));
pSplash->SetTextColor(RGB(255,255,255));
pSplash->SetTextFormat(DT_SINGLELINE | DT_CENTER | DT_VCENTER);
pSplash->Show();

Sleep(1000);
pSplash->SetText("You can display infos");

Sleep(1000);
pSplash->SetText("While your app is loading");

Sleep(1000);
pSplash->SetText("Just call Hide() when loading");
	
Sleep(1000);
pSplash->SetText("is finished");
Sleep(1500);

pSplash->Hide();

Class Documentation

CSplashScreenEx::Create

BOOL Create(CWnd *pWndParent,LPCTSTR szText=NULL,DWORD dwTimeout=2000,DWORD dwStyle=CSS_FADE | CSS_CENTERSCREEN | CSS_SHADOW);

Create the Splash Screen which stays hidden until Show() is called

Arguments

  • pWndParent: The parent window (this)
  • szText: The text displayed in your splash screen
  • dwTimeout: The time in milliseconds before the splash screen disappears. if 0 the splash screen stays forever :)
  • dwStyle: Can be a combination of the following values:
    • CSS_FADEIN : Fade In animation while appearing
    • CSS_FADEOOUT: Fade Out animation while disappearing
    • CSS_FADE=CSS_FADEIN | CSS_FADEOUT : Fade in + Fade out
    • CSS_SHADOW : Displays a shadow under the splash screen
    • CSS_CENTERSCREEN : The splash screen is centered on the screen
    • CSS_CENTERAPP: The splash screen is centered on the parent window
    • CSS_HIDEONCLICK: The splash screen disappears and is destroyed when a key is pressed or it is clicked with the mouse

CSplashScreenEx::SetBitmap

BOOL SetBitmap(UINT nBitmapID,short red=-1,short green=-1,short blue=-1);

BOOL SetBitmap(LPCTSTR szFileName,short red=-1,short green=-1,short blue=-1);

Associate the splash screen with a bitmap

Arguments

  • nBitmapId: Resource ID for the bitmap
  • szFileName: Path for the bitmap on the hard drive
  • red,green,blue: Transparency color for the bitmap (RGB color). Set these to -1 to disable bitmap transparency

CSplashScreenEx::Show

void Show();

Show the splash screen

CSplashScreenEx::Hide

void Hide();

Hide and destroy the splash screen

CSplashScreenEx::SetText

void SetText(LPCTSTR szText);

Change the text displayed in the splash screen

CSplashScreenEx::SetTextFont

void SetTextFont(LPCTSTR szFont,int nSize,int nStyle);

Change the Font of the text

Arguments

nStyle can be one or a combination of the following values:

  • CSS_TEXT_NORMAL
  • CSS_TEXT_BOLD
  • CSS_TEXT_ITALIC
  • CSS_TEXT_UNDERLINE

CSplashScreenEx::SetTextDefaultFont

void SetTextDefaultFont();

Set the system default font for the text displayed in the splash screen

CSplashScreenEx::SetTextColor

void SetTextColor(COLORREF crTextColor);

Change the text color

CSplashScreenEx::SetTextRect

void SetTextRect(CRect& rcText);

Change the text rect boundaries

CSplashScreenEx::SetTextFormat

void SetTextFormat(UINT uTextFormat);

Change the text format; see the DrawText function in the MSDN for the different values (default is DT_CENTER | DT_VCENTER | DT_WORDBREAK)

Technical issues

When SetBitmap() is called, if a transparency color has been specified, a GDI region is generated (thanks to Davide Pizzolato code) and this region is applied to the splash screen window (SetWindowRgn(...)). Thanks to this, the window is not anymore rectangular. The rest of the code is basic stuff, in the WM_PAINT handler, the background bitmap is blit on the window. Please refer to the code for more details about the implementation.

Conclusion

I hope this class will be useful to you, if you find any memory or GDI leaks or if you have suggestions to enhance this class, please post a comment. If you use this class in a freeware, shareware or commercial app, please let me know, I'll be happy :)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

John O'Byrne

Web Developer

United States United States

Member
I live in Santa Clara CA and work as a software engineer for SAP Business Objects.
 
My areas of expertise are user interface developments in Eclipse RCP / SWT / Draw 2D and C#

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralI got the transparency working on Aero PinmemberGernot Frisch8:16 11 Jan '11  
GeneralRe: I got the transparency working on Aero Pinmembertianshiwokao22:11 26 Oct '11  
QuestionVS2008 Unicode MDI gives assert PinmemberDivya Rathore17:34 25 Aug '08  
Questionhow to show splash screen during loading dlls? Pinmemberyph2004010716:04 27 Nov '07  
QuestionProbably a bug? Pinmembermin_2_max17:01 16 Aug '07  
General(Small ?) Problem on Windows Vista [modified] PinmemberFran-No6:39 8 Aug '07  
GeneralRe: (Small ?) Problem on Windows Vista PinmemberFran-No1:30 10 Aug '07  
GeneralRe: (Small ?) Problem on Windows Vista PinmemberFran-No3:25 30 Aug '07  
GeneralRe: (Small ?) Problem on Windows Vista Pinmemberkelvin_gl22:10 13 Jan '08  
GeneralRe: (Small ?) Problem on Windows Vista PinmemberFran-No1:20 14 Jan '08  
GeneralPixel format Generic Implementation only Pinmembermitesh velani17:11 20 Sep '06  
QuestionSetWindowPos() in Show() causes problem Pinmemberbitkidoku6:09 21 Dec '05  
GeneralImprovement: Multiple Text Fields PinmemberMichael Stammberger13:37 17 Nov '05  
GeneralRe: Improvement: Multiple Text Fields Pinmembermin_2_max17:16 16 Aug '07  
GeneralRe: Improvement: Multiple Text Fields Pinmembermin_2_max17:25 16 Aug '07  
GeneralRe: Improvement: Multiple Text Fields PinmemberMichael Stammberger22:01 16 Aug '07  
Hi!
 
Yes, it's possible to change the text data while processing something in the background (I use it this way), but a progress bar is not available. Indeed this feature would be nice and if you would implement it, I would be appreciated to get a copy of your improvements...
 
Best Regards,
Michael

GeneralGreat work Pinmemberjefflewis2:59 19 Sep '05  
GeneralSound Pinmembersicks12:22 21 Jul '05  
GeneralSome errors when using in UNICODE project Pinmemberbitmensch2:59 15 Jul '05  
QuestionHow to use the class in SDI or MDI project? Pinsusssibang jang17:30 11 Jul '05  
AnswerRe: How to use the class in SDI or MDI project? Pinsusssibang jang18:38 11 Jul '05  
QuestionWhy parent window is needed? PinmemberYogurt10:47 23 Jun '05  
AnswerRe: Why parent window is needed? Pinmemberkelvin_gl18:18 14 Jul '05  
AnswerRe: Why parent window is needed? PinmemberBrad Bruce11:35 28 Jan '06  
GeneralWindows 2000 SP4 PinmemberJohnnyfartpants21:28 30 May '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120210.1 | Last Updated 2 Oct 2002
Article Copyright 2002 by John O'Byrne
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid