Namespaces
Variants
Actions

Archived:Changing the skin of the status pane on Symbian

Jump to: navigation, search
Archived.png
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.

Needs-update.png
This article needs to be updated: If you found this article useful, please fix the problems below then delete the {{ArticleNeedsUpdate}} template from the article to remove this warning.

Reasons: hamishwillee (05 Oct 2011)
As per article comments there are devices this snippet does not work for. Workarounds required. Would also be useful if ArticleMetaData were update.
Article Metadata

Tested with
Devices(s): Nokia 6210, Nokia N78

Compatibility
Platform(s): S60 3rd Edition, S60 3rd Edition, FP1

Article
Keywords: KAknsIIDQsnBgAreaStatus, KAknsIIDQsnBgAreaStaconRt
Created: User:Technical writer 1 (17 Nov 2008)
Last edited: hamishwillee (07 Sep 2012)

Description

Changing the status pane skin background, including the panes for signal and battery strength, was not possible prior to S60 3rd Edition, Feature Pack 2. Previously these subpanes were drawn on the server side but from S60 3rd Edition, FP2 onwards the entire status pane is owned by the application, making it possible to provide the correct theme also for the battery and signal strength subpanes.

Solution

 MAknsSkinInstance* pSkin = AknsUtils::SkinInstance();
const TAknsItemID elementID = KAknsIIDQsnBgAreaStatus;
 
// KAknsIIDQsnBgAreaStaconRt as TAknsItemID can be used to skin
// status pane in landscape mode
 
// Load desired bitmap for background.
CAknsItemDef* pMenuSkinItemCBA
= AknsUtils::CreateBitmapItemDefL( elementID,
bitmapFile,
EMbmUntitled );
if ( pMenuSkinItemCBA )
{
TRAPD( err_skin, pSkin->SetLocalItemDefL( pMenuSkinItemCBA) );
}

The above code can be used to change the skin of the status pane (excluding the battery and signal strength panes) in devices prior to S60 3rd Edition, FP2.

Skinning in S60 3rd Edition, FP1:

Skinning in 3rd Ed FP1.jpg

Skinning in S60 3rd Edition, FP2:

Skinning in 3rd Ed FP2.jpg

This page was last modified on 7 September 2012, at 09:55.
418 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved