home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PSelect.h -----------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Thu, Oct 12, 1995 @ 11:31 PM by Paul Ferguson.
- *
- * Description: This implements a select command. You can select by
- * either x,y coordinates, or by drawing order. The two constructors
- * implement these two options.
- *-------------------------------------------------------------------------
- */
- #ifndef __PSelect__
- #define __PSelect__
-
- class PSelect
- {
-
- public:
-
- PSelect(long x, long y);
- PSelect(long drawOrder);
-
- private:
-
- void DoSelect(short nSelect, long x, long y);
- PSelect();
- };
-
- #endif
-
- // end of PSelect.h
-