equal
deleted
inserted
replaced
|
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 the License "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 * Dialog for setting the gateway. It's used temporarily. |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef CBrowserSETTINGSDIALOG_H |
|
22 #define CBrowserSETTINGSDIALOG_H |
|
23 |
|
24 // INCLUDES |
|
25 |
|
26 #include <AknForm.h> |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 /** |
|
31 * Dialog for setting the gateway's IP address |
|
32 */ |
|
33 class CBrowserSettingsDlg : public CAknDialog |
|
34 { |
|
35 public : // construction |
|
36 /** |
|
37 * Two-phased constructor. |
|
38 */ |
|
39 static CBrowserSettingsDlg* NewL(); |
|
40 |
|
41 protected : // construction |
|
42 /** |
|
43 * constructor, that may leave. |
|
44 */ |
|
45 void ConstructL(); |
|
46 |
|
47 protected : // from CEikDialog |
|
48 /** |
|
49 * Set the gateway's IP address, if the user pressed OK. |
|
50 * @param aButtonId The ID of the pressed button. |
|
51 * @return May the dialog exit? |
|
52 */ |
|
53 TBool OkToExitL( TInt aButtonId ) ; |
|
54 }; |
|
55 |
|
56 #endif |
|
57 |
|
58 // End of File |