11 2013 档案
wxWidgets搜索事件处理函数顺序
摘要:详细参见:使用wxWidgets进行跨平台程序开发 (王强 译)实例:class MyFrame:public wxFrame{ public: MyFrame() { wxButton* button = new wxButton(this, wx_OK, wxT("ok"), wxPoint(200, 200)); }};一个Frame和一个button控件。当收到一个按钮按下去的消息时,先搜索button类的事件表,如果button类没有处理函数时就搜索button类继承树中父类的事件表。当button类继承树中没有处理函数时,这时就搜索其父窗口的事件表如例中的Fr. 阅读全文
posted @ 2013-11-30 20:51 mfslog 阅读(314) 评论(0) 推荐(0)
vimrc 配置支持backspace
摘要:在vimrc中添加:set nocompatibleset backspace=indent,eol,start 阅读全文
posted @ 2013-11-29 00:33 mfslog 阅读(246) 评论(0) 推荐(0)
vim 插件
摘要:自动补全插件更换:youcompletemegithub:https://github.com/Valloric/YouCompleteMe 阅读全文
posted @ 2013-11-27 22:34 mfslog 阅读(171) 评论(0) 推荐(0)
PCRE
摘要:http://blog.sina.com.cn/s/blog_6a1837e901010ckv.htmlhttp://hubeihuyanwei.blog.163.com/blog/static/2820528420096172518886/http://biancheng.dnbcw.info/c/335882.html学习PCRE正则库的使用。 阅读全文
posted @ 2013-11-24 21:18 mfslog 阅读(253) 评论(0) 推荐(0)