messagingappbase/smilengine/engine/inc/smila.h
changeset 0 72b543305e3a
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     1 /*
       
     2 * Copyright (c) 2003 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: smila  declaration
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef SMILA_H
       
    21 #define SMILA_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 #include "smilanchor.h"
       
    27 #include "smiltimecontainer.h"
       
    28 
       
    29 #include <smillength.h>
       
    30 #include <smiltime.h>
       
    31 
       
    32 #include <smilfocusinterface.h>
       
    33 // FORWARD DECLARATIONS
       
    34 class CGraphicsContext;
       
    35 
       
    36 // CLASS DECLARATION
       
    37 
       
    38 
       
    39 class CSmilA : public CSmilObject
       
    40     {
       
    41     public:  // Constructors and destructor
       
    42 
       
    43 		virtual const TDesC* ClassName() const { _LIT(KN,"CSmilA"); return &KN; }
       
    44 
       
    45 		/**
       
    46         * Destructor
       
    47         */
       
    48 		virtual ~CSmilA();
       
    49 
       
    50 		static CSmilA* NewL(CSmilPresentation* aPresentation);
       
    51 
       
    52     public: // New functions
       
    53 
       
    54 		virtual TBool IsA() const { return ETrue; }
       
    55 
       
    56 
       
    57 	protected:
       
    58 
       
    59 		/**
       
    60         * C++ default constructor.
       
    61         */
       
    62         CSmilA();	
       
    63 		void ConstructL(CSmilPresentation* aPresentation);
       
    64 
       
    65 		
       
    66 		TSmilTime ImplicitDuration() const;
       
    67 		
       
    68 	public:	
       
    69 		
       
    70 	};
       
    71 
       
    72 #endif      // ?INCLUDE_H   
       
    73             
       
    74 // End of File