#include <rulers.h>
Inheritance diagram for VerticalRuler:
Public Member Functions | |
VerticalRuler () | |
Constructor for VerticalRuler. | |
BOOL | Init (RulerPair *pRulers, OILVerticalRuler *pOILVRuler) |
Init a VerticalRuler. | |
virtual MILLIPOINT | GetOrd (const UserCoord &coord) |
virtual UserCoord | MakeCoord (const MILLIPOINT ord) |
virtual BOOL | IsHorizontal () |
Private Member Functions | |
CC_DECLARE_MEMDUMP (VerticalRuler) |
Definition at line 198 of file rulers.h.
|
Constructor for VerticalRuler.
Definition at line 529 of file rulers.cpp. 00530 { 00531 pOILRuler = NULL; 00532 pRulerPair = NULL; 00533 }
|
|
|
|
Implements RulerBase. Definition at line 206 of file rulers.h. 00206 { return coord.y; }
|
|
Init a VerticalRuler.
Definition at line 547 of file rulers.cpp. 00548 { 00549 ERROR2IF(pVOILRuler==NULL,FALSE,"VerticalRuler::Init() - pVOILRuler==NULL"); 00550 ERROR2IF( pRulers==NULL,FALSE,"VerticalRuler::Init() - pRulers==NULL"); 00551 00552 pOILRuler = pVOILRuler; 00553 pRulerPair = pRulers; 00554 00555 return TRUE; 00556 }
|
|
Implements RulerBase. Definition at line 208 of file rulers.h. 00208 { return FALSE; }
|
|
Implements RulerBase. Definition at line 207 of file rulers.h. 00207 { return UserCoord(0,ord); }
|