The GDBaseResponder is a base NSResponder that implements base key down functionality for the most commonly used operations. More...
#import <GDBaseResponder.h>
Public Member Functions | |
| (void) | - setGDRefs |
| A hook you can use to set references to properties on a "gd" instance. | |
| (void) | - lazyInit |
| A hook you can override to do some lazy initialization. | |
| (void) | - lazyInitWithGD: |
| Lazy init this object with a GDDocument or GDApplicationController. | |
| (void) | - keyDown: |
| Used to catch some very common key down sequences and call methods on self when they occur. | |
| (void) | - onEscapeKey: |
| When the escape key has been pressed. | |
Protected Attributes | |
| id | gd |
| A GDApplicationController or a GDDocument. | |
The GDBaseResponder is a base NSResponder that implements base key down functionality for the most commonly used operations.
| - (void) lazyInit |
A hook you can override to do some lazy initialization.
This is called last after any lazyInitWith(...) method is called.
| - (void) lazyInitWithGD: | (id) | _gd |
Lazy init this object with a GDDocument or GDApplicationController.
This just sets the "gd" property.
| _gd | A GDDocument or GDApplicationController. |