Namespaces
Variants
Actions

CEikSecretEditor Size

Jump to: navigation, search
Article Metadata

Article
Created: rathodavinash (27 Jun 2007)
Last edited: hamishwillee (19 Jul 2012)

If there is a need for a custom password/secret editor, a custom control derived from CEikSecretEditor is required. Now CEikSecretEditor is the only editor that has not been derived from CEikEdwin. So it (And control derived from it, i.e. CAknNumericSecretEditor) does not have ConstructL variants to set size in pixels/characters. If a custom secret editor is required be sure to set its correct size using SetPosition and SetSize functions.

Also the password/secret control can never be created without a resource. So always have a dummy resource file for a Secret editor

RESOURCE SECRETED r_my_secret_editor
{
num_letters = 10;
}

The num_letters can always be modified using the SetMaxLength function.

Also whenever the controls MinimumSize is called the default values will be returned. i.e. the size of the editor reported wont be the one you set using SetSize. It will be the size when the editor was created using

TResourceReader reader;
CCoeEnv::Static()->CreateResourceReaderLC(reader, R_MY_SECRET_EDITOR);
ConstructFromResourceL(reader);
CleanupStack::PopAndDestroy();

So always return the Rect what is set using SetSize function.

This page was last modified on 19 July 2012, at 09:27.
158 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