Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C++

SoundAlert

Rate me:
Please Sign up or sign in to vote.
4.75/5 (6 votes)
16 May 2004CPOL2 min read 40.5K   614   18   5
Create your own sound alerts to be accessed from the Control Panel, and played by your own program.

SoundApplet Image

Introduction

Have you ever wondered how to add your own sound events to the Sounds section of the Control Panel? Of course, nothing is mentioned in the MSDN on how to do it - probably some undocumented API somewhere - so all the hard work discovering what to do had to be fathomed out empirically.

This article was inspired by another on CodeProject which outlines what needs to be done, but doesn't actually present any code.

The following addresses this problem and also provides a method of playing the sound events, which has proven problematic to some people.

Public Interface

The interface to this class is very simple, only providing 7 functions, but that's all you need :-)

As an example of the simplicity of this class, here is the test program I used whilst writing the class...

int main(int argc, char* argv[])
{
    CSoundAlert sa;

    sa.CreateGroup(_T("SoundApp"), _T("Sound Scheme Application"));

    sa.Create(_T("Start"), _T("Start Sound"), _T("%systemRoot%\\media\\ding.wav"));

    sa.Play(_T("Start"));

    sa.Delete(_T("Start"));

    sa.DeleteGroup();

    return 0;
}

This program creates a sound group, creates a single sound event, plays it, then deletes everything from the registry. Obviously, the deleting part should be done when uninstalling your application, but the creation should really be done when the program is run for the first time (for each user) as the registry settings are per user rather than system wide, and you don't want some people to miss out on the aural masterpiece your application will produce, do you.

Group Functions

bool CreateGroup(LPCTSTR szGroupName, LPCTSTR szTitle);
bool OpenGroup(LPCTSTR szGroupName);
bool DeleteGroup(LPCTSTR szGroupName);
bool DeleteGroup();

Alert Functions

bool Create(LPCTSTR szName, LPCTSTR szTitle, LPCTSTR szWavPath);
bool Delete(LPCTSTR szName);

Play sound function

bool Play(LPCTSTR szName, DWORD dwOptions=0);

Group Functions

A sound group is basically a place to store the sound alerts associated with your application. You can create as many groups as you like (but you also have to keep track of them !). To access a group, you need to either create it, or open it.

  • CreateGroup(LPCTSTR szGroupName, LPCTSTR szTitle)
    • szGroupName - the name to store your group under
    • szTitle - the text actually shown in the Control Panel. This allows the text to be internationalized without affecting the code.
  • OpenGroup(LPCTSTR szGroupName)
    • szGroupName - the name of the group to open.
  • DeleteGroup(LPCTSTR szGroupName)
    • szGroupName - the name of the group to delete. This doesn't need to be the current group.
  • DeleteGroup()

    Delete the current group.

Event functions

  • Create(LPCTSTR szName, LPCTSTR szTitle, LPCTSTR szWavPath)
    • szName - Name of the event
    • szTitle - Name of the event shown in the Control Panel
    • szWavPath - Path of the sound file to play. This can be a fully qualified path or just a filename (if the file is stored in the %systemRoot%\media directory, or specified using one of the environment variables (%windir%\my app)).
  • Delete(LPCTSTR szName)
    • szName - Name of the event to delete

Play Sound

  • Play(LPCTSTR szName, DWORD dwOptions=0)
    • szName - the name of the event to play
    • dwOptions - any of the standard PlaySound options

Conclusion

Hopefully, this article will allow you to add all important sound events to your otherwise quiet application - with a simple and effective class.

No MFC was harmed in the making of this class - and boy, was it hard not to :-)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralYet ANOTHER Fix: DeleteGroup() doesn't work unless the group is already empty Pin
Member 169119628-Jan-05 8:20
Member 169119628-Jan-05 8:20 
GeneralRe: Yet ANOTHER Fix: DeleteGroup() doesn't work unless the group is already empty Pin
Soundman32.228-Jan-05 8:55
Soundman32.228-Jan-05 8:55 
Thanks for finding these problems.

What OS are you using? These functions worked fine on Windows XP SP1 when I wrote the article.

Neil

GeneralAnother Fix: Delete function doesn't delete anything Pin
Member 169119628-Jan-05 8:15
Member 169119628-Jan-05 8:15 
GeneralAnother Fix: .exe name must match group name Pin
Member 169119628-Jan-05 8:01
Member 169119628-Jan-05 8:01 
GeneralMinor fix in calls to RegSetValueEx() Pin
Thiadmer Riemersma1-Nov-04 0:33
Thiadmer Riemersma1-Nov-04 0:33 

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

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