home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / c / fli106c / dlgact.cpp < prev    next >
C/C++ Source or Header  |  1992-03-11  |  706b  |  40 lines

  1. //
  2. // The Fusion Library Interface for DOS
  3. // Version 1.06c
  4. // Copyright (C) 1990, 1991, 1992
  5. // Software Dimensions
  6. //
  7. // DialogClass
  8. //
  9.  
  10. #include "fli.h"
  11.  
  12. #ifdef __BCPLUSPLUS__
  13. #pragma hdrstop
  14. #endif
  15.  
  16. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  17. //
  18. // CallAllActions()
  19. //
  20. // Call all of the action functions
  21. //
  22. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  23.  
  24. int DialogClass::CallAllActions()
  25. {
  26.   DialogElement *Present=First;
  27.   int Refresh=0;
  28.  
  29.   do
  30.   {
  31.     if (Present->Action()==RefreshEvent)
  32.       Refresh++;
  33.     Present=Present->Next;
  34.   }
  35.   while (Present);
  36.  
  37.   return (Refresh)?RefreshEvent:0;
  38. }
  39.  
  40.