SetMsgHandled
- 当用户在自己的消息映射表中增加一个消息处理函数,而且是插入在映射表的CHAIN_MSG_MAP(SHostWnd)前(也应该在此之前,否则很可能就收不到消息)。
- 默认情况下会自动标志该消息已经被处理了,如此一来就不会继续交给SHostWnd处理。
- 解决方法如下
1 |
SetMsgHandled(FALSE); |
异步通知
实例化SNotifyCenter
1 2 3 |
SNotifyCenter *pNotifyCenter = new SNotifyCenter; // 消息循环 delete pNotifyCenter; |
1 2 3 4 5 6 7 |
// 主窗口 EVENT_MAP_BEGIN() EVENT_ID_COMMAND(R.id.btn_start_notify_thread,OnBtnStartNotifyThread) EVENT_ID_COMMAND(R.id.btn_stop_notify_thread,OnBtnStopNotifyThread) EVENT_MAP_END() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
void CMainDlg::OnBtnStartNotifyThread() { if(IsRunning()) return; SNotifyCenter::getSingleton().addEvent(EVENTID(EventThreadStart)); SNotifyCenter::getSingleton().addEvent(EVENTID(EventThreadStop)); SNotifyCenter::getSingleton().addEvent(EVENTID(EventThread)); EventThreadStart evt(this); SNotifyCenter::getSingleton().FireEventSync(&evt); BeginThread(); } void CMainDlg::OnBtnStopNotifyThread() { if(!IsRunning()) return; EndThread(); EventThreadStop evt(this); SNotifyCenter::getSingleton().FireEventSync(&evt); SNotifyCenter::getSingleton().removeEvent(EventThreadStart::EventID); SNotifyCenter::getSingleton().removeEvent(EventThreadStop::EventID); SNotifyCenter::getSingleton().removeEvent(EventThread::EventID); } |
线性布局
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<page title="linear layout"> <!--这里演示在SOUI中使用线性布局,在window中指定layout="vbox,hbox,linearLayout"时窗口的子窗口布局变成自动布局模式--> <window layout="vbox" size="-1,-1" colorBkgnd="#cccccc" gravity="center"> <!--线性布局的自适应子窗口大小--> <text>vbox + gravity + wrapContent</text> <window size="100,30" colorBkgnd="#ff0000"/> <window size="200,30" extend="10,5,10,5" colorBkgnd="#ff0000"/> <window size="120,30" layout_gravity="right" colorBkgnd="#ff0000"/> </window> <window pos="0,[5,@-1,@200" layout="vbox" colorBkgnd="#cccccc"> <!--线性布局的weight属性--> <text extend_bottom="10">vbox + gravity + weight</text> <window size="100,30" colorBkgnd="#ff0000"/> <window size="200,30" extend="10,5,10,5" colorBkgnd="#ff0000" weight="1"/> <window size="120,30" layout_gravity="right" colorBkgnd="#ff0000" weight="1"/> <button size="100,30" extend_top="10">button test</button> </window> <window pos="0,[5" layout="vbox" colorBkgnd="#cccccc" id="10000"> <text extend_bottom="10" layout_gravity="center">hbox demo</text> <window size="-1,-1" layout="hbox" colorBkgnd="#888888"> <!--线性布局之hbox--> <button size="100,30">button1</button> <button size="100,30" extend_left="10">button2</button> <button size="100,30" extend_left="10">button3</button> <button size="100,30" extend_left="10">button4</button> </window> </window> </page> |
自适应
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?xml version="1.0"?> <SOUI name="wrap_content" title="wrap_content" width="400" height="-1" margin="5,5,5,5" resizable="1" wndType="normal" translucent="1"> <!--演示root大小自动计算,注意soui结点width,height的设置,哪一个值需要自动计算就设置为-1--> <root size="-2,-1" layout="vbox" padding="5,5,5,5" colorBkgnd="#ffffff"> <caption size="-2,-1" colorBkgnd="#ffff00"> <text size="-1,-1" font="bold:1" text="窗口大小自适应演示,支持左右拉伸"/> </caption> <window size="-2,100" layout="hbox"> <window size="0,-2" text="水平平分窗口1" weight="1" colorBkgnd="#ff0000"/> <window size="0,-2" text="水平平分窗口2" weight="1" colorBkgnd="#00ff00"/> <window size="0,-2" text="水平平分窗口3" weight="1" colorBkgnd="#0000ff"/> </window> <text size="-1,-1" text="使用layout_gravity属性居中对齐" layout_gravity="center"/> <window size="-1,-1" layout_gravity="right" extend_top="5" layout="hbox"> <!--IDCANCEL支持enter退出窗口--> <button size="-1,-1" padding="10,5,10,5" id="IDOK" text="确定"/> <!--IDCANCEL支持esc退出窗口--> <button size="-1,-1" padding="10,5,10,5" extend_left="10" id="IDCANCEL" text="取消"/> </window> </root> </SOUI> |
切换语言
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
void CMainDlg::OnLanguage(int nID) { ITranslatorMgr *pTransMgr = SApplication::getSingletonPtr()->GetTranslator(); bool bCnLang = nID == R.id.lang_cn; pugi::xml_document xmlLang; if (SApplication::getSingletonPtr()->LoadXmlDocment(xmlLang, bCnLang?_T("cn"):_T("en"), _T("lang"))) { CAutoRefPtr<ITranslator> lang; pTransMgr->CreateTranslator(&lang); lang->Load(&xmlLang.child(L"language"), 1);//1=LD_XML pTransMgr->SetLanguage(lang->name()); pTransMgr->InstallTranslator(lang); SDispatchMessage(UM_SETLANGUAGE,0,0); //soui2.6 新增加的方法。 } } |
DPI适配
- 增加4个图片
1 2 3 4 5 6 |
<img> <file name="pic_100" path="image\pic_100.png"/> <file name="pic_125" path="image\pic_125.png"/> <file name="pic_150" path="image\pic_150.png"/> <file name="pic_200" path="image\pic_200.png"/> </img> |
1 2 3 4 5 6 |
<skin> <imglist name="scale_pic" scale="100" src="img:pic_100"/> <imglist name="scale_pic" scale="125" src="img:pic_125"/> <imglist name="scale_pic" scale="150" src="img:pic_150"/> <imglist name="scale_pic" scale="200" src="img:pic_200"/> </skin> |
1 2 3 4 |
<page title="page1"> <img skin="scale_pic" pos="|0,|0" offset="-0.5,-0.5"/> <window pos="20,20,@100dp,@30dp" colorBkgnd="rgba(255,0,0,128)">100dp*30dp</window> </page> |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ STL_queue06/07
- ♥ 51CTO:C++编程技巧与规范08/01
- ♥ C++14_第二篇06/21
- ♥ STL_priority_queue08/26
- ♥ Dump分析:重复释放堆内存,死锁03/17
- ♥ 编译器扩展语法:一07/06