home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pselect.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-12  |  720 b   |  31 lines

  1. /*
  2.  *--- PSelect.h -----------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, Oct 12, 1995 @ 11:31 PM by Paul Ferguson.
  5.  *
  6.  * Description: This implements a select command.  You can select by
  7.  * either x,y coordinates, or by drawing order.  The two constructors
  8.  * implement these two options.
  9.  *-------------------------------------------------------------------------
  10.  */
  11. #ifndef __PSelect__
  12. #define __PSelect__
  13.  
  14. class PSelect
  15. {
  16.  
  17. public:
  18.  
  19.     PSelect(long x, long y);
  20.     PSelect(long drawOrder);
  21.  
  22. private:
  23.  
  24.     void DoSelect(short nSelect, long x, long y);
  25.     PSelect();
  26. };
  27.  
  28. #endif
  29.  
  30. // end of PSelect.h
  31.