2001-11-27 20:44:08 +03:00
|
|
|
//
|
2004-08-26 10:18:12 +04:00
|
|
|
// "$Id: fl_font_mac.cxx,v 1.1.2.18 2004/08/26 06:18:12 matthiaswm Exp $"
|
2001-11-27 20:44:08 +03:00
|
|
|
//
|
|
|
|
// MacOS font selection routines for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2004-04-11 08:39:01 +04:00
|
|
|
// Copyright 1998-2004 by Bill Spitzak and others.
|
2001-11-27 20:44:08 +03:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
|
|
|
//
|
|
|
|
// Please report all bugs and problems to "fltk-bugs@fltk.org".
|
|
|
|
//
|
|
|
|
|
2004-08-25 04:20:27 +04:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __APPLE_QUARTZ__
|
|
|
|
#warning quartz
|
|
|
|
#endif
|
|
|
|
|
2001-11-27 20:44:08 +03:00
|
|
|
//: MeasureText, FontMetrics, WidthTabHandle, GetSysFont, SysFontSize
|
|
|
|
//: TextSize, TextFont
|
|
|
|
//: GetFNum (theName: Str255; VAR familyID: Integer);
|
|
|
|
//: FUNCTION FMSwapFont (inRec: FMInput): FMOutPtr;
|
2002-06-28 03:18:12 +04:00
|
|
|
//: SetFractEnable
|
2001-11-27 20:44:08 +03:00
|
|
|
|
|
|
|
Fl_FontSize::Fl_FontSize(const char* name, int Size) {
|
2004-08-26 04:18:43 +04:00
|
|
|
#ifdef __APPLE_QD__
|
2001-11-27 20:44:08 +03:00
|
|
|
knowMetrics = 0;
|
|
|
|
switch (*name++) {
|
|
|
|
case 'I': face = italic; break;
|
|
|
|
case 'P': face = italic | bold; break;
|
|
|
|
case 'B': face = bold; break;
|
|
|
|
default: face = 0; break;
|
|
|
|
}
|
|
|
|
unsigned char fn[80];
|
|
|
|
fn[0] = strlen(name); strcpy((char*)(fn+1), name);
|
|
|
|
GetFNum(fn, &font);
|
|
|
|
size = Size;
|
|
|
|
FMInput fIn = { font, size, face, 0, 0, { 1, 1}, { 1, 1} };
|
|
|
|
FMOutput *fOut = FMSwapFont(&fIn);
|
|
|
|
ascent = fOut->ascent; //: the following three lines give only temporary aproimations
|
|
|
|
descent = fOut->descent;
|
|
|
|
for (int i=0; i<256; i++) width[i] = fOut->widMax;
|
|
|
|
#if HAVE_GL
|
|
|
|
listbase = 0;
|
|
|
|
#endif
|
|
|
|
minsize = maxsize = size;
|
2004-08-26 04:18:43 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
|
|
|
q_name = strdup(name+1);
|
|
|
|
size = Size;
|
|
|
|
ascent = Size*3/4;
|
|
|
|
descent = Size-ascent;
|
|
|
|
q_width = Size*2/3;
|
|
|
|
minsize = maxsize = Size;
|
|
|
|
#endif
|
2001-11-27 20:44:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Fl_FontSize* fl_fontsize = 0L;
|
|
|
|
|
|
|
|
Fl_FontSize::~Fl_FontSize() {
|
|
|
|
/*
|
|
|
|
#if HAVE_GL
|
2002-06-27 08:29:39 +04:00
|
|
|
// ++ todo: remove OpenGL font alocations
|
2001-11-27 20:44:08 +03:00
|
|
|
// Delete list created by gl_draw(). This is not done by this code
|
|
|
|
// as it will link in GL unnecessarily. There should be some kind
|
|
|
|
// of "free" routine pointer, or a subclass?
|
|
|
|
// if (listbase) {
|
|
|
|
// int base = font->min_char_or_byte2;
|
|
|
|
// int size = font->max_char_or_byte2-base+1;
|
|
|
|
// int base = 0; int size = 256;
|
|
|
|
// glDeleteLists(listbase+base,size);
|
|
|
|
// }
|
|
|
|
#endif
|
|
|
|
*/
|
|
|
|
if (this == fl_fontsize) fl_fontsize = 0;
|
2004-08-26 04:18:43 +04:00
|
|
|
#ifdef __APPLE_QUARTZ__
|
|
|
|
free(q_name);
|
|
|
|
#endif
|
2001-11-27 20:44:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static Fl_Fontdesc built_in_table[] = {
|
|
|
|
{" Arial"},
|
|
|
|
{"BArial"},
|
|
|
|
{"IArial"},
|
|
|
|
{"PArial"},
|
|
|
|
{" Courier New"},
|
|
|
|
{"BCourier New"},
|
|
|
|
{"ICourier New"},
|
|
|
|
{"PCourier New"},
|
|
|
|
{" Times New Roman"},
|
|
|
|
{"BTimes New Roman"},
|
|
|
|
{"ITimes New Roman"},
|
|
|
|
{"PTimes New Roman"},
|
|
|
|
{" Symbol"},
|
|
|
|
{" Chicago"},
|
|
|
|
{"BChicago"},
|
|
|
|
{" Webdings"},
|
|
|
|
};
|
|
|
|
|
|
|
|
Fl_Fontdesc* fl_fonts = built_in_table;
|
|
|
|
|
|
|
|
void fl_font(Fl_FontSize* s) {
|
|
|
|
fl_fontsize = s;
|
2004-08-26 04:18:43 +04:00
|
|
|
#ifdef __APPLE_QD__
|
2001-12-20 08:27:14 +03:00
|
|
|
if (fl_window) SetPort( GetWindowPort(fl_window) );
|
2001-11-27 20:44:08 +03:00
|
|
|
TextFont(fl_fontsize->font); //: select font into current QuickDraw GC
|
|
|
|
TextFace(fl_fontsize->face);
|
|
|
|
TextSize(fl_fontsize->size);
|
|
|
|
if (!fl_fontsize->knowMetrics) { //: get the true metrics for the currnet GC (fails on multiple monitors with different dpi's!)
|
|
|
|
FontInfo fi; GetFontInfo(&fi);
|
|
|
|
fl_fontsize->ascent = fi.ascent;
|
|
|
|
fl_fontsize->descent = fi.descent;
|
|
|
|
FMetricRec mr; FontMetrics(&mr);
|
|
|
|
short *f = (short*)*mr.wTabHandle; //: get the char size table
|
|
|
|
for (int i=0; i<256; i++) fl_fontsize->width[i] = f[2*i];
|
|
|
|
fl_fontsize->knowMetrics = 1;
|
|
|
|
}
|
2004-08-26 04:18:43 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-08-26 10:18:12 +04:00
|
|
|
if (!s) return;
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextSelectFont(fl_gc, s->q_name, (float)s->size, kCGEncodingMacRoman);
|
|
|
|
#else
|
|
|
|
# error : need to defined either Quartz or Quickdraw
|
|
|
|
#endif
|
2001-11-27 20:44:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static Fl_FontSize* find(int fnum, int size) {
|
|
|
|
Fl_Fontdesc* s = fl_fonts+fnum;
|
|
|
|
if (!s->name) s = fl_fonts; // use 0 if fnum undefined
|
|
|
|
Fl_FontSize* f;
|
|
|
|
for (f = s->first; f; f = f->next)
|
|
|
|
if (f->minsize <= size && f->maxsize >= size) return f;
|
|
|
|
f = new Fl_FontSize(s->name, size);
|
|
|
|
f->next = s->first;
|
|
|
|
s->first = f;
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
// Public interface:
|
|
|
|
|
2003-04-06 16:54:57 +04:00
|
|
|
int fl_font_ = 0;
|
|
|
|
int fl_size_ = 0;
|
|
|
|
|
2001-11-27 20:44:08 +03:00
|
|
|
void fl_font(int fnum, int size) {
|
2003-04-06 16:54:57 +04:00
|
|
|
fl_font_ = fnum;
|
|
|
|
fl_size_ = size;
|
2001-11-27 20:44:08 +03:00
|
|
|
fl_font(find(fnum, size));
|
|
|
|
}
|
|
|
|
|
|
|
|
int fl_height() {
|
|
|
|
return fl_fontsize->ascent+fl_fontsize->descent;
|
|
|
|
}
|
|
|
|
|
|
|
|
int fl_descent() {
|
|
|
|
return fl_fontsize->descent;
|
|
|
|
}
|
|
|
|
|
|
|
|
double fl_width(const char* c, int n) {
|
|
|
|
return (double)TextWidth( c, 0, n );
|
|
|
|
}
|
|
|
|
|
2002-06-27 08:29:39 +04:00
|
|
|
// todo : fl_width returns wrong results for OS X
|
2001-11-27 20:44:08 +03:00
|
|
|
double fl_width(uchar c) {
|
|
|
|
return (double)TextWidth( &c, 0, 1 );
|
|
|
|
}
|
|
|
|
|
2003-05-21 17:23:40 +04:00
|
|
|
// MRS: The default character set is MacRoman, which is different from
|
|
|
|
// ISO-8859-1; in FLTK 2.0 we'll use UTF-8 with Quartz...
|
|
|
|
|
|
|
|
static uchar macroman_lut[256] = {
|
|
|
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
|
|
|
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
|
|
|
32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
|
|
|
|
48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
|
|
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
|
|
|
|
80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
|
|
|
|
96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
|
|
|
|
128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
|
|
|
|
144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
|
|
|
|
202, 193, 162, 163, 164, 180, 166, 164, 172, 169, 187, 199, 194, 173, 168, 248,
|
|
|
|
161, 177, 178, 179, 171, 181, 166, 225, 252, 185, 188, 200, 188, 189, 190, 192,
|
|
|
|
203, 231, 229, 204, 128, 129, 174, 130, 233, 131, 230, 232, 237, 234, 235, 236,
|
|
|
|
208, 132, 241, 238, 239, 205, 133, 215, 175, 244, 242, 243, 134, 221, 222, 167,
|
|
|
|
136, 135, 137, 139, 138, 140, 190, 141, 143, 142, 144, 145, 147, 146, 148, 149,
|
|
|
|
240, 150, 152, 151, 153, 155, 154, 214, 191, 157, 156, 158, 159, 253, 254, 216
|
|
|
|
};
|
|
|
|
|
2001-11-27 20:44:08 +03:00
|
|
|
void fl_draw(const char* str, int n, int x, int y) {
|
2003-05-21 17:23:40 +04:00
|
|
|
int i; // Looping var
|
|
|
|
uchar buf[1024], // Temporary buffer
|
|
|
|
*bufptr; // Pointer into buffer
|
|
|
|
|
|
|
|
|
|
|
|
// First convert string to MacRoman encoding...
|
2003-05-26 18:19:50 +04:00
|
|
|
if (n > (int)sizeof(buf))
|
|
|
|
n = (int)sizeof(buf);
|
2003-05-21 17:23:40 +04:00
|
|
|
|
|
|
|
for (i = n, bufptr = buf; i > 0; i --)
|
|
|
|
*bufptr++ = macroman_lut[*str++ & 255];
|
2004-08-26 04:18:43 +04:00
|
|
|
#ifdef __APPLE_QD__
|
2003-05-21 17:23:40 +04:00
|
|
|
// Then draw it...
|
2001-11-27 20:44:08 +03:00
|
|
|
MoveTo(x, y);
|
2003-05-21 17:23:40 +04:00
|
|
|
DrawText((const char *)buf, 0, n);
|
2004-08-26 04:18:43 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
|
|
|
CGContextShowTextAtPoint(fl_gc, (float)x, (float)y, (const char*)buf, n);
|
|
|
|
#else
|
|
|
|
# error : neither Quartz no Quickdraw chosen
|
|
|
|
#endif
|
2001-11-27 20:44:08 +03:00
|
|
|
}
|
|
|
|
|
2003-05-21 17:23:40 +04:00
|
|
|
|
2001-11-27 20:44:08 +03:00
|
|
|
//
|
2004-08-26 10:18:12 +04:00
|
|
|
// End of "$Id: fl_font_mac.cxx,v 1.1.2.18 2004/08/26 06:18:12 matthiaswm Exp $".
|
2001-11-27 20:44:08 +03:00
|
|
|
//
|