Rogue Wave Views 5.6 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
Annotated text gadget class. More...
#include <ilviews/annotext/cursor.h>
Public Member Functions | |
IlvATCursor (const IlvAnnoText *text) | |
Constructor. More... | |
virtual void | extract () |
Disconnects the cursor from the annotated text object. More... | |
IlvATZone * | getZone () const |
Returns the text zone containing the cursor. More... | |
virtual IlBoolean | isAtWordBoundary () const |
Indicates whether the cursor is located between two words. More... | |
IlBoolean | isConnected () const |
Indicates whether the cursor is connected to an annotated text object. More... | |
void | moveBackward (IlBoolean jumpcursor=IlTrue, IlBoolean visible=IlTrue) |
Move the cursor one step backward. More... | |
void | moveEndLine () |
Moves the cursor at the end of the current line. More... | |
void | moveEndParagraph (IlBoolean visible=IlTrue) |
Moves the cursor at the end of the current paragraph. More... | |
void | moveEndText () |
Moves the cursor at the beginning of the text. More... | |
void | moveEndZone (IlvATZone *, IlvPosition=IlvLeft) |
Moves the cursor at the end of the specified text zone. More... | |
void | moveForward (IlBoolean jumpcursor=IlTrue, IlBoolean visible=IlTrue) |
Move the cursor one step forward. More... | |
void | moveNextWord (IlBoolean visible=IlTrue) |
Moves the cursor to the next word boundary. More... | |
void | movePreviousWord (IlBoolean visible=IlTrue) |
Moves the cursor to the previous word boundary. More... | |
void | moveStartLine () |
Moves the cursor at the beginning of the current line. More... | |
void | moveStartParagraph (IlBoolean visible=IlTrue) |
Moves the cursor at the beginning of the current paragraph. More... | |
void | moveStartText () |
Moves the cursor at the beginning of the text. More... | |
void | moveStartZone (IlvATZone *, IlvPosition=IlvRight) |
Moves the cursor at the beginning of the specified zone. More... | |
virtual void | moveTo (IlvATCursor *, IlvPosition=IlvLeft) |
Moves the cursor next to a given cursor. More... | |
virtual IlBoolean | moveTo (const IlvPoint &point, const IlvTransformer *t=0) |
Moves the cursor to a given location. More... | |
IlBoolean | startsParagraph () const |
Indicates whether the cursor is located at the beginning of a paragraph. More... | |
Annotated text gadget class.
Library: ilvatext
An instance of the IlvATCursor
class represents a position in the text flow of the IlvAnnoText
gadget. Its functional interface offers various ways to position it at the appropriate place in the text.
IlvAnnoText
, IlvATInsertionCursor
, IlvATInteractor
, IlvATPalette
, IlvATZone
. IlvATCursor::IlvATCursor | ( | const IlvAnnoText * | text | ) |
Constructor.
The constructor initializes a new instance of the IlvATCursor
class for atext.
atext | The annotated text object. |
|
virtual |
Disconnects the cursor from the annotated text object.
Disconnects the cursor from the flow of the annotated text object.
IlvATZone* IlvATCursor::getZone | ( | ) | const |
Returns the text zone containing the cursor.
IlvATZone
immediately containing the cursor.
|
virtual |
Indicates whether the cursor is located between two words.
IlTrue
if the cursor is between two words, otherwise it returns IlFalse
. IlBoolean IlvATCursor::isConnected | ( | ) | const |
Indicates whether the cursor is connected to an annotated text object.
IlTrue
if the cursor has been set into the flow of the text, using one of the move functions, IlFalse
if it has not been connected since its creation or if it has been disconnected using the extract
function. Move the cursor one step backward.
Sets the position of the text cursor to the previous character or graphic component of the text.
jumpcursor | If set to IlTrue , cursors encountered will be ignored even if visible. |
visible | If set to IlTrue , only visible text is taken into account; otherwise, the text cursor is moved to the previous position, be it visible or not. |
void IlvATCursor::moveEndLine | ( | ) |
Moves the cursor at the end of the current line.
Sets the position of the text cursor to the end of the line.
Moves the cursor at the end of the current paragraph.
Sets the position of the text cursor to just before the next carriage return (end of a paragraph or line break) of the text.
visible | If set to IlTrue , only visible text is taken into account; otherwise, the text cursor is moved to the next carriage return, be it visible or not. |
void IlvATCursor::moveEndText | ( | ) |
Moves the cursor at the beginning of the text.
Sets the position of the text cursor to just after the last character or graphic component of the text.
void IlvATCursor::moveEndZone | ( | IlvATZone * | , |
IlvPosition | = IlvLeft |
||
) |
Moves the cursor at the end of the specified text zone.
Sets the position of the text cursor to the end of zone
zone | The annotated text zone. |
pos | If set to IlvRight , the cursor is set after (to right of) the zone delimiter. The default value IlvLeft indicates that the cursor is set before (to the left of) the zone delimiter; the cursor is then inside the zone. |
Move the cursor one step forward.
Sets the position of the text cursor to the next character or graphic component of the text.
jumpcursor | If set to IlTrue , cursors encountered will be ignored even if they are visible. |
visible | If set to IlTrue , only visible text is taken into account; otherwise, the text cursor is moved to the next position, be it visible or not. |
Moves the cursor to the next word boundary.
Sets the position of the text cursor to the next word boundary of the text.
visible | If set to IlTrue , only visible text is taken into account; otherwise, the text cursor is moved to the next word boundary without taking visibility into account. |
Moves the cursor to the previous word boundary.
Sets the position of the text cursor to the previous word boundary of the text.
visible | If set to IlTrue , only visible text is taken into account; otherwise, the text cursor is moved to the previous word boundary without taking visibility into account. |
void IlvATCursor::moveStartLine | ( | ) |
Moves the cursor at the beginning of the current line.
Sets the position of the text cursor to the beginning of the line.
Moves the cursor at the beginning of the current paragraph.
Sets the position of the text cursor to just after the previous carriage return (end of a paragraph or line break) of the text.
visible | If set to IlTrue , only visible text is taken into account; otherwise, the text cursor is moved to the next carriage return, be it visible or not. |
void IlvATCursor::moveStartText | ( | ) |
Moves the cursor at the beginning of the text.
Sets the position of the text cursor to just before the first character or graphic component of the text.
void IlvATCursor::moveStartZone | ( | IlvATZone * | , |
IlvPosition | = IlvRight |
||
) |
Moves the cursor at the beginning of the specified zone.
Sets the position of the text cursor to the beginning of zone.
pos | If set to IlvLeft , the cursor is set before (to left of) the zone delimiter. The default value IlvRight indicates that the cursor is set after (to the right of) the zone delimiter; the cursor is then inside the zone. |
|
virtual |
Moves the cursor next to a given cursor.
Moves the text cursor immediately to the left of cursor if pos is IlvLeft
, immediately to the right if pos is IlvRight
.
|
virtual |
Moves the cursor to a given location.
Moves the text cursor to the position displayed nearest to point.
point | The point location. |
t | Specifies the transformer applied to the IlvAnnoText . |
IlTrue
. IlBoolean IlvATCursor::startsParagraph | ( | ) | const |
Indicates whether the cursor is located at the beginning of a paragraph.
IlTrue
if there is no text or graphic component between the the cursor and the previous end of paragraph or line break. © Copyright 2012, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.