|
发表于 2003-7-4 21:48:07
|
显示全部楼层
我的patch部分。。
英文字体保持原样,中文需要simsun支持
patch -p0 < dillo-cn.txt
- --- src/dw_style.c 2003-04-15 12:16:12.000000000 -0700
- +++ src-patch/dw_style.c 2003-07-04 06:47:35.000000000 -0700
- @@ -245,42 +245,42 @@
- char fontname[256], *ItalicChar;
-
- ItalicChar = prefs.use_oblique ? "o" : "i";
- - sprintf (fontname, "-*-%s-%s-%s-*-*-%d-*-75-75-*-*-iso8859-1",
- + sprintf (fontname, "-*-%s-%s-%s-*-*-%d-*-75-75-*-*-iso8859-1,-*-simsun-medium-*-*-*-12-*-*-*-*-*-gbk-0",
- font->name,
- font->bold ? "bold" : "medium",
- font->italic ? ItalicChar : "r",
- font->size);
- - font->font = gdk_font_load (fontname);
- + font->font = gdk_fontset_load (fontname);
-
- if (font->font == NULL && font->italic) {
- - sprintf (fontname, "-*-%s-%s-%s-*-*-%d-*-75-75-*-*-iso8859-1",
- + sprintf (fontname, "-*-%s-%s-%s-*-*-%d-*-75-75-*-*-iso8859-1, -*-simsun-medium-*-*-*-12-*-*-*-*-*-gbk-0",
- font->name,
- font->bold ? "bold" : "medium",
- (*ItalicChar == 'o') ? "i" : "o",
- font->size);
- - font->font = gdk_font_load (fontname);
- + font->font = gdk_fontset_load (fontname);
- }
-
- if (try_all) {
- if (font->font == NULL) {
- /* Can't load the font - substitute the default instead. */
- font->font =
- - gdk_font_load
- - ("-adobe-helvetica-medium-r-normal--*-100-*-*-*-*-iso8859-1");
- + gdk_fontset_load
- + ("-adobe-helvetica-medium-r-normal--*-100-*-*-*-*-iso8859-1,-*-simsun-medium-*-*-*-12-*-*-*-*-*-gbk-0");
- }
-
- if (font->font == NULL) {
- /* Try another platform-font that should be available. (iPaq) */
- font->font =
- - gdk_font_load
- - ("-misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-1");
- + gdk_fontset_load
- + ("-misc-fixed-medium-r-normal--13-120-75-75-c-80-iso8859-1,-*-simsun-medium-*-*-*-12-*-*-*-*-*-gbk-0");
- }
-
- if (font->font == NULL) {
- /* Can't load any suitable font! */
- g_warning ("Can't load any ISO8859-1 font!?! :(");
- font->font =
- - gdk_font_load ("-adobe-helvetica-*-*-*--*-*-*-*-*-*-*-*");
- + gdk_fontset_load ("-adobe-helvetica-*-*-*--*-*-*-*-*-*-*-*, -*-simsun-medium-*-*-*-12-*-*-*-*-*-gbk-0");
- }
- }
-
复制代码 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|