cameralitybasecontainer.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright (c) 2010-2011 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: Base class for containers.
  15. *
  16. */
  17. #ifndef CAMERALITYBASECONTAINER_H_
  18. #define CAMERALITYBASECONTAINER_H_
  19. // INCLUDES
  20. #include <coecntrl.h>
  21. // FORWARD DECLARATIONS
  22. class CCameralityAppUi;
  23. // CLASS DECLARATION
  24. class CCameralityBaseContainer : public CCoeControl
  25. {
  26. public: // Destructor
  27. virtual ~CCameralityBaseContainer();
  28. public: // New functions
  29. virtual void Show(const TRect& extent);
  30. virtual void Hide();
  31. virtual void Raise();
  32. private: // Functions from base classes
  33. void Draw(const TRect& aRect) const;
  34. protected: // Private constructors
  35. CCameralityBaseContainer();
  36. void DoConstructL();
  37. protected: //data
  38. CCameralityAppUi* iAppUi; // Not own
  39. };
  40. #endif /* CAMERALITYBASECONTAINER_H_ */