Consider using GetScreenModeSizeAndRotation:
CWsScreenDevice* screen = CCoeEnv::Static()->ScreenDevice();
if (screen)
{
TInt mode = screen->CurrentScreenMode();
TPixelsTwipsAndRotation...
Type: Posts; User: gybrown; Keyword(s):
Consider using GetScreenModeSizeAndRotation:
CWsScreenDevice* screen = CCoeEnv::Static()->ScreenDevice();
if (screen)
{
TInt mode = screen->CurrentScreenMode();
TPixelsTwipsAndRotation...
Another option that may be of use:
CWsScreenDevice* screen = CCoeEnv::Static()->ScreenDevice();
if (screen)
{
TInt mode = screen->CurrentScreenMode();
TPixelsTwipsAndRotation...
I found the same problem and do not have a solution. Embedding the camera app was simple to do and well documented in 2nd Edition, but I can find no comparable documentation for 3rd Edition.
Note...
I think I have come across the same problem, and I do not know of a solution.
On 3rd Edition devices, I can display SVG-T icons built into a MIF file and displayed with AknIconUtils::CreateIconL....
Here is an alternative solution that worked for me:
#ifdef __SERIES60_30__
resourceFileName = _L("z:\\resource\\pbkview.rsc");
#else
resourceFileName = _L("z:\\system\\data\\pbkview.rsc");...
I think you need to customize the TCharFormat used by the input box.
Try something like this (from the perspective of a sub-classed CEikEdwin, but easy enough to do from an owner control instead):...
Ah, yes, I forgot to check the Symbian site. That certainly verifies what I have been struggling with. I will need to work around it.
Thanks for the quick reply! (And while I'm at it, thanks more...
This may help:
http://www.symbian.com/developer/techlib/v9.1docs/doc_source/N10356/CSHelp-ref/EditingSourceRtfReference.guide.html
Alternately, you can use:
PlpVariant::GetMachineIdL in S60 2nd Edition
or
CTelephony::GetPhoneId in S60 3rd Edition.
Is it possible to use RFs::NotifyChange to get file change notifications when any file in the root directory of the MMC is deleted, created, or renamed?
Testing on an N70, I find I can monitor...