diff -r d189ee25cf9d -r 3533d4323edc meetingrequest/mrgui/mrfieldbuilderpluginextension/inc/cesmrtrackstatus.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/meetingrequest/mrgui/mrfieldbuilderpluginextension/inc/cesmrtrackstatus.h Wed Sep 01 12:28:57 2010 +0100 @@ -0,0 +1,120 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: field that holds the status of the MR participant + * +*/ + + +#ifndef CESMRTRACKSTATUS_H_ +#define CESMRTRACKSTATUS_H_ + +#include +#include +#include +#include + +#include "cesmrfield.h" +#include "resmrstatic.h" + + +// Forward declarations +class CCalAttendee; +class CMRImage; + +/** + * This class shows the status of the attendee of a meeting request + * a meeting request can have many of these in several modes + */ +NONSHARABLE_CLASS( CESMRTrackStatus ) : public CESMRField + { +public: + /** + * Constructor for the track status field + * @return New mr partcipant tracking status holder field + */ + static CESMRTrackStatus* NewL(); + + /** + * C++ Destructor. + */ + ~CESMRTrackStatus(); + +public: // Interface + /* + * Draws right-arrow icon. + * @param aFocused selects to hide or display icon + */ + void SetActionMenuIconL( TBool aFocused ); + +public: // From CESMRField + void InternalizeL( MESMRCalEntry& aEntry ); + void SetOutlineFocusL( TBool aFocus ); + +public: // From CoeControl + TKeyResponse OfferKeyEventL( const TKeyEvent& aEvent, TEventCode aType ); + TInt CountComponentControls() const; + CCoeControl* ComponentControl( TInt aInd ) const; + void SizeChanged(); + +private: // Implementation + CESMRTrackStatus(); + void ConstructL(); + HBufC* ClipTextLC( const TDesC& aText, + const CFont& aFont, + TInt aWidth ); +private: + /** + * The address of the attendee. Own + */ + HBufC* iAddress; + + /** + * The default address of the attendee. Own + */ + HBufC* iDefaultAddress; + + /** + * The Common name of the attendee. Own + */ + HBufC* iCommonName; + + /** + * Static TLS stored variables. + */ + RESMRStatic iESMRStatic; + + /** + * Ref: Reference to menu handler + */ + CESMRContactMenuHandler* iMenuHandler; + + /* + * Action Menu icon + */ + CFbsBitmap* iActionMenuIcon; + + /* + * Action Menu icon mask. + */ + CFbsBitmap* iActionMenuIconMask; + + /** + * Owned. checkbox_mark/checkbox_unmark + */ + CMRImage* iIcon; + }; + +#endif /*CESMRTRACKSTATUS_H_*/ + +// End of file