windowing/windowserver/nga/CLIENT/MWSCLI.CPP
branchRCL_3
changeset 4 15986eb6c500
parent 0 5d03bc08d59c
child 19 bbf46f59e123
equal deleted inserted replaced
3:ac96196b945c 4:15986eb6c500
   140 
   140 
   141 void MWsClientClass::DestroyWindowSizeCacheEntry()
   141 void MWsClientClass::DestroyWindowSizeCacheEntry()
   142     {
   142     {
   143     iBuffer->DestroyWindowSizeCacheEntry(iWsHandle);
   143     iBuffer->DestroyWindowSizeCacheEntry(iWsHandle);
   144     }
   144     }
       
   145 
       
   146 #ifdef SYMBIAN_GRAPHICS_FIXNATIVEORIENTATION
       
   147 void MWsClientClass::EnableWindowNativeSizeCacheL()
       
   148     {
       
   149     return iBuffer->EnableWindowNativeSizeCacheL();
       
   150     }
       
   151 
       
   152 TBool MWsClientClass::WindowNativeSizeCacheEnabled() const
       
   153     {
       
   154     return iBuffer->WindowNativeSizeCacheEnabled();
       
   155     }
       
   156 
       
   157 TInt MWsClientClass::SetWindowNativeSize(const TSize& aNativeSize) const
       
   158     {
       
   159     return iBuffer->SetWindowNativeSize(iWsHandle,aNativeSize);
       
   160     }
       
   161 
       
   162 TInt MWsClientClass::WindowNativeSize(TSize& aSize) const
       
   163     {
       
   164     return iBuffer->WindowNativeSize(iWsHandle, aSize);
       
   165     }
       
   166 
       
   167 void MWsClientClass::DestroyWindowNativeSizeCacheEntry()
       
   168     {
       
   169     iBuffer->DestroyWindowNativeSizeCacheEntry(iWsHandle);
       
   170     }
       
   171 #endif // SYMBIAN_GRAPHICS_FIXNATIVEORIENTATION
       
   172