imageeditor/plugins/ClipartPlugin/inc/ClipartSelectionGrid.h
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 * Header for clipart selection grid.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef CLIPARTINSELECTIONGRID_H
       
    22 #define CLIPARTINSELECTIONGRID_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include <akngrid.h>
       
    26 
       
    27 
       
    28 //  FORWARD DECLARATIONS
       
    29 
       
    30 /*	CLASS: CClipartSelectionGrid
       
    31 *
       
    32 *   CClipartSelectionGrid represents a clipart selection grid control in
       
    33 *	Nokia Still Image Editor.
       
    34 */
       
    35 class CClipartSelectionGrid : public CAknGrid
       
    36 {
       
    37  
       
    38 public:
       
    39 	
       
    40 /** @name Methods:*/
       
    41 //@{
       
    42 	
       
    43 	/** Default constructor
       
    44 	*
       
    45 	*	@param -
       
    46 	*	@return -
       
    47 	*/
       
    48 	CClipartSelectionGrid ();
       
    49 
       
    50 	/** Destructor
       
    51 	*
       
    52 	*	@param -
       
    53 	*	@return -
       
    54 	*/
       
    55 	virtual ~CClipartSelectionGrid ();
       
    56 	
       
    57     /** Second phase constructor
       
    58 	*
       
    59 	*	@param aParent - parent control
       
    60 	*	@param aFlags - grid flags
       
    61 	*	@param aItems - icon item array
       
    62 	*	@return -
       
    63 	*/
       
    64 	virtual void ConstructL (
       
    65         const CCoeControl *             aParent,  
       
    66         TInt                            aFlags);
       
    67 
       
    68 
       
    69 //@}
       
    70 	
       
    71 protected:
       
    72 	
       
    73 /** @name Methods:*/
       
    74 //@{
       
    75 	
       
    76 	/*	MinimumSize
       
    77 	*
       
    78 	*   @see CCoeControl
       
    79 	*/
       
    80 	virtual TSize MinimumSize();
       
    81 	
       
    82 //@}
       
    83 	
       
    84 /** @name Members:*/
       
    85 //@{
       
    86 
       
    87 //@}
       
    88 	
       
    89 private:
       
    90 	
       
    91 /** @name Methods:*/
       
    92 //@{
       
    93 
       
    94 
       
    95 //@}
       
    96 	
       
    97 /** @name Members:*/
       
    98 //@{
       
    99 
       
   100 
       
   101 //@}
       
   102 
       
   103 };
       
   104 
       
   105 
       
   106 #endif // EOF ClipartSelectionGrid.h