home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / c / fli106c / winnext.cpp < prev    next >
C/C++ Source or Header  |  1992-03-11  |  764b  |  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. // FusionWindow
  8. //
  9.  
  10. #include "fliwin.h"
  11.  
  12. #ifdef __BCPLUSPLUS__
  13. #pragma hdrstop
  14. #endif
  15.  
  16. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  17. //
  18. // NextWindow()
  19. //
  20. // Jump to the next window in the stack
  21. //
  22. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  23.  
  24. void FusionWindow::NextWindow()
  25. {
  26.   if (NumberOfWindows<2)
  27.     return;
  28.  
  29.   WindowElement *Save=Windows[0];
  30.   Save->Active=0;
  31.   for (int i=0;i<NumberOfWindows-1;i++)
  32.     Windows[i]=Windows[i+1];
  33.   Windows[0]->Active=1;
  34.   Windows[NumberOfWindows-1]=Save;
  35.  
  36.   RemoveAllMenus();
  37.   RefreshWindows();
  38. }
  39.  
  40.