All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.TextViewDelegate

public interface TextViewDelegate
This interface wraps the Objective-C category defining delegate methods of the NSTextView class. The methods in this interface are delegate methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o textViewClickedCell(TextView, CellForTextAttachment, Rect)
A wrapper for the - textView:clickedOnCell:inRect: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).
 o textViewClickedCellAtIndex(TextView, CellForTextAttachment, Rect, int)
A wrapper for the - textView:clickedOnCell:inRect:atIndex: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).
 o textViewDidChangeSelection(Notification)
A wrapper for the - textViewDidChangeSelection: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).
 o textViewDoCommandBySelector(TextView, Selector)
A wrapper for the - textView:doCommandBySelector: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).
 o textViewDoubleClickedCell(TextView, CellForTextAttachment, Rect)
A wrapper for the - textView:doubleClickedOnCell:inRect: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).
 o textViewDoubleClickedCellAtIndex(TextView, CellForTextAttachment, Rect, int)
A wrapper for the - textView:doubleClickedOnCell:inRect:atIndex: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).
 o textViewDraggedCell(TextView, CellForTextAttachment, Rect, Event)
A wrapper for the - textView:draggedCell:inRect:event: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).
 o textViewDraggedCellAtIndex(TextView, CellForTextAttachment, Rect, Event, int)
A wrapper for the - textView:draggedCell:inRect:event:atIndex: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).
 o textViewShouldChangeTextInRange(TextView, Range, String)
A wrapper for the - textView:shouldChangeTextInRange:replacementString: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).
 o textViewWillChangeSelection(TextView, Range, Range)
A wrapper for the - textView:willChangeSelectionFromCharacterRange:toCharacterRange: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

Methods

 o textViewClickedCellAtIndex
 public abstract void textViewClickedCellAtIndex(TextView textView,
                                                 CellForTextAttachment cell,
                                                 Rect cellFrame,
                                                 int charIndex)
A wrapper for the - textView:clickedOnCell:inRect:atIndex: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

 o textViewDoubleClickedCellAtIndex
 public abstract void textViewDoubleClickedCellAtIndex(TextView textView,
                                                       CellForTextAttachment cell,
                                                       Rect cellFrame,
                                                       int charIndex)
A wrapper for the - textView:doubleClickedOnCell:inRect:atIndex: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

 o textViewDraggedCellAtIndex
 public abstract void textViewDraggedCellAtIndex(TextView view,
                                                 CellForTextAttachment cell,
                                                 Rect rect,
                                                 Event event,
                                                 int charIndex)
A wrapper for the - textView:draggedCell:inRect:event:atIndex: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

 o textViewWillChangeSelection
 public abstract Range textViewWillChangeSelection(TextView textView,
                                                   Range oldSelectedCharRange,
                                                   Range newSelectedCharRange)
A wrapper for the - textView:willChangeSelectionFromCharacterRange:toCharacterRange: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

 o textViewDidChangeSelection
 public abstract void textViewDidChangeSelection(Notification notification)
A wrapper for the - textViewDidChangeSelection: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

 o textViewShouldChangeTextInRange
 public abstract boolean textViewShouldChangeTextInRange(TextView textView,
                                                         Range affectedCharRange,
                                                         String replacementString)
A wrapper for the - textView:shouldChangeTextInRange:replacementString: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

 o textViewDoCommandBySelector
 public abstract boolean textViewDoCommandBySelector(TextView textView,
                                                     Selector commandSelector)
A wrapper for the - textView:doCommandBySelector: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

 o textViewClickedCell
 public abstract void textViewClickedCell(TextView textView,
                                          CellForTextAttachment cell,
                                          Rect cellFrame)
A wrapper for the - textView:clickedOnCell:inRect: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

 o textViewDoubleClickedCell
 public abstract void textViewDoubleClickedCell(TextView textView,
                                                CellForTextAttachment cell,
                                                Rect cellFrame)
A wrapper for the - textView:doubleClickedOnCell:inRect: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).

 o textViewDraggedCell
 public abstract void textViewDraggedCell(TextView view,
                                          CellForTextAttachment cell,
                                          Rect rect,
                                          Event event)
A wrapper for the - textView:draggedCell:inRect:event: Objective-C instance method implemented by delegates of the TextView class (known as the NSTextView Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index