1998-10-20 00:46:58 +04:00
|
|
|
//
|
2001-12-03 21:29:49 +03:00
|
|
|
// "$Id: fl_set_fonts_win32.cxx,v 1.5.2.5.2.2 2001/12/03 18:29:49 easysw Exp $"
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// WIN32 font utilities for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2001-01-22 18:13:41 +03:00
|
|
|
// Copyright 1998-2001 by Bill Spitzak and others.
|
1998-10-20 00:46:58 +04: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
|
2001-11-26 23:13:29 +03:00
|
|
|
// License along with this7 library; if not, write to the Free Software
|
1998-10-20 00:46:58 +04:00
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
|
|
|
//
|
2000-06-06 01:21:24 +04:00
|
|
|
// Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-12-03 21:29:49 +03:00
|
|
|
// This function fills in the FLTK font table with all the fonts that
|
1998-10-06 22:21:25 +04:00
|
|
|
// are found on the X server. It tries to place the fonts into families
|
|
|
|
// and to sort them so the first 4 in a family are normal, bold, italic,
|
|
|
|
// and bold italic.
|
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/win32.H>
|
|
|
|
#include "Fl_Font.H"
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
// turn a stored font name into a pretty name:
|
|
|
|
const char* Fl::get_font_name(Fl_Font fnum, int* ap) {
|
|
|
|
const char* p = fl_fonts[fnum].name;
|
|
|
|
if (!p || !*p) {if (ap) *ap = 0; return "";}
|
1998-12-02 18:51:38 +03:00
|
|
|
int type;
|
|
|
|
switch (*p) {
|
|
|
|
case 'B': type = FL_BOLD; break;
|
|
|
|
case 'I': type = FL_ITALIC; break;
|
|
|
|
case 'P': type = FL_BOLD | FL_ITALIC; break;
|
|
|
|
default: type = 0; break;
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
2001-11-26 23:13:29 +03:00
|
|
|
if (ap) *ap = type;
|
1998-12-02 18:51:38 +03:00
|
|
|
if (!type) return p+1;
|
|
|
|
static char *buffer; if (!buffer) buffer = new char[128];
|
|
|
|
strcpy(buffer, p+1);
|
|
|
|
if (type & FL_BOLD) strcat(buffer, " bold");
|
|
|
|
if (type & FL_ITALIC) strcat(buffer, " italic");
|
|
|
|
return buffer;
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int fl_free_font = FL_FREE_FONT;
|
|
|
|
|
2001-12-03 21:29:49 +03:00
|
|
|
static int CALLBACK
|
|
|
|
enumcb(CONST LOGFONT *lpelf,
|
|
|
|
CONST TEXTMETRIC *lpntm,
|
|
|
|
int FontType,
|
|
|
|
LPARAM p) {
|
|
|
|
if (!p && lpelf->lfCharSet != ANSI_CHARSET) return 1;
|
|
|
|
char *n = (char*)(lpelf->lfFaceName);
|
1998-10-06 22:21:25 +04:00
|
|
|
for (int i=0; i<FL_FREE_FONT; i++) // skip if one of our built-in fonts
|
|
|
|
if (!strcmp(Fl::get_font_name((Fl_Font)i),n)) return 1;
|
2001-12-03 21:29:49 +03:00
|
|
|
char buffer[LF_FACESIZE + 1];
|
1998-10-06 22:21:25 +04:00
|
|
|
strcpy(buffer+1, n);
|
|
|
|
buffer[0] = ' '; Fl::set_font((Fl_Font)(fl_free_font++), strdup(buffer));
|
2001-12-03 21:29:49 +03:00
|
|
|
if (lpelf->lfWeight <= 400)
|
1998-10-06 22:21:25 +04:00
|
|
|
buffer[0] = 'B', Fl::set_font((Fl_Font)(fl_free_font++), strdup(buffer));
|
|
|
|
buffer[0] = 'I'; Fl::set_font((Fl_Font)(fl_free_font++), strdup(buffer));
|
2001-12-03 21:29:49 +03:00
|
|
|
if (lpelf->lfWeight <= 400)
|
1998-10-06 22:21:25 +04:00
|
|
|
buffer[0] = 'P', Fl::set_font((Fl_Font)(fl_free_font++), strdup(buffer));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Fl_Font Fl::set_fonts(const char* xstarname) {
|
2000-10-17 11:03:41 +04:00
|
|
|
if (fl_free_font == FL_FREE_FONT) {// if not already been called
|
|
|
|
if (!fl_gc) fl_GetDC(0);
|
2000-02-21 13:30:00 +03:00
|
|
|
EnumFontFamilies(fl_gc, NULL, (FONTENUMPROC)enumcb, xstarname != 0);
|
2000-10-17 11:03:41 +04:00
|
|
|
}
|
1998-10-06 22:21:25 +04:00
|
|
|
return (Fl_Font)fl_free_font;
|
|
|
|
}
|
|
|
|
|
2001-12-03 21:29:49 +03:00
|
|
|
|
|
|
|
static int nbSize;
|
|
|
|
static int cyPerInch;
|
|
|
|
static int sizes[128];
|
|
|
|
|
|
|
|
static int CALLBACK
|
|
|
|
EnumSizeCb(CONST LOGFONT *lpelf,
|
|
|
|
CONST TEXTMETRIC *lpntm,
|
|
|
|
DWORD fontType,
|
|
|
|
LPARAM p) {
|
|
|
|
if ((fontType & RASTER_FONTTYPE) == 0) {
|
|
|
|
sizes[0] = 0;
|
|
|
|
nbSize = 1;
|
|
|
|
|
|
|
|
// Scalable font
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int add = lpntm->tmHeight - lpntm->tmInternalLeading;
|
|
|
|
add = MulDiv(add, 72, cyPerInch);
|
|
|
|
|
|
|
|
int start = 0;
|
|
|
|
while ((start < nbSize) && (sizes[start] < add)) {
|
|
|
|
start++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((start < nbSize) && (sizes[start] == add)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i=nbSize; i>start; i--) sizes[i] = sizes[i - 1];
|
|
|
|
|
|
|
|
sizes[start] = add;
|
|
|
|
nbSize++;
|
|
|
|
|
|
|
|
// Stop enum if buffer overflow
|
|
|
|
return nbSize < 128;
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
1998-10-20 00:46:58 +04:00
|
|
|
|
2001-12-03 21:29:49 +03:00
|
|
|
|
|
|
|
int
|
|
|
|
Fl::get_font_sizes(Fl_Font fnum, int*& sizep) {
|
|
|
|
nbSize = 0;
|
|
|
|
Fl_Fontdesc *s = fl_fonts+fnum;
|
|
|
|
if (!s->name) s = fl_fonts; // empty slot in table, use entry 0
|
|
|
|
|
|
|
|
if (!fl_gc) fl_GetDC(0);
|
|
|
|
cyPerInch = GetDeviceCaps(fl_gc, LOGPIXELSY);
|
|
|
|
if (cyPerInch < 1) cyPerInch = 1;
|
|
|
|
EnumFontFamilies(fl_gc, s->name+1, EnumSizeCb, 0);
|
|
|
|
|
|
|
|
sizep = sizes;
|
|
|
|
return nbSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2001-12-03 21:29:49 +03:00
|
|
|
// End of "$Id: fl_set_fonts_win32.cxx,v 1.5.2.5.2.2 2001/12/03 18:29:49 easysw Exp $".
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|