Click here to Skip to main content
Licence 
First Posted 3 Mar 2000
Views 142,283
Bookmarked 71 times

Splasher v1.32 - A Splash Screen Implementation

By | 3 Mar 2000 | Article
An improved splash screen component for MFC.
  • Download source files - 62 Kb
  • Introduction

    Welcome to Splasher, A freeware MFC class to implement a splash screen.


    Features
    Usage
    History
    Contacting the Author


    Features

    This class provides a number of advantages over and above the standard splash screen component that is included with VC++.

    • The code can optionally use an external DIB file instead of a bitmap resource. This allows your splash screen to be easily customized at run time without the need to change a bitmap resource inside your exe. For example you could ship two versions of bitmap files, one for 16 color screens and a 256 color bitmap for higher screen depths. You could also allow your end user to change the splash screen.

    • The palette from the DIB is read from file and is used to provide support for more colors than the standard 16 which are available with bitmap resources.

    • The splash screen component is multi-threaded, meaning that it remains responsive and redraws itself correctly while you can be loading up your application in the normal InitInstance() override.

    • The splash screen is coded so that it will only be brought down when you want it to, not when the user clicks on it or a timer expires. This allows you to close it down exactly when your application is ready for input and no longer needs to display the splash screen.


    Usage

    • To use the class in your code simply include splasher.cpp in your project and #include splasher.h in your applications' CWinApp derived module.
    • A sample SDI appwizard generated application is included which demonstrates it use. To incorporate the splash screen component you will just need to add approximately 10 lines of code to your applications InitInstance() function. To see the classes in action, have a look at the code in InitInstance() in the module spltest.cpp.
    • Your code will need to include MFC either statically or dynamically.


    History

    V1.0 (15th November 1996)
    • Initial public release.

    V1.1 (11th December 1997)

    • Incorporation of new DIB code provided by the authors own CDibImage class. A static library version is used by splasher here. If you want to use CDIbImage for anything other than CSplashThread, then you need to download CDibImage on its own.
    • Can now load from resource or bitmap.
    • General tidy up of the code.

    V1.2 (22nd March 1998)

    • Palette is now correctly initialized on startup.
    • Code now protects itself if m_SplashScreen cannot be created.

    V1.3 (22th December 1998)

    • Now provided VC 5 workspace files as standard.
    • Removed the dependence of splasher on CDibImage (another shareware product of the author).
    • Provision of HTML help file (this file) describing the class.
    • The code is now UNICODE enabled and UNICODE build configurations are provided in the sample app.
    • General tidy up of the code.
    • Fixed a potential race condition in CSplashThread::HideSplash().
    • Reduced the size of the zip file by only including the demo bitmap once.

    V1.31 (21st June 1999)

    • Fixed a bug which was causing an assert when loading up a bitmap which does not have an associated palette.

    V1.32 (1st March 2000)

    • Fixed a problem with bitmaps which do not have a palette (Again <g>)
    • Fixed a problem in Win 98 and Win2000 when the splash screen is closed but the main window of your app fails to activate. The code now uses AttachThreadInput to synchronise the UI activities of the main GUI thread and the splash screen thread.


    Contacting the Author

    PJ Naughter
    Email: pjn@indigo.ie
    Web: http://www.naughter.com
    1 March 2000


    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

    PJ Naughter



    United States United States

    Member



    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
    SuggestionAllowing main app window to call SetForegroundWindow() PinmemberTheWizardOfOz8:33 1 Nov '11  
    GeneralMemory leak in v1.48 PinmemberTnarol3:31 14 Nov '07  
    AnswerRe: Memory leak in v1.48 Pinmemberpjnaughter7:22 14 Nov '07  
    AnswerRe: Memory leak in v1.48 Pinmemberpjnaughter5:21 17 Nov '07  
    GeneralA way to make this stay on top... PinmemberBrad Wyckhouse10:11 14 Sep '06  
    Hi all,
     
    Great little class. I haven't got the updated version, so this may already be there, but I found it useful to add code to make this a stay-on-top window in case the main app window comes up while the splash screen is up.
     
    In CSplashWnd::Create I added the following after the "Create this window" code block:
     

    //Make this window the topmost
    CRect rectThisWindow;
    GetClientRect(rectThisWindow);
    SetWindowPos(&CWnd::wndTopMost, m_nWidth, m_nHeight, rectThisWindow.Width(), rectThisWindow.Height(), SWP_SHOWWINDOW);

     
    This is using MFC 7.1. I'm not sure if all previous versions of MFC support this.
    QuestionWhy use multithread here? PinmemberFzz1:32 24 Oct '05  
    GeneralThere is a newer version available PinmemberSAHorowitz15:01 28 Feb '05  
    GeneralA little add... PinmemberIsildur3:20 7 Oct '04  
    GeneralRe: A little add... Pinmemberpjnaughter8:33 7 Oct '04  
    GeneralRe: A little add... PinmemberIsildur20:27 7 Oct '04  
    GeneralGood point Pinmemberrichard sancenot5:44 30 Nov '05  
    GeneralSplash Screen PinmemberAbou RRour10:07 26 Jun '03  
    GeneralRe: Splash Screen PinmemberDaniel Madden19:55 4 Sep '03  
    GeneralUsing this splash screen in a Dialog based application Pinmembermelwyn1:29 6 May '03  
    GeneralRe: Using this splash screen in a Dialog based application Pinmemberpjnaughter11:31 6 May '03  
    GeneralRe: Using this splash screen in a Dialog based application Pinmembermelwyn21:23 7 May '03  
    GeneralRe: Using this splash screen in a Dialog based application Pinmemberpjnaughter22:13 7 May '03  
    Generallooking for mfc42u.lib Pinmemberns2:21 11 Oct '02  
    GeneralRe: looking for mfc42u.lib Pinmemberpjnaughter3:30 11 Oct '02  
    GeneralRe: looking for mfc42u.lib Pinmemberns3:37 11 Oct '02  
    QuestionHow to add and update a progress bar Pinmemberascott7:54 6 Mar '02  
    AnswerRe: How to add and update a progress bar Pinmemberpjnaughter3:33 11 Oct '02  
    GeneralMy LoginDLG lost focus ... PinmemberDavid DERUMIER5:40 13 Nov '01  
    GeneralRe: My LoginDLG lost focus ... PinmemberS Fewings1:22 6 Jun '02  
    GeneralHi-Color Image in Resource PinmemberUwe Keim8:55 19 Nov '00  

    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
    Web01 | 2.5.120529.1 | Last Updated 4 Mar 2000
    Article Copyright 2000 by PJ Naughter
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid