2 * Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Observer interface for file selection.
19 #ifndef MAKNFILESELECTIONOBSERVER_H
20 #define MAKNFILESELECTIONOBSERVER_H
25 // FORWARD DECLARATIONS
30 * Observer class that can be set to observe if selected item
31 * e.g. has correct size or date before letting dialog exit.
33 * @lib CommonDialogs.lib
36 class MAknFileSelectionObserver
38 public: // Constructors and destructor
41 * A virtual destructor to ensure that correct destructor gets called.
42 * Must have an empty implementation.
44 virtual ~MAknFileSelectionObserver() { };
46 public: // New functions
49 * Get's called when user selects an file.
50 * @param aDriveAndPath Drive and full path of the file.
51 * @param aEntry An entry containing all information of selected item.
52 * @return Returns ETrue if it is ok to exit from dialog.
54 virtual TBool OkToExitL( const TDesC& aDriveAndPath, const TEntry& aEntry ) = 0;
57 #endif // MAKNFILESELECTIONOBSERVER_H