2002-11-16 08:07:38 +00:00
|
|
|
#ifndef SCREENMESSAGE_H
|
|
|
|
|
#define SCREENMESSAGE_H
|
2002-05-20 08:59:37 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-05-27 08:23:27 +00:00
|
|
|
File: ScreenMessage
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-05-27 08:23:27 +00:00
|
|
|
Desc: Definition of common ScreenMessages
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2002-05-27 08:23:27 +00:00
|
|
|
Chris Danford
|
2002-05-20 08:59:37 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// common ScreenMessages
|
|
|
|
|
enum ScreenMessage {
|
|
|
|
|
SM_None = 0,
|
|
|
|
|
SM_DoneClosingWipingLeft,
|
|
|
|
|
SM_DoneClosingWipingRight,
|
|
|
|
|
SM_DoneOpeningWipingLeft,
|
|
|
|
|
SM_DoneOpeningWipingRight,
|
2002-05-27 08:23:27 +00:00
|
|
|
SM_MenuTimer,
|
2003-01-26 20:49:05 +00:00
|
|
|
SM_BeginFadingOut,
|
2003-01-26 07:33:03 +00:00
|
|
|
SM_GoToNextScreen,
|
|
|
|
|
SM_GoToPrevScreen,
|
2003-11-25 21:57:00 +00:00
|
|
|
SM_GainFocus,
|
|
|
|
|
SM_LoseFocus,
|
2002-05-20 08:59:37 +00:00
|
|
|
SM_User = 100
|
|
|
|
|
};
|
2002-11-16 08:07:38 +00:00
|
|
|
|
|
|
|
|
#endif
|