mpxplugins/viewplugins/views/upnpplaybackdialog/inc/mpxupnpplaybackdialogcustomcontrolcontainer.h
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Music Player UPnP Playback dialog declaration
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MPXUPNPPLAYBACKDIALOGCUSTOMCONTROLCONTAINER_H
       
    20 #define MPXUPNPPLAYBACKDIALOGCUSTOMCONTROLCONTAINER_H
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include <coecntrl.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 class CMPXUPnPPlaybackDialogCustomControl;
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31  *  The container for the custom control in UPnP Playback Dialog
       
    32  */
       
    33 NONSHARABLE_CLASS(CMPXUPnPPlaybackDialogCustomControlContainer) : public CCoeControl 
       
    34     {
       
    35 public:  // Constructors and destructor
       
    36     
       
    37     /**
       
    38      * Destructor.
       
    39      */
       
    40     ~CMPXUPnPPlaybackDialogCustomControlContainer(); 
       
    41 
       
    42 public: // New functions
       
    43     
       
    44     /**
       
    45      * Draw function removes flicker from CEikDialog's Draw()..
       
    46      * @param TRect The container's extent
       
    47      */
       
    48     void Draw( const TRect & ) const;
       
    49     
       
    50 public: // from base classes
       
    51     
       
    52     /**
       
    53      * From CoeControl.
       
    54      * Handles a change to the control's resources.
       
    55      *
       
    56      * @param aType A message UID value.
       
    57      */
       
    58     void HandleResourceChange( TInt aType );     
       
    59 
       
    60 public:     // Data
       
    61 
       
    62     CMPXUPnPPlaybackDialogCustomControl* iDialogCustomControl; // Custom Control
       
    63     
       
    64     };
       
    65 
       
    66 #endif      // MPXUPNPPLAYBACKDIALOGCUSTOMCONTROLCONTAINER_H 
       
    67             
       
    68 // End of File