cc [ flag ... ] file ... -lcdk [ library ... ]
#include <cdk.h>
| Plate_Character | |
| # | Accepts an integer. |
| A | Accepts an alphabetic value. |
| C |
Accepts an alphabetic value.
Automatically converts the character to upper case.
|
| c |
Accepts an alphabetic value.
Automatically converts the character to lower case.
|
| M |
Accepts alphanumeric characters.
|
| X |
Accepts alphanumeric characters.
Automatically converts the character to upper case.
|
| x |
Accepts alphanumeric characters.
Automatically converts the character to upper case.
|
| Anything else |
Ignored and assumed a non-editable position.
|
| Key | Action |
| Delete |
Deletes the character at the cursor.
|
| Backspace |
Deletes the character before cursor, moves cursor left.
|
| Ctrl-P |
Pastes whatever is in the paste buffer, into the widget.
|
| Ctrl-K |
Cuts the contents from the widget and saves a copy in the paste buffer.
|
| Ctrl-T |
Copies the contents of the widget into the paste buffer.
|
| Ctrl-E |
Erases the contents of the widget.
|
| Return |
Exits the widget and returns a char* representing the information which was typed into the field.
It also sets the widget data exitType to vNORMAL.
|
| Tab |
Exits the widget and returns a char* representing the information which was typed into the field.
It also sets the widget data exitType to vNORMAL.
|
| Escape |
Exits the widget and returns a NULL pointer.
It also sets the widget data exitType to vESCAPE_HIT.
|
| Ctrl-L | Refreshes the screen. |