home *** CD-ROM | disk | FTP | other *** search
/ Point Programming 1 / PPROG1.ISO / c / fli106c / dlghot.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-11  |  678 b   |  36 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. // HotKey()
  19. //
  20. // Locate the help identifier
  21. //
  22. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  23.  
  24. void DialogClass::HotKey(int _LocX,int _LocY,char *_LocatorText,
  25.   int _QuickKey)
  26. {
  27.   if (Current)
  28.   {
  29.     Current->LocX=_LocX;
  30.     Current->LocY=_LocY;
  31.     Current->LocatorText=_LocatorText;
  32.     Current->QuickKey=_QuickKey;
  33.   }
  34. }
  35.  
  36.