API  1.0.0
CPTextView.h
Go to the documentation of this file.
1 
2 @interface CPTextView : CPText
3 {
4  BOOL _allowsUndo // @accessors(property=allowsUndo);
5  BOOL _isHorizontallyResizable // @accessors(getter=isHorizontallyResizable, setter=setHorizontallyResizable:);
6  BOOL _isVerticallyResizable // @accessors(getter=isVerticallyResizable, setter=setVerticallyResizable:);
7  BOOL _usesFontPanel // @accessors(property=usesFontPanel);
8  CGPoint _textContainerOrigin // @accessors(getter=textContainerOrigin);
9  CGSize _minSize // @accessors(property=minSize);
10  CGSize _maxSize // @accessors(property=maxSize);
11  CGSize _textContainerInset // @accessors(property=textContainerInset);
12  CPColor _insertionPointColor // @accessors(property=insertionPointColor);
13  CPColor _textColor // @accessors(property=textColor);
14  CPDictionary _selectedTextAttributes // @accessors(property=selectedTextAttributes);
15  CPDictionary _typingAttributes // @accessors(property=typingAttributes);
16  CPFont _font;
17  CPLayoutManager _layoutManager // @accessors(getter=layoutManager);
18  CPRange _selectionRange // @accessors(getter=selectedRange);
19  CPSelectionGranularity _selectionGranularity // @accessors(property=selectionGranularity);
20 
21  CPSelectionGranularity _previousSelectionGranularity; // private
22 
23  CPTextContainer _textContainer // @accessors(property=textContainer);
24  CPTextStorage _textStorage // @accessors(getter=textStorage);
25  id <CPTextViewDelegate> _delegate // @accessors(property=delegate);
26 
27  unsigned _delegateRespondsToSelectorMask;
28 
29  int _startTrackingLocation;
30 
31  _CPCaret _caret;
32  CPTimer _scrollingTimer;
33 
34  BOOL _scrollingDownward;
35  CPRange _movingSelection;
36 
37  int _stickyXLocation;
38 
39  CPArray _selectionSpans;
40  CPView _observedClipView;
41  CGRect _exposedRect;
42 
43  CPTimer _scrollingTimer;
44 
45  CPString _placeholderString;
46 
47  BOOL _firstResponderButNotEditingYet;
48 
49  CPRange _mouseDownOldSelection;
50 }
51 @end
Definition: CPFont.h:2
A mutable key-value pair collection.
Definition: CPDictionary.h:2
An immutable string (collection of characters).
Definition: CPString.h:2
A timer object that can send a message after the given time interval.
Definition: CPTimer.h:2
Definition: CPView.j:137
Definition: CPText.h:2