1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /*
- * Copyright (c) 2010-2011 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: Base class for containers.
- *
- */
- #ifndef CAMERALITYBASECONTAINER_H_
- #define CAMERALITYBASECONTAINER_H_
- // INCLUDES
- #include <coecntrl.h>
- // FORWARD DECLARATIONS
- class CCameralityAppUi;
- // CLASS DECLARATION
- class CCameralityBaseContainer : public CCoeControl
- {
- public: // Destructor
- virtual ~CCameralityBaseContainer();
- public: // New functions
- virtual void Show(const TRect& extent);
- virtual void Hide();
- virtual void Raise();
- private: // Functions from base classes
- void Draw(const TRect& aRect) const;
- protected: // Private constructors
- CCameralityBaseContainer();
- void DoConstructL();
- protected: //data
- CCameralityAppUi* iAppUi; // Not own
- };
- #endif /* CAMERALITYBASECONTAINER_H_ */
|