Currently it's not possible to change the font, font size or font style of
selected text (although changing the whole text is no problem) in an
EditorGadget using API functions. But I have already demonstrated that
this is well possible when creating an MLTE text object using API functions.
The problem seems to be that PB creates the EditorGadget with the Frame
Option Mask kTXNMonostyledTextMask. Therefore it would be nice if
this flag could be removed from PB's internal creation of the EditorGadget.
There have already been posted several requests that ask how to remove
the scrollbars in the Mac's EditorGadget if they aren't needed. This is not
possible because PB internally seems to set the Frame Option Masks
kTXNWantHScrollBarMask and kTXNWantVScrollBarMask as a default.
Unfortunately there doesn't seem to exist a way to change these settings
after the creation of the EditorGadget. Therefore it would be nice if the
two additional flags
#PB_Editor_NoHorizontalScrollBar and #PB_Editor_NoVerticalScrollBar
could be introduced to let the Mac programmer determine whether his
EditorGadget should display scrollbars. Unfortunately the underlying MLTE
doesn't offer an Auto option to display the scrollbars only if needed.