本文整理汇总了C++中HIME_module_main_functions::mf_get_widget_xy方法的典型用法代码示例。如果您正苦于以下问题:C++ HIME_module_main_functions::mf_get_widget_xy方法的具体用法?C++ HIME_module_main_functions::mf_get_widget_xy怎么用?C++ HIME_module_main_functions::mf_get_widget_xy使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HIME_module_main_functions
的用法示例。
在下文中一共展示了HIME_module_main_functions::mf_get_widget_xy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: disp_select
static void disp_select()
{
// puts("disp_select");
gmf.mf_clear_sele();
int endn = pageidx + gmf.mf_phkbm->selkeyN;
if (endn > seg[cursor].selN)
endn = seg[cursor].selN;
int i;
for(i=pageidx; i<endn; i++) {
char buf[256];
anthy_get_segment(ac, cursor, i, buf, sizeof(buf));
// printf("%d %s\n", i, buf);
gmf.mf_set_sele_text(seg[cursor].selN, i - pageidx, buf, -1);
}
if (pageidx)
gmf.mf_disp_arrow_up();
if (i < seg[cursor].selN)
gmf.mf_disp_arrow_down();
int x,y;
gmf.mf_get_widget_xy(win_anthy, seg[cursor].label, &x, &y);
// printf("%x cusor %d %d\n", win_anthy, cursor, x);
y = gmf.mf_hime_edit_display_ap_only()?
*gmf.mf_win_y:*gmf.mf_win_y+*gmf.mf_win_yl;
gmf.mf_disp_selections(x, y);
}
示例2:
// FIXME: the pos of g_pSeg[].label is not correct
static gboolean
hime_label_cand_show (char *pszWord, int nIdx)
{
int nX, nY;
int nFontWidth, nFontHeight;
g_himeModMainFuncs.mf_set_sele_text (chewing_cand_TotalChoice (g_pChewingCtx),
nIdx,
pszWord,
-1);
// find the position of the cand win
g_himeModMainFuncs.mf_get_widget_xy (g_pWinChewing,
g_pSeg[g_nCurrentCursorPos].label,
&nX, &nY);
gtk_pango_font_pixel_size_get (&nFontWidth, &nFontHeight);
nX += g_nCurrentCursorPos * nFontWidth;
nY = g_himeModMainFuncs.mf_hime_edit_display_ap_only () ?
*g_himeModMainFuncs.mf_win_y :
*g_himeModMainFuncs.mf_win_y + *g_himeModMainFuncs.mf_win_yl;
g_himeModMainFuncs.mf_disp_selections (nX, nY);
return TRUE;
}