|
ObjectivelyMVC
Object oriented MVC framework for SDL3 and GNU C
|
The TextView delegate protocol. More...
#include <TextView.h>
Data Fields | |
| ident | data |
| The Delegate user-data. | |
| void(* | didBeginEditing )(TextView *textView) |
| Delegate callback for initiating text editing. | |
| void(* | didEdit )(TextView *textView) |
| Delegate callback for text input events. | |
| void(* | didEndEditing )(TextView *textView) |
| Delegate callback for finalizing text editing. | |
| ident | self |
| The Delegate self-reference. | |
The TextView delegate protocol.
Definition at line 43 of file TextView.h.
| ident TextViewDelegate::data |
The Delegate user-data.
Definition at line 53 of file TextView.h.
| void(* TextViewDelegate::didBeginEditing) (TextView *textView) |
Delegate callback for initiating text editing.
| textView | The TextView. |
Definition at line 59 of file TextView.h.
| void(* TextViewDelegate::didEdit) (TextView *textView) |
Delegate callback for text input events.
| textView | The TextView. |
Definition at line 65 of file TextView.h.
| void(* TextViewDelegate::didEndEditing) (TextView *textView) |
Delegate callback for finalizing text editing.
| textView | The TextView. |
Definition at line 71 of file TextView.h.
| ident TextViewDelegate::self |
The Delegate self-reference.
Definition at line 48 of file TextView.h.