forked from iPodLinux-Community/ZacZilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts.c
101 lines (82 loc) · 2.51 KB
/
fonts.c
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
/*
* Copyright (C) 2005 Courtney Cavin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#define PZMOD
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include "pz.h"
#include "ipod.h"
#include "settings.h"
void load_font()
{
char *file;
int size;
file = (char *)get_string_setting(FONT_FILE);
if (!file)
file = "Espy Sans";
if (!strchr (file, ',')) {
size = 0;
} else {
size = atoi (strchr (file, ',') + 1);
*strchr (file, ',') = 0;
}
// Note: TWO calls to ttk_get_font, because
// we intend to free both menufont and textfont.
ttk_menufont = ttk_get_font (file, size);
ttk_textfont = ttk_get_font (file, size);
ttk_gc_set_font (pz_get_gc (0), ttk_textfont);
}
static void save_font (ttk_fontinfo *fi)
{
char fontline[128];
snprintf(fontline, 127, "%s,%d", fi->name, fi->size);
set_string_setting(FONT_FILE, fontline);
ttk_gc_set_font (pz_get_gc (0), ttk_textfont);
}
static TWindow *select_font (ttk_menu_item *item)
{
ttk_fontinfo *fi = (ttk_fontinfo *)item->data;
ttk_done_font (ttk_textfont);
ttk_done_font (ttk_menufont);
ttk_textfont = ttk_get_font (fi->name, fi->size);
ttk_menufont = ttk_get_font (fi->name, fi->size);
ttk_epoch++;
save_font (fi);
return TTK_MENU_UPONE;
}
TWindow *new_font_window (ttk_menu_item *item)
{
TWindow *ret = ttk_new_window();
TWidget *this = ttk_new_menu_widget (0, ttk_menufont, ret->w, ret->h);
ttk_fontinfo *cur = ttk_fonts;
while (cur) {
ttk_menu_item *item = calloc (1, sizeof(ttk_menu_item));
item->name = cur->name;
item->makesub = select_font;
item->flags = 0;
item->data = cur;
ttk_menu_append (this, item);
cur = cur->next;
}
ttk_add_widget (ret, this);
ttk_window_title (ret, _("Select Font"));
return ret;
}