home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
c
/
fli106c
/
dlgact.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-11
|
706b
|
40 lines
//
// The Fusion Library Interface for DOS
// Version 1.06c
// Copyright (C) 1990, 1991, 1992
// Software Dimensions
//
// DialogClass
//
#include "fli.h"
#ifdef __BCPLUSPLUS__
#pragma hdrstop
#endif
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
//
// CallAllActions()
//
// Call all of the action functions
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
int DialogClass::CallAllActions()
{
DialogElement *Present=First;
int Refresh=0;
do
{
if (Present->Action()==RefreshEvent)
Refresh++;
Present=Present->Next;
}
while (Present);
return (Refresh)?RefreshEvent:0;
}