>Hi,
>
[quoted text clipped - 10 lines]
>key
>when entering characters on Mac OS X?
Is this for something like PPx::EditUnicodeText? You can setup a
ControlFontStyleRec structure and then tell the control to use that font
with something like:
ControlFontStyleRec style = { 0 };
style.flags |= kControlUseThemeFontIDMask;
style.font = kThemeSmallEmphasizedSystemFont;
editText->SetDataTag(kControlEntireControl,
kControlEditTextStyleTag, sizeof(style), &style);
You can enter special characters, but normally not with the control key.
You can hit Option-s for an esset (ß) and Option-d for a delta () and
so on. Mac OS X has all sorts of ways to enter Unicode characters (some
apps have a Special Characters item in the Edit menu).
Ron With lots of help

Signature
Metrowerks Community Forum is a free online resource for developers
to discuss CodeWarrior topics with other users and Metrowerks' staff
-- http://www.metrowerks.com/community --
Ron Liechty - MWRon@metrowerks.com - http://www.metrowerks.com