mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 06:51:44 +00:00
Added ivars for blinking insertion point
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11286 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
33aafe61be
commit
b6957f43f0
1 changed files with 11 additions and 0 deletions
|
@ -110,6 +110,17 @@ typedef enum _NSSelectionAffinity {
|
|||
NSDictionary *_markedTextAttributes;
|
||||
NSSelectionGranularity _selectionGranularity;
|
||||
|
||||
/* Timer used to redraw the insertion point ... FIXME - think what
|
||||
happens with multiple textviews */
|
||||
NSTimer *_insertionPointTimer;
|
||||
|
||||
/* Blinking of the insertion point is controlled by the following
|
||||
ivar ... it is YES during the little period in which the
|
||||
insertion point should be drawn on screen, and NO during the
|
||||
following little period in which the insertion point should not
|
||||
be drawn */
|
||||
BOOL _drawInsertionPointNow;
|
||||
|
||||
/* Stores the insertion point rect - updated by
|
||||
updateInsertionPointStateAndRestartTimer: - we must make sure we
|
||||
call the method every time that the insertion point rect might
|
||||
|
|
Loading…
Reference in a new issue