Namespaces
Variants
Actions

How to control visibility of a setting item in Setting Listbox

Jump to: navigation, search
Article Metadata

Code Example
Article
Created: kiranmudiyam (27 Sep 2007)
Last edited: hamishwillee (26 Jul 2012)

CAknSettingItemList is defined in aknsettingitemlist.h. Creating settings items is discussed Create Dynamic Settings Pages using Symbian C++

Create setting item listbox from resource with some items in it.

iListBox = new ( ELeave ) CAknSettingItemList;
-----
-----
iListBox->ConstructFromResourceL(R_SETTINGS_LIST )
iListBox->ActivateL();

To hide an item or make invisible SetHidden(ETrue) is to be called on that item.

(*(iListBox->SettingItemArray()))[index]->SetHidden(ETrue);

The setting item array must have to be notified of this by calling CAknSettingItemList::HandleChangeInItemArrayOrVisibility

iListBox->HandleChangeInItemArrayOrVisibilityL();

Note that the items are hidden and not deleted. They can still be accessed using (*SettingItemArray())[index] where index indicates the hidden item number.

Also that SettingItemArray()->MdcaCount() gives only the visible number of items (because of which one may think that the hidden item is deleted. ) SettingItemArray()->Count() gives the total number of items in the SettingList (visible + invisible).

SettingItemArray()->VisibleCount ( ) Returns the number of visible items.

Use Cases

Hide one setting item to prevent the situation where two settings items should not be simultaneously switched ON.


Example Project

The types of settings item that can appear in a list can be found here.

The following sample application creates a slider control setting item and becomes invisible when you select “Hidden” from Options menu.

File:HideSliderSettingItem.zip

Internal Links

This page was last modified on 26 July 2012, at 06:21.
105 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