ui/views/effectengine/effectplugin/inc/glxforwardtransitionplugin.h
changeset 33 1ee2af37811f
parent 23 74c9f037fd5d
equal deleted inserted replaced
29:2c833fc9e98f 33:1ee2af37811f
    25 {
    25 {
    26 public :
    26 public :
    27     GlxForwardTransitionPlugin();
    27     GlxForwardTransitionPlugin();
    28     ~GlxForwardTransitionPlugin();
    28     ~GlxForwardTransitionPlugin();
    29     QList <QString > getEffectFileList() { return mEffectFileList; }
    29     QList <QString > getEffectFileList() { return mEffectFileList; }
       
    30     
       
    31     /*
       
    32      * setup the item postion and set the mItem value
       
    33      */
       
    34         void setUpItems( QList< QGraphicsItem * > &  items );
       
    35     /*
       
    36      * second animation will be run later
       
    37      */    
       
    38     bool isAnimationLater(int index) ;
       
    39     
       
    40     QGraphicsItem * animationItem() 
       
    41     { 
       
    42         mItem->show();
       
    43         return mItem ; 
       
    44     }
    30 	
    45 	
    31 private :
    46 private :
    32     QList <QString > mEffectFileList;
    47     QList <QString > mEffectFileList;
       
    48     QGraphicsItem *mItem;
    33 };
    49 };
    34 
    50 
    35 #endif /*GLXFORWARDTRANSITIONPLUGIN_H*/
    51 #endif /*GLXFORWARDTRANSITIONPLUGIN_H*/
    36 
    52