888514b231
* Made output much more readable and useful (especially with 80 characters). * Removed useless -u option when built for Haiku. * Added a new option -t that shows the tunables. * Removed the hack to let be_app run - it works fine without on BeOS. * Improved parameter parsing (now uses getopt_long()), also added long names for all options. * I'm all for removing BeOS/Dano support completely from this app. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22825 a95241bf-73f2-0310-859d-f6bbb57e9c96
166 lines
3.6 KiB
C++
166 lines
3.6 KiB
C++
/*
|
|
* Copyright 2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Copyright 2004, François Revol. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
|
|
|
|
#include <getopt.h>
|
|
#include <stdio.h>
|
|
|
|
#include <Application.h>
|
|
#include <Font.h>
|
|
#include <String.h>
|
|
|
|
|
|
static struct option const kLongOptions[] = {
|
|
{"styles", no_argument, 0, 's'},
|
|
{"long", no_argument, 0, 'l'},
|
|
{"tuned", no_argument, 0, 't'},
|
|
{"help", no_argument, 0, 'h'},
|
|
{NULL}
|
|
};
|
|
|
|
extern const char *__progname;
|
|
static const char *sProgramName = __progname;
|
|
|
|
|
|
void
|
|
usage(void)
|
|
{
|
|
printf("%s [-s] [-l]\n", sProgramName);
|
|
printf("lists currently installed font families.\n");
|
|
printf("\t-s --styles list styles for each family\n");
|
|
printf("\t-l --long long listing with more info (spacing, encoding,\n"
|
|
"\t\t\theight (ascent/descent/leading), ...)\n");
|
|
printf("\t-t --tuned display tuned fonts\n");
|
|
#ifndef __HAIKU__
|
|
printf("\t-u update font families\n");
|
|
#endif
|
|
}
|
|
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
// parse command line parameters
|
|
|
|
bool displayStyles = false;
|
|
bool displayLong = false;
|
|
bool displayTuned = false;
|
|
#ifndef __HAIKU__
|
|
bool updateFamilies = false;
|
|
#endif
|
|
|
|
int c;
|
|
while ((c = getopt_long(argc, argv, "sltuh", kLongOptions, NULL)) != -1) {
|
|
switch (c) {
|
|
case 0:
|
|
break;
|
|
case 'h':
|
|
usage();
|
|
return 0;
|
|
default:
|
|
usage();
|
|
return 1;
|
|
|
|
case 't':
|
|
displayTuned = true;
|
|
case 'l':
|
|
displayLong = true;
|
|
case 's':
|
|
displayStyles = true;
|
|
break;
|
|
#ifndef __HAIKU__
|
|
case 'u':
|
|
updateFamilies = true;
|
|
break;
|
|
#endif
|
|
}
|
|
}
|
|
|
|
BApplication app("application/x-vnd.Haiku-listfont");
|
|
|
|
#ifndef __HAIKU__
|
|
if (updateFamilies) {
|
|
bool changed = update_font_families(true);
|
|
printf("font families %s.\n", changed ? "changed" : "did not change");
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
int32 familyCount = count_font_families();
|
|
|
|
if (displayLong) {
|
|
printf("name/style face spc. enc. "
|
|
"height (a, d, l) flags\n\n");
|
|
}
|
|
|
|
for (int32 f = 0; f < familyCount; f++) {
|
|
font_family family;
|
|
if (get_font_family(f, &family) < B_OK)
|
|
continue;
|
|
if (!displayStyles) {
|
|
printf("%s\n", family);
|
|
continue;
|
|
}
|
|
|
|
int32 styleCount = count_font_styles(family);
|
|
|
|
for (int32 s = 0; s < styleCount; s++) {
|
|
font_style style;
|
|
uint16 face;
|
|
uint32 flags;
|
|
if (get_font_style(family, s, &style, &face, &flags) < B_OK)
|
|
continue;
|
|
|
|
if (!displayLong) {
|
|
printf("%s/%s\n", family, style);
|
|
continue;
|
|
}
|
|
|
|
BString fontName;
|
|
fontName << family << "/" << style;
|
|
printf("%-37s", fontName.String());
|
|
|
|
BFont font;
|
|
font.SetFamilyAndStyle(family, style);
|
|
printf(" 0x%02x %-4d %-4d", face, font.Spacing(), font.Encoding());
|
|
|
|
font_height fh;
|
|
font.GetHeight(&fh);
|
|
printf(" %5.2f, %4.2f, %4.2f ", fh.ascent, fh.descent, fh.leading);
|
|
if ((flags & B_IS_FIXED) != 0)
|
|
printf("fixed");
|
|
|
|
#if B_BEOS_VERSION == B_BEOS_VERSION_5
|
|
/* seems R5 is broken there :-( locks up on 'a> recv' */
|
|
printf("\t%s", (flags & B_HAS_TUNED_FONT) != 0 ? "hastuned " : "");
|
|
#else
|
|
if ((flags & B_HAS_TUNED_FONT) != 0) {
|
|
if (displayTuned)
|
|
printf("\n ");
|
|
else if ((flags & B_IS_FIXED) != 0)
|
|
printf(", ");
|
|
|
|
int32 tunedCount = font.CountTuned();
|
|
printf("%ld tuned", tunedCount);
|
|
|
|
if (displayTuned) {
|
|
printf(":");
|
|
for (int32 i = 0; i < tunedCount; i++) {
|
|
tuned_font_info info;
|
|
font.GetTunedInfo(i, &info);
|
|
printf("\n\t(size %4.1f, shear %5.3f, rot. %5.3f, flags 0x%lx, face 0x%x)",
|
|
info.size,
|
|
info.shear, info.rotation, info.flags, info.face);
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
putchar('\n');
|
|
}
|
|
}
|
|
return 0;
|
|
}
|