imageeditor/plugins/BubblePlugin/src/BubbleSelectionGrid.cpp
changeset 1 edfc90759b9f
equal deleted inserted replaced
0:57d4cdd99204 1:edfc90759b9f
       
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "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 * Ixonos Plc
       
    14 *
       
    15 * Description: 
       
    16 * Talk bubble grid implementation.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 //	INCLUDE
       
    22 #include "BubbleSelectionGrid.h"
       
    23 //=============================================================================
       
    24 CBubbleSelectionGrid::CBubbleSelectionGrid () : 
       
    25 CAknGrid()
       
    26 {
       
    27 
       
    28 }
       
    29 
       
    30 //=============================================================================
       
    31 CBubbleSelectionGrid::~CBubbleSelectionGrid ()
       
    32 {
       
    33 }
       
    34 
       
    35 //=============================================================================
       
    36 void CBubbleSelectionGrid::ConstructL (
       
    37     const CCoeControl *             aParent,  
       
    38     TInt                            aFlags)
       
    39 {
       
    40 
       
    41 	SetContainerWindowL(*aParent);
       
    42 	CAknGrid::ConstructL(aParent, aFlags);
       
    43     ActivateL();
       
    44 }
       
    45 
       
    46 //=============================================================================
       
    47 TSize CBubbleSelectionGrid::MinimumSize()
       
    48     {
       
    49 	return Rect().Size();		
       
    50 }
       
    51 
       
    52 
       
    53 // End of File