将你的程序带到前台或后台

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

这篇文章将向你展示如何在你的程序得到或失去屏幕焦点的时候控制它们和怎样控制它们。

在焦点改变的时候开始。Series 60系列的框架将在程序得到或失去屏幕焦点的时候通过CAknAppUi::HandleForegroundEventL(TBool aForeground)发出通知。当你的程序得到焦点的时候参数aForeground为ETrue,失去焦点的时候为EFalse。

如果你需要做一些特定的操作,你需要重载这个函数。这有一个不失去焦点的例子

void CMyAppUi::HandleForegroundEventL(TBool aForeground)

{

// Call Base class method

CAknAppUi::HandleForegroundEventL(aForeground);

if(aForeground)

{

// We have gained the focus

...

}

else

{

// We have lost the focus

...

}

}

改变焦点。你总是能够请求改变你程序的焦点使用命令TApaTask::SendToBackground() and TApaTask::BringToForeground()。下面代码片段显示怎样从AppUi使用它们:

void CMyAppUi::BringToForeground()

{

// Construct en empty TApaTask object

// giving it a reference to the Window Server session

TApaTask task(iEikonEnv->WsSession( ));

// Initialise the object with the window group id of

// our application (so that it represent our app)

task.SetWgId(CEikonEnv::Static()->RootWin().Identifier());

// Request window server to bring our application

// to foreground

task.BringToForeground();

}

我没有测试下面的代码,但你可能可以使用下面的代码控制其他的程序:

// Bring the application "theApp" to background

TApaTaskList tasklist(iCoeEnv->WsSession());

TApaTask task(tasklist.FindApp(_L("theApp")));

task.SendToBackground(); // or BringToForeground()

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航