X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fwindow-system%2Fx11%2Fwindow-base-x.cpp;h=da92eff69d5a97a49eeae84d92365faa486011b3;hb=738fd571c706537f8897163684fcb9d3fd9d535e;hp=be48605a53ce6faab6e4cc5f675a4584e8f362d4;hpb=f6f8684d65356ccae36927b3f9d4f8db34e49161;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/internal/window-system/x11/window-base-x.cpp b/dali/internal/window-system/x11/window-base-x.cpp index be48605..da92eff 100644 --- a/dali/internal/window-system/x11/window-base-x.cpp +++ b/dali/internal/window-system/x11/window-base-x.cpp @@ -658,6 +658,10 @@ void WindowBaseX::MoveResize(PositionSize positionSize) WindowSystem::GetImplementation().MoveResize(mWindow, positionSize.x, positionSize.y, positionSize.width, positionSize.height); } +void WindowBaseX::SetLayout(unsigned int numCols, unsigned int numRows, unsigned int column, unsigned int row, unsigned int colSpan, unsigned int rowSpan) +{ +} + void WindowBaseX::SetClass(const std::string& name, const std::string& className) { WindowSystem::GetImplementation().SetClass(mWindow, name, className); @@ -951,6 +955,66 @@ void WindowBaseX::ExcludeInputRegion(const Rect& inputRegion) { } +bool WindowBaseX::PointerConstraintsLock() +{ + return false; +} + +bool WindowBaseX::PointerConstraintsUnlock() +{ + return false; +} + +void WindowBaseX::LockedPointerRegionSet(int32_t x, int32_t y, int32_t width, int32_t height) +{ +} + +void WindowBaseX::LockedPointerCursorPositionHintSet(int32_t x, int32_t y) +{ +} + +bool WindowBaseX::PointerWarp(int32_t x, int32_t y) +{ + return false; +} + +void WindowBaseX::CursorVisibleSet(bool visible) +{ +} + +bool WindowBaseX::KeyboardGrab(Device::Subclass::Type deviceSubclass) +{ + return false; +} + +bool WindowBaseX::KeyboardUnGrab() +{ + return false; +} + +void WindowBaseX::SetFullScreen(bool fullscreen) +{ + return; +} + +bool WindowBaseX::GetFullScreen() +{ + return false; +} + +void WindowBaseX::SetFrontBufferRendering(bool enable) +{ +} + +bool WindowBaseX::GetFrontBufferRendering() +{ + return false; +} + +void WindowBaseX::SetEglWindowFrontBufferMode(bool enable) +{ +} + } // namespace Adaptor } // namespace Internal