#include <textops.h>
Inheritance diagram for OpDragStoryPathIndent:
Public Member Functions | |
OpDragStoryPathIndent () | |
~OpDragStoryPathIndent () | |
Protected Member Functions | |
virtual BOOL | SetCurrentPos (DocCoord MousePos, ClickModifiers ClickMods) |
Given a position works out the nearest position on the path to it, and sets mCurrentBlobPos to it. | |
Private Member Functions | |
CC_DECLARE_DYNAMIC (OpDragStoryPathIndent) |
Definition at line 837 of file textops.h.
|
Definition at line 843 of file textops.h.
|
|
Definition at line 844 of file textops.h.
|
|
|
|
Given a position works out the nearest position on the path to it, and sets mCurrentBlobPos to it.
Implements OpDragStoryIndent. Definition at line 5817 of file textops.cpp. 05818 { 05819 ERROR2IF(mpStoryPath==NULL, FALSE, "NULL story pointer"); 05820 05821 mCurrentBlobPos = InternalConstrain(MousePos, ClickMods); 05822 05823 return TRUE; 05824 }
|