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


Class Methods | |
| (void) | + connectGpointer:withSignal:toTarget:withSelector:andData: |
Provides functions for GCallback signal connecting
Definition at line 43 of file CGTKSignalConnector.h.
| + (void) connectGpointer: | (gpointer) | object | |
| withSignal: | (NSString *) | name | |
| toTarget: | (id) | target | |
| withSelector: | (SEL) | selector | |
| andData: | (gpointer) | data | |
Connects a GCallback function to a signal for a particular object. The GCallback function redirects the call to the Objective-C target and selector.
| object | The instance to connect to |
| name | The signal name to connect (a string in the form of "signal-name::detail" |
| target | The Objective-C class to callback to |
| sel | The selector |
| data | The data to pass to c_handler calls |
Definition at line 44 of file CGTKSignalConnector.m.