os/graphics/openvg/openvgrefimplementation/sfopenvg/test/inc/tigerAppUi.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/openvg/openvgrefimplementation/sfopenvg/test/inc/tigerAppUi.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,85 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Symbian Foundation Ltd
     1.6 +* This component and the accompanying materials are made available
     1.7 +* under the terms of the License "Eclipse Public License v1.0"
     1.8 +* which accompanies this distribution, and is available
     1.9 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +*
    1.11 +* Initial Contributors:
    1.12 +* Symbian Foundation Ltd - initial contribution.
    1.13 +* 
    1.14 +* Contributors:
    1.15 +*
    1.16 +* Description:
    1.17 +* Tiger app UI clas declaration
    1.18 +*/
    1.19 +
    1.20 +#ifndef TIGERAPPUI_H
    1.21 +#define TIGERAPPUI_H
    1.22 +
    1.23 +// INCLUDES
    1.24 +#include <eikapp.h>
    1.25 +#include <eikdoc.h>
    1.26 +#include <e32std.h>
    1.27 +#include <coeccntx.h>
    1.28 +#include <aknappui.h>
    1.29 +
    1.30 +// FORWARD DECLARATIONS
    1.31 +class CTigerContainer;
    1.32 +
    1.33 +// CLASS DECLARATION
    1.34 +
    1.35 +/**
    1.36 + * Application UI class that contains the CTigerContainer
    1.37 + * (as required by the Symbian UI application architecture).
    1.38 + */
    1.39 +class CTigerAppUi : public CAknAppUi
    1.40 +    {
    1.41 +    public: // Constructors and destructor
    1.42 +
    1.43 +        /**
    1.44 +         * Second phase constructor. Creates the CTigerContainer
    1.45 +         * and adds it to the control stack.
    1.46 +         */
    1.47 +        void ConstructL();
    1.48 +
    1.49 +        /**
    1.50 +         * Destructor. Removes CTigerContainer from the control
    1.51 +         * stack and destroys it.
    1.52 +         */
    1.53 +        virtual ~CTigerAppUi();
    1.54 +
    1.55 +    private: // Functions from base classes
    1.56 +
    1.57 +        /**
    1.58 +         * This method is called by the EIKON framework just before it displays
    1.59 +         * a menu pane. Does nothing in this implemenation.
    1.60 +         */
    1.61 +        void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane);
    1.62 +
    1.63 +        /**
    1.64 +         * CEikAppUi method that is used to handle user commands.
    1.65 +         * Handles menu commands and application exit request.
    1.66 +         * @param aCommand Command to be handled.
    1.67 +         */
    1.68 +        void HandleCommandL(TInt aCommand);
    1.69 +
    1.70 +        /**
    1.71 +         * CEikAppUi method that is used to handle key events.
    1.72 +         * Does nothing in this implemenation.
    1.73 +         * @param aKeyEvent Event to handled (ignored by this implementation).
    1.74 +         * @param aType Type of the key event (ignored by this implementation).
    1.75 +         * @return Response code. Always EKeyWasNotConsumed in this implementation.
    1.76 +         */
    1.77 +        virtual TKeyResponse HandleKeyEventL(
    1.78 +            const TKeyEvent& aKeyEvent,TEventCode aType);
    1.79 +
    1.80 +    private: //Data
    1.81 +
    1.82 +        /** GUI container that resides in this application UI. */
    1.83 +        CTigerContainer* iAppContainer;
    1.84 +    };
    1.85 +
    1.86 +#endif
    1.87 +
    1.88 +// End of File