Qt与symbian特定格式类对象的转换
2010-06-22 03:05:00 来源:WEB开发网*(ptrImagePixel+1)=
char((int)(*(ptrBitmapPixel+1))/tmp); //Green
*(ptrImagePixel+0)=
char((int)(*(ptrBitmapPixel+0))/tmp); //Blue
ptrBitmapPixel+=aStep;
ptrImagePixel+=4;
}
}
aBitmap->EndDataAccess();
}
2:QString转为TPtr
参数说明:aQtMsg是传入参数,aS60Msg是传出参数.
view plaincopy to clipboardprint?
void QStringToTPtr(QString* aQtMsg,TPtr* aS60Msg)
{
aS60Msg->Delete(0,aS60Msg->Length());
for(int i=0;i
aS60Msg->Append((*aQtMsg)[i].unicode());
}
void QStringToTPtr(QString* aQtMsg,TPtr* aS60Msg)
{
aS60Msg->Delete(0,aS60Msg->Length());
for(int i=0;i
aS60Msg->Append((*aQtMsg)[i].unicode());
}
3:TDesC转为QString
参数说明:aDesc是传入参数,aChar是传出参数.
view plaincopy to clipboardprint?
void TDescToQString(TDesc *aDesc, QString *aChar)
{
char* ptrDes=(char*)aDes->Ptr();
for(int i=0;i
{
*aChar=*ptrDes;
aChar++;
ptrDes+=2;
}
*aChar='';
}
- ››QT中获取选中的radioButton的两种方法
- ››Qt HMAC hash 算法
- ››Qt中调用windows系统api在QComboBox中显示系统当前...
- ››Qt之实现360安全卫士主界面(三)
- ››Symbian S60 SocketConnection参数
- ››Symbian乏力:2010年诺基亚悲情大事记
- ››Symbian三大升级开启2011年新战略
- ››Symbian/Android/iOS/WM安装包对比
- ››Symbian一个活动对象的测试例子
- ››Symbian ListBox控件
- ››Symbian下自动切换SDK的批处理代码
- ››Symbian 3 版的 Swype 输入法正式上架
更多精彩
赞助商链接