|
CoreGTK
3.18.0
CoreGTK is an Objective-C language binding for the GTK+ widget toolkit
|
#import <CGTKCallbackData.h>


Instance Methods | |
| (id) | - initWithObject:andSEL: |
| (id) | - object |
| (SEL) | - sel |
| (void) | - setObject: |
| (void) | - setSel: |
Class Methods | |
| (id) | + withObject:andSEL: |
Protected Attributes | |
| id | _object |
| SEL | _sel |
Holds object and selector info for gobject signal callbacks
Definition at line 37 of file CGTKCallbackData.h.
| - (id) initWithObject: | (id) | obj | |
| andSEL: | (SEL) | sel | |
Creates and returns a new instance of CGTKCallbackData holding the object and the selector.
| obj | The object to hold |
| sel | The selector to hold |
Definition at line 35 of file CGTKCallbackData.m.
| - (id) object |
Gets the held object
Definition at line 60 of file CGTKCallbackData.m.
| - (SEL) sel |
Gets the held selector
Definition at line 65 of file CGTKCallbackData.m.
| - (void) setObject: | (id) | object |
Sets the held object
| object | The object to set |
Definition at line 70 of file CGTKCallbackData.m.
| - (void) setSel: | (SEL) | sel |
Sets the held selector
| sel | The selector to set |
Definition at line 80 of file CGTKCallbackData.m.
| + (id) withObject: | (id) | obj | |
| andSEL: | (SEL) | sel | |
Creates and returns a new instance of CGTKCallbackData holding the object and the selector.
Note this returned instance is autoreleased.
| obj | The object to hold |
| sel | The selector to hold |
Definition at line 49 of file CGTKCallbackData.m.