1 /* convertfonts.c - converts fonts in a style file to fontconfig format
3 * WindowMaker window manager
5 * Copyright (c) 2004 Dan Pascu
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
23 #define PROG_VERSION "convertfonts (Window Maker) 1.0"
30 #include <WINGs/WUtil.h>
32 #include "../src/wconfig.h"
34 char *FontOptions[] = {
49 extern char *convertFont(char *font, Bool keepXLFD);
53 printf("\nUsage: %s <style_file>\n\n", ProgName);
54 puts("Converts fonts in a style file into fontconfig format");
56 puts(" --help display this help and exit");
57 puts(" --version output version information and exit");
58 puts(" --keep-xlfd preserve the original xlfd by appending a ':xlfd=<xlfd>' hint");
59 puts(" to the font name. This property is not used by the fontconfig");
60 puts(" matching engine to find the font, but it is useful as a hint");
61 puts(" about what the original font was to allow hand tuning the");
62 puts(" result or restoring the xlfd. The default is to not add it");
63 puts(" as it results in long, unreadable and confusing names.");
67 int main(int argc, char **argv)
69 WMPropList *style, *key, *val;
70 char *file = NULL, *oldfont, *newfont;
72 Bool keepXLFD = False;
82 for (i = 1; i < argc; i++) {
83 if (strcmp("--version", argv[i]) == 0) {
86 } else if (strcmp("--help", argv[i]) == 0) {
89 } else if (strcmp("--keep-xlfd", argv[i]) == 0) {
91 } else if (argv[i][0] == '-') {
92 printf("%s: invalid argument '%s'\n", ProgName, argv[i]);
93 printf("Try '%s --help' for more information\n", ProgName);
100 /* we need this in order for MB_CUR_MAX to work */
101 setlocale(LC_ALL, "");
103 WMPLSetCaseSensitive(False);
105 if (stat(file, &statbuf) < 0) {
110 style = WMReadPropListFromFile(file);
113 printf("%s: could not load style file.\n", ProgName);
117 if (!WMIsPLDictionary(style)) {
118 printf("%s: '%s' is not a well formatted style file\n", ProgName, file);
122 for (i = 0; FontOptions[i] != NULL; i++) {
123 key = WMCreatePLString(FontOptions[i]);
124 val = WMGetFromPLDictionary(style, key);
126 oldfont = WMGetFromPLString(val);
127 newfont = convertFont(oldfont, keepXLFD);
128 if (oldfont != newfont) {
129 val = WMCreatePLString(newfont);
130 WMPutInPLDictionary(style, key, val);
131 WMReleasePropList(val);
135 WMReleasePropList(key);
138 WMWritePropListToFile(style, file, True);