From 3a7fb4d8e1896eced87e3ccbf9369d76fa10d7e0 Mon Sep 17 00:00:00 2001 From: TingPing Date: Fri, 31 Jan 2014 17:20:17 -0500 Subject: osx: Set Menlo as default font This moves the find_font function to the front ends since it depends on pango and cairo --- src/common/cfgfiles.c | 16 +++++++--------- src/common/fe.h | 1 + src/common/util.c | 32 -------------------------------- src/common/util.h | 1 - 4 files changed, 8 insertions(+), 42 deletions(-) (limited to 'src/common') diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c index b7a8beda..68f4126e 100644 --- a/src/common/cfgfiles.c +++ b/src/common/cfgfiles.c @@ -731,7 +731,7 @@ get_default_spell_languages (void) void load_default_config(void) { - const char *username, *realname; + const char *username, *realname, *font; char *sp; #ifdef WIN32 char out[256]; @@ -891,21 +891,19 @@ load_default_config(void) strcpy (prefs.hex_irc_user_name, username); strcpy (prefs.hex_stamp_log_format, "%b %d %H:%M:%S "); strcpy (prefs.hex_stamp_text_format, "[%H:%M:%S] "); -#ifdef WIN32 - if (find_font ("Consolas")) + + font = fe_get_default_font (); + if (font) { - strcpy (prefs.hex_text_font, "Consolas 10"); - strcpy (prefs.hex_text_font_main, "Consolas 10"); + strcpy (prefs.hex_text_font, font); + strcpy (prefs.hex_text_font_main, font); } else { strcpy (prefs.hex_text_font, DEF_FONT); strcpy (prefs.hex_text_font_main, DEF_FONT); } -#else - strcpy (prefs.hex_text_font, DEF_FONT); - strcpy (prefs.hex_text_font_main, DEF_FONT); -#endif + strcpy (prefs.hex_text_font_alternative, DEF_FONT_ALTER); strcpy (prefs.hex_text_spell_langs, get_default_spell_languages ()); diff --git a/src/common/fe.h b/src/common/fe.h index cd8ecef9..b67329ec 100644 --- a/src/common/fe.h +++ b/src/common/fe.h @@ -180,5 +180,6 @@ void fe_tray_set_icon (feicon icon); void fe_tray_set_tooltip (const char *text); void fe_tray_set_balloon (const char *title, const char *text); void fe_open_chan_list (server *serv, char *filter, int do_refresh); +const char *fe_get_default_font (); #endif diff --git a/src/common/util.c b/src/common/util.c index f999e61f..6ba2d34a 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -33,7 +33,6 @@ #include #include #include -#include /* for find_font() */ #include "../dirent/dirent-win32.h" #include "../../config-win32.h" #else @@ -2180,37 +2179,6 @@ end: } #endif -#ifdef WIN32 -int -find_font (const char *fontname) -{ - int i; - int n_families; - const char *family_name; - PangoFontMap *fontmap; - PangoFontFamily *family; - PangoFontFamily **families; - - fontmap = pango_cairo_font_map_get_default (); - pango_font_map_list_families (fontmap, &families, &n_families); - - for (i = 0; i < n_families; i++) - { - family = families[i]; - family_name = pango_font_family_get_name (family); - - if (!g_ascii_strcasecmp (family_name, fontname)) - { - g_free (families); - return 1; - } - } - - g_free (families); - return 0; -} -#endif - #ifdef USE_OPENSSL static char * str_sha256hash (char *string) diff --git a/src/common/util.h b/src/common/util.h index 0c54411b..453388cd 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -65,7 +65,6 @@ int waitline (int sok, char *buf, int bufsize, int); #ifdef WIN32 int waitline2 (GIOChannel *source, char *buf, int bufsize); int get_cpu_arch (void); -int find_font (const char *fontname); #else #define waitline2(source,buf,size) waitline(serv->childread,buf,size,0) #endif -- cgit 1.4.1