L_BOOL LAnimationWindow::EnablePlayWhileLoad(bEnable=TRUE)
Enables or disables the play while load feature.
Flag that indicates whether to enable the play while load feature. Possible values are:
Value | Meaning |
---|---|
TRUE | Enable the play while load feature. |
FALSE | Disable the play while load feature. |
The previous state.
If play while load is enabled, an animation file will be played while it is being loaded. Each loaded page is displayed directly after it is loaded.
Win32, x64.
class MyClass : public LAnimationWindow
{
public :
virtual L_VOID AnimateEvent(L_INT nEvent,L_INT nFrameNumber)
{
switch (nEvent)
{
case EVENT_PLAYSTATE_WAITDELAY:
if (GetRemainingDelay()>1)
break;
case EVENT_PLAYSTATE_WAITINPUT :
CancelWait();
break;
}
//call base class
LAnimationWindow::AnimateEvent(nEvent, nFrameNumber);
}
};
L_INT LAnimationWindow_EnablePlayWhileLoadExample(HWND hWndParent)
{
L_INT nRet;
LBase::LoadLibraries(LT_ALL_LEADLIB); //make sure all libraries are loaded
MyClass MyAnimation;
MyAnimation.SetFileName(MAKE_IMAGE_PATH(TEXT("image1.gif")));
MyAnimation.CreateWnd(hWndParent,0, WS_VISIBLE|WS_CHILD|WS_BORDER,0,0,300,300);
MyAnimation.EnableAnimateEvent();
//Allow user to receive events
//Enable play-while-load feature
if (!MyAnimation.IsPlayWhileLoadEnabled())
{
MyAnimation.EnablePlayWhileLoad();
}
MyAnimation.EnableAutoErrorDisplay(TRUE);
nRet = MyAnimation.Load();
if (nRet!=SUCCESS)
{
return nRet;
}
MessageBox(hWndParent, TEXT("Finished loading..."),TEXT("Example"), MB_OK | MB_ICONINFORMATION);
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document