60
|
1 |
/*
|
|
2 |
* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: Publish & Subscribe key identifiers for the S60 messaging UI
|
|
15 |
* components
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
#ifndef MESSAGINGINTERNALPSKEYS_H
|
|
22 |
#define MESSAGINGINTERNALPSKEYS_H
|
|
23 |
|
|
24 |
const TUid KPSUidMuiu = {0x101F87F1};
|
|
25 |
|
|
26 |
//
|
|
27 |
// The number of currently open message editors. The field is set as zero when
|
|
28 |
// the user changes the message store between the phone and MMC. The message
|
|
29 |
// editors should observe this and exit immediately.
|
|
30 |
//
|
|
31 |
const TUint32 KMuiuSysOpenMsgEditors = 0x00000001;
|
|
32 |
|
|
33 |
// Message viewer fast open previous/next message. Message id viewer had
|
|
34 |
// open when it exited. MCE uses this to focus/open correct message after
|
|
35 |
// viewer exit.
|
|
36 |
const TUint32 KMuiuKeyCurrentMsg = 0x00000002;
|
|
37 |
|
|
38 |
// The New PSK introduced from 5.0
|
|
39 |
// Tells whether Templates dialog is opened in the MCE main view
|
|
40 |
const TUint32 KMceTemplatesDialog = 0x00000003;
|
|
41 |
|
|
42 |
// The New PSK introduced from 5.0
|
|
43 |
// Tells whether Msg Sent as settings to be removed from Text settings view
|
|
44 |
const TUint32 KMuiuRemoveMsgSentSettings = 0x00000004;
|
|
45 |
|
|
46 |
// The New PSK introduced from 9.2
|
|
47 |
// Tells whether If one row list is populated or not, 1- list is populated, 0 - list population is in progress
|
|
48 |
const TUint32 KMuiuOneRowListPopulated = 0x00000005;
|
|
49 |
|
|
50 |
// Message viewer fast open previous/next message. Message id of next\previous message
|
|
51 |
// needs to be opened from mce.
|
|
52 |
const TUint32 KMuiuKeyNextMsg = 0x00000006;
|
|
53 |
|
|
54 |
// The New PSK introduced from 5.0
|
|
55 |
|
|
56 |
const TUid KPSUidMsgEditor = {0x101F87FF};
|
|
57 |
|
|
58 |
//
|
|
59 |
// The number of currently standalone open message editors. The field is set to One by SendUI when we launch
|
|
60 |
// a new standalone editor. When we try to launch another Standalone message editor when already one is existing,
|
|
61 |
// The message editors should observe this and clsoe the previously launched standalone message editor. .
|
|
62 |
//
|
|
63 |
|
|
64 |
const TUint32 KMuiuStandAloneOpenMsgEditors = 0x00000001;
|
|
65 |
#endif // MESSAGINGINTERNALPSKEYS_H
|