|
1 /* |
|
2 * Copyright (c) 2002 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: |
|
15 * Help classes to handle CDMA settings settings. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef __SMSETDLGCDMA_H__ |
|
22 #define __SMSETDLGCDMA_H__ |
|
23 |
|
24 // uikon includes |
|
25 #if !defined(__EIKDIALG_H__) |
|
26 #include <eikdialg.h> // CEikDialog |
|
27 #endif // __EIKDIALG_H__ |
|
28 |
|
29 #if !defined(__E32DEF_H__) |
|
30 #include <e32def.h> |
|
31 #endif // __E32DEF_H__ |
|
32 |
|
33 // INCLUDES |
|
34 #include <MuiuSettingsArray.h> // CMuiuSettingsArray |
|
35 #include "smsu.h" // CSmsMtmUi |
|
36 |
|
37 // FORWARD DECLARATIONS |
|
38 class CEikColumnListBox; |
|
39 class CSmsUiSettings; |
|
40 |
|
41 // CLASS DEFINITIONS |
|
42 |
|
43 /** |
|
44 * CSmumSettingsArray |
|
45 * Inherited from CMuiuSettingsArray |
|
46 */ |
|
47 NONSHARABLE_CLASS(CSmumSettingsArray) : public CMuiuSettingsArray |
|
48 { |
|
49 public: // Constructors and destructor |
|
50 |
|
51 // Constructor |
|
52 static CSmumSettingsArray* NewL( TInt aResourceId ); |
|
53 |
|
54 /** |
|
55 * Destructor. |
|
56 */ |
|
57 ~CSmumSettingsArray(); |
|
58 |
|
59 public: // New functions |
|
60 |
|
61 void SetCallBackNumberL( const TDesC& aCallBackNumber); |
|
62 |
|
63 TPtrC CallBackNumber() const; |
|
64 |
|
65 private: // functions from base classes |
|
66 |
|
67 /** |
|
68 * From MDesCArray |
|
69 */ |
|
70 TPtrC MdcaPoint( TInt aIndex ) const; |
|
71 |
|
72 private: |
|
73 |
|
74 /** |
|
75 * By default Symbian OS constructor is private. |
|
76 */ |
|
77 CSmumSettingsArray(); |
|
78 |
|
79 /** |
|
80 * By default Symbian OS constructor is private. |
|
81 */ |
|
82 void ConstructL( TInt aResourceId ); |
|
83 |
|
84 private: // Data |
|
85 HBufC* iCallBackNumberString; |
|
86 TInt iTypeOfSettingsId; |
|
87 }; |
|
88 |
|
89 #endif // __SMSETDLGCDMA_H__ |
|
90 |
|
91 // End of File |