notepad/notepad1/inc/NpdEditorLaf.h
author Simon Howkins <simonh@symbian.org>
Mon, 22 Nov 2010 16:01:09 +0000
branchRCL_3
changeset 93 d216ae5a8733
parent 0 f979ecb2b13e
permissions -rw-r--r--
Adjusted to avoid exports, etc, from a top-level bld.inf

/*
* Copyright (c) 2002 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:  Declaration of control for papaer lines of editor.
*
*/


#ifndef NPDEDITORLAF_H
#define NPDEDITORLAF_H

// INCLUDES
#include <coecntrl.h>
#include "NpdViewerLaf.h"

// FORWARD DECLARATIONS
class TResourceReader;

// CLASS DECLARATION
/**
* Control for paper lines of the editor.
* CNotepadEditorLaf is a control class for paper lines of the editor.
* Decoration graphics are supported by the parent class CNotepadViewerLaf.
*  
* @lib NpdLib.lib
* @see CNotepadEditorDialog, CNotepadViewerLaf
*/
class CNotepadEditorLaf : public CNotepadViewerLaf
    {
    public: // Constuctor and destructor

        /**
        * Constructor.
        *
        * @param aParent CNotepadEditorDialog.
        */
        CNotepadEditorLaf(CEikDialog* aParent);

        /**
        * Destructor.
        */
        virtual ~CNotepadEditorLaf();

    protected:  // Functions from base classes

        /**
        * From CNotepadViewerLaf.
        * Attach rectangles for this control's shape and
        * Layout if need.
        *
        * @param aRect for layout.
        * @param aRegion for SetShape.
        */
        void AddRectsAndLayout(const TRect& aRect, RRegion& aRegion);

        /**
        * From CCoeControl.
        * Construct this control from its resource.
        *
        * @param aReader resource reader already opened.
        */
        void ConstructFromResourceL(TResourceReader& aReader);

    private:  // Functions from base classes

        /**
        * From CCoeControl.
        * Draw.
        */
        void Draw(const TRect& aRect) const;

    private:  // Data

        RArray<TAknLayoutRect> iRects; // own
    };

#endif // NPDEDITORLAF_H

// End of File