#include <texttool.h>
Inheritance diagram for TextToolBlobPosItem:
Public Member Functions | |
CC_DECLARE_DYNAMIC (TextToolBlobPosItem) | |
TextToolBlobPosItem (DocCoord Left, DocCoord Right, BOOL Connected, TextStory *pStory) | |
Renders off tool blobs. Constructor - sets member variables to the parameters. | |
~TextToolBlobPosItem () | |
Destructor. | |
DocCoord | GetLeftBlobPos () const |
DocCoord | GetRightBlobPos () const |
BOOL | IsConnected () const |
TextStory * | GetBlobStory () const |
Protected Attributes | |
DocCoord | m_LeftBlobPos |
DocCoord | m_RightBlobPos |
BOOL | m_BlobsConnected |
TextStory * | m_pTextStory |
Definition at line 123 of file texttool.h.
|
Renders off tool blobs. Constructor - sets member variables to the parameters.
Definition at line 2521 of file texttool.cpp. 02522 { 02523 ERROR3IF(pStory==NULL, "NULL story pointer"); 02524 02525 m_LeftBlobPos = Left; 02526 m_RightBlobPos = Right; 02527 m_pTextStory = pStory; 02528 m_BlobsConnected = Connected; 02529 }
|
|
Destructor.
Definition at line 2543 of file texttool.cpp.
|
|
|
|
Definition at line 135 of file texttool.h. 00135 {return m_pTextStory;}
|
|
Definition at line 132 of file texttool.h. 00132 {return m_LeftBlobPos;}
|
|
Definition at line 133 of file texttool.h. 00133 {return m_RightBlobPos;}
|
|
Definition at line 134 of file texttool.h. 00134 {return m_BlobsConnected;}
|
|
Definition at line 140 of file texttool.h. |
|
Definition at line 138 of file texttool.h. |
|
Definition at line 141 of file texttool.h. |
|
Definition at line 139 of file texttool.h. |