equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: Wait note during MTP transfer |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_MPX_MTP_WAIT_DIALOG_H |
|
20 #define C_MPX_MTP_WAIT_DIALOG_H |
|
21 |
|
22 #include "mpxwaitnotedialog.h" |
|
23 |
|
24 /** |
|
25 * MTP wait note dialog |
|
26 * |
|
27 * Blocking dialog shown during an MTP transfer |
|
28 * |
|
29 * @lib mpxwaitnotedialog.lib |
|
30 * @since S60 v3.0 |
|
31 */ |
|
32 NONSHARABLE_CLASS( CMPXMtpWaitDialog ) : public CMPXWaitNoteDialog |
|
33 { |
|
34 |
|
35 public: |
|
36 |
|
37 static CMPXMtpWaitDialog* NewL( MMPXWaitNoteObserver* aObs ); |
|
38 |
|
39 virtual ~CMPXMtpWaitDialog(); |
|
40 |
|
41 protected: |
|
42 |
|
43 /** |
|
44 * From CMPXWaitNoteDialog |
|
45 * Initialize the note before executing |
|
46 * The inherited class should set CBA, text, icons etc here |
|
47 */ |
|
48 void PreNoteDisplayHandleL(); |
|
49 |
|
50 |
|
51 private: |
|
52 |
|
53 CMPXMtpWaitDialog( MMPXWaitNoteObserver* aObs ); |
|
54 |
|
55 void ConstructL(); |
|
56 |
|
57 private: // data |
|
58 |
|
59 }; |
|
60 |
|
61 #endif // C_MPX_MTP_WAIT_DIALOG_H |