aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-02-10 06:55:37 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-02-10 06:55:37 +0000
commit5f66d9ac8697b19fa8cc1556bab81c5a44024af4 (patch)
treedc781a0795d122ad65d81d88c8a51c662d842d42 /src/main.c
parent67388bc8f489370792031bb7fca11eed20dcd416 (diff)
implement fix_font_setting() for Mac OS X.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2843 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 43bdd0f5..755397c9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2010 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2011 Hiroyuki Yamamoto
*
* 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
@@ -152,7 +152,7 @@ static struct RemoteCmd {
mainwin->mainwin_cid); \
}
-#ifdef G_OS_WIN32
+#if defined(G_OS_WIN32) || defined(__APPLE__)
static void fix_font_setting (void);
#endif
@@ -278,7 +278,7 @@ int main(int argc, char *argv[])
gtk_major_version, gtk_minor_version, gtk_micro_version,
TARGET_ALIAS);
-#ifdef G_OS_WIN32
+#if defined(G_OS_WIN32) || defined(__APPLE__)
fix_font_setting();
#endif
@@ -438,7 +438,9 @@ static void read_ini_file(void)
cmd.configdir = TRUE;
}
}
+#endif /* G_OS_WIN32 */
+#if defined(G_OS_WIN32) || defined(__APPLE__)
static void fix_font_setting(void)
{
const gchar *str = NULL;
@@ -457,15 +459,24 @@ static void fix_font_setting(void)
debug_print("fixing prefs_common.textfont setting\n");
+#ifdef G_OS_WIN32
str = "MS Gothic 12";
+#else /* __APPLE__ */
+ str = "Hiragino Kaku Gothic Pro Light 13";
+#endif
if (!gtkut_font_can_load(str)) {
+#ifdef G_OS_WIN32
debug_print("font '%s' load failed\n", str);
str = "\xef\xbc\xad\xef\xbc\xb3 \xe3\x82\xb4\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf 12";
if (!gtkut_font_can_load(str)) {
debug_print("font '%s' load failed\n", str);
str = NULL;
}
+#else /* __APPLE__ */
+ debug_print("font '%s' load failed\n", str);
+ str = NULL;
+#endif
}
if (str) {