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: SIP Settings view controller |
|
15 * |
|
16 */ |
|
17 #ifndef SIP_SETT_INTEGERED_ITITEM_H |
|
18 #define SIP_SETT_INTEGERED_ITITEM_H |
|
19 |
|
20 #include <aknsettingitemlist.h> |
|
21 |
|
22 // CLASS DECLARATION |
|
23 |
|
24 class CSipSettIntegerEditItem : public CAknTextSettingItem |
|
25 { |
|
26 public: |
|
27 /** |
|
28 * Constructor, passes the parameters to CSipSettIntegerEditItem's |
|
29 * constructor |
|
30 */ |
|
31 CSipSettIntegerEditItem( |
|
32 TInt aIdentifier, TDes & aInteger); |
|
33 |
|
34 /** |
|
35 * Destructor |
|
36 */ |
|
37 virtual ~CSipSettIntegerEditItem(); |
|
38 |
|
39 /** |
|
40 * Updates the list box always after displaying popup list |
|
41 */ |
|
42 void EditItemL( TBool aCalledFromMenu ); |
|
43 public: |
|
44 /** |
|
45 * Store the TInt value that inputted by end user |
|
46 */ |
|
47 TInt iValue; |
|
48 |
|
49 }; |
|
50 #endif /* SIPSETTINTEGEREDITITEM_H_ */ |