tvout/tvoutwrapper/src/glxtvoutwrapper.cpp
changeset 69 45459746d5e8
parent 52 a3a4c0de738e
equal deleted inserted replaced
65:ccee5c4b0de4 69:45459746d5e8
    41 
    41 
    42 // -----------------------------------------------------------------------------
    42 // -----------------------------------------------------------------------------
    43 // setModel 
    43 // setModel 
    44 // and Create the private instance to pass the model
    44 // and Create the private instance to pass the model
    45 // -----------------------------------------------------------------------------
    45 // -----------------------------------------------------------------------------
    46 void GlxTvOutWrapper::setModel(QAbstractItemModel* aModel,QSize aScreenSize,bool aEfectsOn)
    46 void GlxTvOutWrapper::setModel(QAbstractItemModel* aModel,QSize aScreenSize)
    47     {
    47     {
    48     if (!mTvOutWrapperPrivate)
    48     if (!mTvOutWrapperPrivate)
    49         {
    49         {
    50         mTvOutWrapperPrivate = GlxTvOutWrapperPrivate::Instance(this,aModel,aScreenSize,aEfectsOn);
    50         mTvOutWrapperPrivate = GlxTvOutWrapperPrivate::Instance(this,aModel,aScreenSize);
    51         }
    51         }
    52     else
    52     else
    53         {
    53         {
    54         return;
    54         return;
    55         }
    55         }
   113     if(mTvOutWrapperPrivate){
   113     if(mTvOutWrapperPrivate){
   114         mTvOutWrapperPrivate->DeactivateZoom();
   114         mTvOutWrapperPrivate->DeactivateZoom();
   115         }
   115         }
   116     }
   116     }
   117 
   117 
   118 // -----------------------------------------------------------------------------
       
   119 // deactivateZoom 
       
   120 // -----------------------------------------------------------------------------
       
   121 void GlxTvOutWrapper::fadeSurface(bool aFadeInOut)
       
   122     {
       
   123     if(mTvOutWrapperPrivate){
       
   124         mTvOutWrapperPrivate->FadeSurface(aFadeInOut);
       
   125         }
       
   126     }
       
   127 
       
   128 // End of file
   118 // End of file