// EIKALIGN.H
//
// Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
//

#if !defined(__EIKALIGN_H__)
#define __EIKALIGN_H__

#if !defined(__COECNTRL_H__)
#include <coecntrl.h>
#endif

#if !defined(__COEALIGN_H__)
#include <coealign.h>
#endif

#if !defined(__EIKDUTIL_H__)
#include <eikdutil.h>
#endif

class CEikAlignedControl : public CCoeControl
	{
public:
	IMPORT_C CEikAlignedControl();
	IMPORT_C ~CEikAlignedControl();
	IMPORT_C void SetAllMarginsTo(TInt aValue);
	IMPORT_C void SetAlignment(TCoeAlignmentValue aAlign);
public:
	TMargins8 iMargin;
	TCoeAlignment iAlignment;
	};

#endif
