mirror of
https://github.com/vim/vim.git
synced 2025-10-05 05:34:07 -04:00
updated for version 7.3.782
Problem: Windows: IME composition may use a wrong font. Solution: Use 'guifontwide' for IME when it is set. (Taro Muraoka)
This commit is contained in:
@@ -3560,6 +3560,10 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
to set 'guifontwide' at all unless you want to override the choice
|
to set 'guifontwide' at all unless you want to override the choice
|
||||||
made by Pango/Xft.
|
made by Pango/Xft.
|
||||||
|
|
||||||
|
Windows +multibyte only: *guifontwide_win_mbyte*
|
||||||
|
|
||||||
|
If set and vaild, 'guifontwide' is used for IME instead of 'guifont'.
|
||||||
|
|
||||||
*'guiheadroom'* *'ghr'*
|
*'guiheadroom'* *'ghr'*
|
||||||
'guiheadroom' 'ghr' number (default 50)
|
'guiheadroom' 'ghr' number (default 50)
|
||||||
global
|
global
|
||||||
|
@@ -1002,6 +1002,9 @@ gui_get_wide_font()
|
|||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
gui.wide_font = font;
|
gui.wide_font = font;
|
||||||
|
#ifdef FEAT_GUI_MSWIN
|
||||||
|
gui_mch_wide_font_changed();
|
||||||
|
#endif
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@@ -323,10 +323,15 @@ static void TrackUserActivity __ARGS((UINT uMsg));
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* For control IME.
|
* For control IME.
|
||||||
|
*
|
||||||
|
* These LOGFONT used for IME.
|
||||||
*/
|
*/
|
||||||
#ifdef FEAT_MBYTE
|
#ifdef FEAT_MBYTE
|
||||||
# ifdef USE_IM_CONTROL
|
# ifdef USE_IM_CONTROL
|
||||||
|
/* holds LOGFONT for 'guifontwide' if available, otherwise 'guifont' */
|
||||||
static LOGFONT norm_logfont;
|
static LOGFONT norm_logfont;
|
||||||
|
/* holds LOGFONT for 'guifont' always. */
|
||||||
|
static LOGFONT sub_logfont;
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -3090,6 +3095,39 @@ logfont2name(LOGFONT lf)
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef FEAT_MBYTE_IME
|
||||||
|
/*
|
||||||
|
* Set correct LOGFONT to IME. Use 'guifontwide' if available, otherwise use
|
||||||
|
* 'guifont'
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
update_im_font()
|
||||||
|
{
|
||||||
|
LOGFONT lf_wide;
|
||||||
|
|
||||||
|
if (p_guifontwide != NULL && *p_guifontwide != NUL
|
||||||
|
&& get_logfont(&lf_wide, p_guifontwide, NULL, TRUE) == OK)
|
||||||
|
norm_logfont = lf_wide;
|
||||||
|
else
|
||||||
|
norm_logfont = sub_logfont;
|
||||||
|
im_set_font(&norm_logfont);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef FEAT_MBYTE
|
||||||
|
/*
|
||||||
|
* Handler of gui.wide_font (p_guifontwide) changed notification.
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
gui_mch_wide_font_changed()
|
||||||
|
{
|
||||||
|
# ifdef FEAT_MBYTE_IME
|
||||||
|
update_im_font();
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Initialise vim to use the font with the given name.
|
* Initialise vim to use the font with the given name.
|
||||||
* Return FAIL if the font could not be loaded, OK otherwise.
|
* Return FAIL if the font could not be loaded, OK otherwise.
|
||||||
@@ -3112,9 +3150,10 @@ gui_mch_init_font(char_u *font_name, int fontset)
|
|||||||
font_name = lf.lfFaceName;
|
font_name = lf.lfFaceName;
|
||||||
#if defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)
|
#if defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)
|
||||||
norm_logfont = lf;
|
norm_logfont = lf;
|
||||||
|
sub_logfont = lf;
|
||||||
#endif
|
#endif
|
||||||
#ifdef FEAT_MBYTE_IME
|
#ifdef FEAT_MBYTE_IME
|
||||||
im_set_font(&lf);
|
update_im_font();
|
||||||
#endif
|
#endif
|
||||||
gui_mch_free_font(gui.norm_font);
|
gui_mch_free_font(gui.norm_font);
|
||||||
gui.norm_font = font;
|
gui.norm_font = font;
|
||||||
|
@@ -50,6 +50,7 @@ void gui_mch_delete_lines __ARGS((int row, int num_lines));
|
|||||||
void gui_mch_insert_lines __ARGS((int row, int num_lines));
|
void gui_mch_insert_lines __ARGS((int row, int num_lines));
|
||||||
void gui_mch_exit __ARGS((int rc));
|
void gui_mch_exit __ARGS((int rc));
|
||||||
int gui_mch_init_font __ARGS((char_u *font_name, int fontset));
|
int gui_mch_init_font __ARGS((char_u *font_name, int fontset));
|
||||||
|
void gui_mch_wide_font_changed __ARGS((void));
|
||||||
int gui_mch_maximized __ARGS((void));
|
int gui_mch_maximized __ARGS((void));
|
||||||
void gui_mch_newfont __ARGS((void));
|
void gui_mch_newfont __ARGS((void));
|
||||||
void gui_mch_settitle __ARGS((char_u *title, char_u *icon));
|
void gui_mch_settitle __ARGS((char_u *title, char_u *icon));
|
||||||
|
@@ -50,6 +50,7 @@ void gui_mch_delete_lines __ARGS((int row, int num_lines));
|
|||||||
void gui_mch_insert_lines __ARGS((int row, int num_lines));
|
void gui_mch_insert_lines __ARGS((int row, int num_lines));
|
||||||
void gui_mch_exit __ARGS((int rc));
|
void gui_mch_exit __ARGS((int rc));
|
||||||
int gui_mch_init_font __ARGS((char_u *font_name, int fontset));
|
int gui_mch_init_font __ARGS((char_u *font_name, int fontset));
|
||||||
|
void gui_mch_wide_font_changed __ARGS((void));
|
||||||
int gui_mch_maximized __ARGS((void));
|
int gui_mch_maximized __ARGS((void));
|
||||||
void gui_mch_newfont __ARGS((void));
|
void gui_mch_newfont __ARGS((void));
|
||||||
void gui_mch_settitle __ARGS((char_u *title, char_u *icon));
|
void gui_mch_settitle __ARGS((char_u *title, char_u *icon));
|
||||||
|
@@ -725,6 +725,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
782,
|
||||||
/**/
|
/**/
|
||||||
781,
|
781,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user