Dekel Tsur wrote: > > > A small correction: the QT frontend should work with QT family names, > > > namely "Times [adobe]" instead of "adobe-times". > > > > Hmm, such names work with .setFamily() too ? > > Only these names work with setFamily()
Are you sure this is working with qt < 3.0? From the qt 3 documentation: void QFont::setFamily ( const QString & family ) Sets the family name of the font. The name is case insensitive and may include a foundry name. The family name may optionally also include a foundry name, e.g. "Helvetica [Cronyx]". (The Qt 2.x syntax, i.e. "Cronyx-Helvetica", is also supported.) If the family is available from more than one foundry and the foundry isn't specified, an arbitrary foundry is chosen. If the family isn't available a family will be set using the font matching algorithm. Regards, Jürgen.