katesupercursor.h
55 KateSuperCursor(KateDocument* doc, bool privateC, const KateTextCursor& cursor, TQObject* parent = 0L, const char* name = 0L);
56 KateSuperCursor(KateDocument* doc, bool privateC, int lineNum = 0, int col = 0, TQObject* parent = 0L, const char* name = 0L);
178 DoNotExpand = 0,
180 ExpandLeft = 0x1,
182 ExpandRight = 0x2
188 KateSuperRange(KateSuperCursor* start, KateSuperCursor* end, TQObject* parent = 0L, const char* name = 0L);
189 KateSuperRange(KateDocument* doc, const KateRange& range, TQObject* parent = 0L, const char* name = 0L);
190 KateSuperRange(KateDocument* doc, const KateTextCursor& start, const KateTextCursor& end, TQObject* parent = 0L, const char* name = 0L);
358 KateSuperRangeList(const TQPtrList<KateSuperRange>& rangeList, TQObject* parent = 0L, const char* name = 0L);
Represents a range of text, from the start() to the end().
Definition: katesupercursor.h:168
KateSuperCursor(KateDocument *doc, bool privateC, const KateTextCursor &cursor, TQObject *parent=0L, const char *name=0L)
bool privateC says: if private, than don't show to apps using the cursorinterface in the list...
Definition: katesupercursor.cpp:28
InsertBehaviour
Determine how the range reacts to characters inserted immediately outside the range.
Definition: katesupercursor.h:176
void charDeletedBefore()
The character immediately before the cursor was deleted.
void positionUnChanged()
Athough an edit took place, the cursor's position was unchanged.
void positionDirectlyChanged()
The cursor's position was directly changed by the program.
void charDeletedAfter()
The character immediately after the cursor was deleted.
void charInsertedAt()
A character was inserted immediately before the cursor.
void positionDeleted()
The cursor's surrounding characters were both deleted simultaneously.
void setMoveOnInsert(bool moveOnInsert)
Change the behavior of the cursor when text is inserted at the cursor.
Definition: katesupercursor.cpp:100
bool moveOnInsert() const
Returns how this cursor behaves when text is inserted at the cursor.
Definition: katesupercursor.cpp:95