diff -r 7d48bed6ce0c -r 987c9837762f cbs/cbsui/UiInc/CbsUiConstants.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cbs/cbsui/UiInc/CbsUiConstants.h Wed Sep 01 12:15:03 2010 +0100 @@ -0,0 +1,80 @@ +/* +* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* Contains constants which are used in CBSUI application. +* +* +*/ + + +#ifndef __CBS_UI_CONSTANTS_H +#define __CBS_UI_CONSTANTS_H + +// INCLUDES +#include "Cbsuiapp.hrh" + + +// CONSTANTS +const TInt KCbsUiCustomMessageIdInt = 11; +const TUid KCbsUiCustomMessageId = { KCbsUiCustomMessageIdInt }; + // When message view is launched by other + // application its message id is 0, this + // just has to differ from the other + // applications message id. + +// When view is launched with this id it knows to set the focus to id, +// which is passed as parameter to DoActivateL. +const TUid KSetFocusToId = { 12 }; + +// activates view to its current id. +const TUid KSetFocusToCurrentId = { 13 }; + +// How many digits there are in topic number +const TInt KTopicNumberWidth = EMaxTopicNumberLength; + +const TInt KNumberOfTemporaryMessages = 3; + +// Error value used in Cbs ui. +const TInt KCbsErrValue = -1; + +// This kind of topic number cannot exists +const TInt KCbsInvalidTopicNumber = 22000; + +// max message title length +const TInt KMaxMessageTitleLength = 40; + + +// DATA TYPES +enum { EMinTopicNumber = 0, EMaxTopicNumber = 999 }; + +enum TCbsUiLanguageSelectionIndex + { + ECbsUiAll = 0, + ECbsUiSelected = 1, + ECbsUiOther = 2 + }; + +// for activating topic view with right state +struct TCbsUiTopicActivationPckg + { + // current topic number + TCbsTopicNumber iTopicNumber; + + // current message handle + TCbsMessageHandle iMessageHandle; + }; + +#endif // __CBS_UI_CONSTANTS_H + +// End of File