重新启动设备代码,扩展窗口到全屏,得到剩余内存,读写GIF的帧信息,得到系统的软件版本号


重新启动设备代码
#include
#include
RDebug::Fault(0);
UserSvr::ResetMachine(EStartupWarmReset);

取ControlEnv
CAknAppUi* pUi =STATIC_CAST(CAknAppUi*, ControlEnv()->AppUi() );
CCoeControl和CCoeAppUi的类用iCoeEnv类成员访问CONE。这些类也提供ControlEnv方法
使用一个静态函数CCoeEnv::Static(),它会向CCoeEnv返回一个指针。使用CCoeEnv::Static()函数,这是因为:静态本地线程(thread-local static,TLS)的运行速度相对较慢。

 

 

扩展窗口到全屏
CCoeControl::SetExtentToWholeScreen 或者
CCoeControl里面直接设置大小:SetRect(ApplicationRect());

CFbsBitmap的管理和操作
在FBS中,位图根据其大小被划分到两种堆中。大于4KB的位图和小于4KB的位图被存放到不同的堆栈中。这样的划分是为了防止产生文件碎片。当频繁创建并删除一些大位图时,用于大位图的栈就会自动进行碎片整理。由于碎片整理的需要,当正使用大位图文件的内容时,需要锁定这些堆。为了防止碎片整理和位图操作同时发生,TBitmapUtil类提供了对堆进行锁定和解锁的操作。范例假定这个位图针对每个像素使用16位数据,这对12位位图和16位位图都是有效的。

//当大位图时所定堆
TBitmapUtil bitmapUtil( bitmap );
if( bitmap->IsLargeBitmap())
{
bitmapUtil.Begin( TPoint(0,0) );
}
// 编辑位图
TSize bitmapSize = bitmap->SizeInPixels();
TUint16* bitmapData = (TUint16*)bitmap->DataAddress();
TUint16 colour = 0;
for ( TInt y = 0; y < bitmapSize.iHeight; y++ )
{
for ( TInt x = 0; x < bitmapSize.iWidth; x++ )
{
*bitmapData++ = colour++;
}
}
// 释放
if ( bitmap->IsLargeBitmap() )
{
BitmapUtil.End();
}


DSA开发
DirectScreenAccess
查询屏幕的内存地址,这可以用UserSrv类实现
TPckgBuf infoPckg;
TScreenInfoV01& screenInfo = infoPckg();
UserSvr::ScreenInfo(infoPckg);
TUint16* screenMemory = screenInfo.iScreenAddress + 16;
该屏幕内存有一个32位的头,在写入内存时必须考虑到这个头;

 

 

得到剩余内存
Get free memory is available.
TMemoryInfoV1Buf info;
UserHal::MemoryInfo(info);
TInt freeMemory = info().iFreeRamInBytes;

 

 

读写GIF的帧信息
Symbian Native API for GIF
Read a frame. from a GIF image

TFrameInfo frameInfo;
// Find the desired frame. from the GIF // image and assign it to gifFrameIndex
//Get the frame. info
iConverter->FrameInfo(gifFrameIndex, frameInfo);
//Create a bitmap based on the size of the gif
TInt err = iBitmap->Create(frameInfo.iOverallSizeInPixels, KDeviceColourDepth);
if (err == KErrCouldNotConnect)
{ // handle errors }
//Convert the GIF frame. into a bitmap
TRAPD(convertErr, iConverter->ConvertL(*iBitmap, gifFrameIndex));

 

 

得到系统的软件版本号
Get System SW Version.
TBuf<64> swBuf; SysUtil::GetSWVersion(swBuf);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值