// EIKFNLAB.H
//
// Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
//

#if !defined(__EIKFNLAB_H__)
#define __EIKFNLAB_H__

#if !defined(__EIKBCTRL_H__)
#include <eikbctrl.h>
#endif

class CEikLabel;

class CEikFileNameLabel : public CEikBorderedControl
	{
public:
	IMPORT_C CEikFileNameLabel();
	IMPORT_C ~CEikFileNameLabel();
	IMPORT_C void ConstructL();
	IMPORT_C void UpdateL();
private: // from CCoeControl
	IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
	IMPORT_C void ConstructFromResourceL(TResourceReader& aReader);
	IMPORT_C TSize MinimumSize();
	IMPORT_C TInt CountComponentControls() const;
	IMPORT_C CCoeControl* ComponentControl(TInt aIndex) const;
	IMPORT_C void SizeChangedL();
private:
	CEikLabel* iLabel;
	};

#endif