equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: For updating the list box every time |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef SIP_UPDATED_PASSWORD_SET_ITEM_H |
|
20 #define SIP_UPDATED_PASSWORD_SET_ITEM_H |
|
21 |
|
22 // INCLUDES |
|
23 |
|
24 #include <aknsettingitemlist.h> |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * CSIPUpdatedPasswordSetItem class |
|
30 * @since 3.0 |
|
31 * Updates list box every time, behaves like a password setting item |
|
32 */ |
|
33 class CSIPUpdatedPasswordSetItem : public CAknPasswordSettingItem |
|
34 { |
|
35 public: |
|
36 |
|
37 /** |
|
38 * Constructor, passes the parameters to CAknPasswordSettingItem's |
|
39 * constructor |
|
40 */ |
|
41 CSIPUpdatedPasswordSetItem( |
|
42 TInt aIdentifier, |
|
43 enum TAknPasswordSettingItemMode aMode, |
|
44 TDes& aPassword ); |
|
45 |
|
46 /** |
|
47 * Destructor |
|
48 */ |
|
49 virtual ~CSIPUpdatedPasswordSetItem(); |
|
50 |
|
51 /** |
|
52 * Updates the list box always after displaying popup list |
|
53 */ |
|
54 void EditItemL( TBool aCalledFromMenu ); |
|
55 |
|
56 private: |
|
57 |
|
58 // Ref to the password setting item. |
|
59 TDes& iPassword; |
|
60 }; |
|
61 |
|
62 #endif // SIP_UPDATED_PASSWORD_SET_ITEM_H |
|
63 |
|
64 // End of File |