home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.4 KB | 67 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: PRMDash.h
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef PRMDASH_H
- #define PRMDASH_H
-
- #ifdef FW_BUILD_MAC // Macintosh-only
-
- //========================================================================================
- // Header files
- //========================================================================================
-
- #ifndef _ODMATH_
- #include <ODMath.h>
- #endif
-
- #ifndef FWGCONST_H
- #include "FWGConst.h"
- #endif
-
- //========================================================================================
- // class FW_CPrivMacDashDraw
- //========================================================================================
-
- class FW_CPrivMacDashDraw
- {
- public:
-
- // ----- Construction
-
- FW_CPrivMacDashDraw(FW_EStyleDash dash);
- ~FW_CPrivMacDashDraw();
-
- // ----- Operations
-
- void LineTo(short x, short y);
-
- // ----- Implementation
-
- private:
- short fDashCount;
- short* fDashDistances;
- FW_Boolean fIsOpaque;
-
- RGBColor fForeColor, fBackColor;
-
- short fCurSegN;
- short fCurSegDraw;
-
- short fAdjustH;
- short fAdjustV;
-
- void InitAdjust(short dh, short dv);
- void DrawOneSegment(short h, short v);
- };
-
- #endif // FW_BUILD_MAC
-
- #endif // FWMDASH_H
-
-