为了账号安全,请及时绑定邮箱和手机立即绑定

minigui/ncs:解决Spinbox字体设置无效问题

标签:
Android

minigui/ncs控件集中的Spinbox控件存在一个问题,如下图,即使设置了字体,在运行时也不会应用指定的字体。

https://img1.sycdn.imooc.com//5b53f0ca0001da7f10080487.jpg

通过查看libmgncs-1.2.0的源码,找到了原因,Spinbox控件中用于显示数字的子控件是SLEdit

以下是mSpinBox.c代码片段,createBody用于创建子控件,可以看到editor为一个SLEdit对象

static mObject* mSpinBox_createBody(mSpinBox *self)
{
    mObject *body;
    DWORD dwStyle = GetWindowStyle(self->hwnd);
    NCS_EVENT_HANDLER editor_handlers[] = {
        {MSG_CHAR, editor_onChar},
        {MSG_SETPIECE_PROPERTY, editor_onSetPieceProperty},
        {NCS_NOTIFY_CODE(NCSN_EDIT_CHANGE), editor_onChanged},
        {0, NULL}
    };    //create a editor
    mWidget * editor = ncsCreateWindow(NCSCTRL_SLEDIT, "",
        spinbox_style_to_editor_style(dwStyle),
        WS_EX_NONE,        100,        0, 0, 0, 0,
        self->hwnd,
        NULL,
        NULL, //rdr_info
        editor_handlers, //handlers,
        (DWORD)self);

    body = create_pieces(self, editor, dwStyle);    return body;
}

SLEdit本身是可以正常响应MSG_FONTCHANGED消息的,但是Spinbox作为容器控件并没有处理MSG_FONTCHANGED消息。所以SLEdit作为子控件根本收不到MSG_FONTCHANGED消息的,也就无法改变字体,只能使用默认的系统字体。

以下是mSpinBox.c的消息处理函数,可以看出,mSpinBox只处理了MSG_SETFOCUSMSG_KILLFOCUS消息,就把控制权交给了父类(mSpinner)的消息处理函数。

static LRESULT mSpinBox_wndProc (mSpinBox* self, UINT message, WPARAM wParam, LPARAM lParam)
{    switch(message) {        case MSG_SETFOCUS:
        {            if ((GetWindowStyle(self->hwnd) & NCSS_SPNBOX_AUTOFOCUS))
                SetFocusChild (GetDlgItem(self->hwnd, 100));            break;
        }        case MSG_KILLFOCUS:
        {
            SendDlgItemMessage (self->hwnd, 100, MSG_KILLFOCUS, 0, 0);            break;
        }        default:        break;
    }    return Class(mSpinner).wndProc((mSpinner*)self, message, wParam, lParam);
}

知道原因就有了解决办法

解决方案1

修改libmgncs-1.2.0的源码,修改上面的mSpinBox_wndProc函数,增加对MSG_FONTCHANGED消息的处理:

// 判断logfont是否为系统字体static inline BOOL is_system_font(PLOGFONT logfont)
{    if(logfont){        for(int font_id = 0; font_id < NR_SYSLOGFONTS; ++font_id)
        {            if(logfont == g_SysLogFont[font_id])
            {                return TRUE;
            }

        }
    }    return FALSE;
}static LRESULT mSpinBox_wndProc (mSpinBox* self, UINT message, WPARAM wParam, LPARAM lParam)
{    switch(message) {        case MSG_SETFOCUS:
        {            if ((GetWindowStyle(self->hwnd) & NCSS_SPNBOX_AUTOFOCUS))
                SetFocusChild (GetDlgItem(self->hwnd, 100));            break;
        }        case MSG_KILLFOCUS:
        {
            SendDlgItemMessage (self->hwnd, 100, MSG_KILLFOCUS, 0, 0);            break;
        }        case MSG_FONTCHANGED:
        {            // 为SLEdit控件创建字体
            PLOGFONT editor_font = CreateLogFontIndirect(GetWindowFont(self->hwnd));            // 设置SLEdit字体,100为SLEdit控件的ID
            PLOGFONT of = SetWindowFont (GetDlgItem(self->hwnd, 100), editor_font);            // 如果原字体不是系统字体,则销毁原字体,不能销毁系统字体
            if(!is_system_font(of)){
                DestroyLogFont(of);
            }            return FALSE;
        }        default:        break;
    }    return Class(mSpinner).wndProc((mSpinner*)self, message, wParam, lParam);
}

解决方案2

修改自己的UI界面代码,在mSpinBox收到MSG_FONTCHANGED消息时设置SLEdit控件字体

代码与方案1相同,只是放在了了应用程序的onFontChanged

static inline BOOL is_system_font(PLOGFONT logfont)
{    if(logfont){        for(int font_id = 0; font_id < NR_SYSLOGFONTS; ++font_id)
        {            if(logfont == g_SysLogFont[font_id])
            {                return TRUE;
            }

        }
    }    return FALSE;
}//$func @2628714496 onFontChanged -- Need by merge, don't modifystatic void Spinbox1_onFontChanged (mWidget* self, UINT message) 
{

    PLOGFONT editor_font =CreateLogFontIndirect(GetWindowFont(self->hwnd));
    mWidget* editor = ncsGetChildObj(self->hwnd,100);
    PLOGFONT of = SetWindowFont(editor->hwnd,editor_font);//          PLOGFONT of = SetWindowFont (GetDlgItem(self->hwnd, 100), editor_font);
    if(!is_system_font(of)){
        DestroyLogFont(of);
    }
}//$handle @2628714496 -- Need by merge, don't modifystatic NCS_EVENT_HANDLER Spinbox1_handlers [] = {
    {MSG_FONTCHANGED,Spinbox1_onFontChanged},    //$user -- TODO add your handlers here
    {-1,NULL}
};

执行结果: 
https://img1.sycdn.imooc.com//5b53f0d3000171d902430322.jpg

原文出处

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消