Remove Deprecated APIs
[platform/core/uifw/dali-adaptor.git] / adaptors / x11 / window-impl-x.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include "window-impl.h"
20
21 // EXTERNAL HEADERS
22 #include <Ecore.h>
23 #include <Ecore_X.h>
24
25 #include <dali/integration-api/core.h>
26 #include <dali/integration-api/system-overlay.h>
27 #include <dali/public-api/render-tasks/render-task.h>
28 #include <dali/public-api/render-tasks/render-task-list.h>
29 #include <orientation.h>
30
31 // INTERNAL HEADERS
32 #include <window-render-surface.h>
33 #include <drag-and-drop-detector-impl.h>
34 #include <indicator-impl.h>
35 #include <window-visibility-observer.h>
36 #include <orientation-impl.h>
37
38 namespace
39 {
40 const float INDICATOR_ANIMATION_DURATION( 0.18f ); // 180 milli seconds
41 const float INDICATOR_SHOW_Y_POSITION( 0.0f );
42 const float INDICATOR_HIDE_Y_POSITION( -52.0f );
43 }
44
45 namespace Dali
46 {
47 namespace Internal
48 {
49 namespace Adaptor
50 {
51 #if defined(DEBUG_ENABLED)
52 Debug::Filter* gWindowLogFilter = Debug::Filter::New(Debug::Concise, false, "LOG_WINDOW");
53 #endif
54
55 /**
56  * TODO: Abstract Window class out and move this into a window implementation for Ecore
57  */
58 struct Window::EventHandler
59 {
60   /**
61    * Constructor
62    * @param[in]  window  A pointer to the window class.
63    */
64   EventHandler( Window* window )
65   : mWindow( window ),
66     mWindowPropertyHandler( ecore_event_handler_add( ECORE_X_EVENT_WINDOW_PROPERTY,  EcoreEventWindowPropertyChanged, this ) ),
67     mClientMessagehandler( ecore_event_handler_add( ECORE_X_EVENT_CLIENT_MESSAGE,  EcoreEventClientMessage, this ) ),
68     mEcoreWindow( 0 )
69   {
70     // store ecore window handle
71     ECore::WindowRenderSurface* x11Window( dynamic_cast< ECore::WindowRenderSurface * >( mWindow->mSurface ) );
72     if( x11Window )
73     {
74       mEcoreWindow = x11Window->GetXWindow();
75     }
76     DALI_ASSERT_ALWAYS( mEcoreWindow != 0 && "There is no ecore x window");
77
78 #ifndef DALI_PROFILE_UBUNTU
79     // set property on window to get deiconify approve client message
80     unsigned int tmp = 1;
81     ecore_x_window_prop_card32_set(mEcoreWindow,
82                              ECORE_X_ATOM_E_DEICONIFY_APPROVE,
83                              &tmp, 1);
84 #endif // DALI_PROFILE_UBUNTU
85   }
86
87   /**
88    * Destructor
89    */
90   ~EventHandler()
91   {
92     if ( mWindowPropertyHandler )
93     {
94       ecore_event_handler_del( mWindowPropertyHandler );
95     }
96     if ( mClientMessagehandler )
97     {
98       ecore_event_handler_del( mClientMessagehandler );
99     }
100   }
101
102   // Static methods
103
104   /// Called when the window properties are changed.
105   static Eina_Bool EcoreEventWindowPropertyChanged( void* data, int type, void* event )
106   {
107     Ecore_X_Event_Window_Property* propertyChangedEvent( (Ecore_X_Event_Window_Property*)event );
108     EventHandler* handler( (EventHandler*)data );
109     Eina_Bool handled( ECORE_CALLBACK_PASS_ON );
110
111     if ( handler && handler->mWindow )
112     {
113       WindowVisibilityObserver* observer( handler->mWindow->mAdaptor );
114       if ( observer && ( propertyChangedEvent->win == handler->mEcoreWindow ) )
115       {
116         Ecore_X_Window_State_Hint state( ecore_x_icccm_state_get( propertyChangedEvent->win ) );
117
118         switch ( state )
119         {
120           case ECORE_X_WINDOW_STATE_HINT_WITHDRAWN:
121           {
122             // Window was hidden.
123             observer->OnWindowHidden();
124             DALI_LOG_INFO( gWindowLogFilter, Debug::General, "Window (%d) Withdrawn\n", handler->mEcoreWindow );
125             handled = ECORE_CALLBACK_DONE;
126           }
127           break;
128
129           case ECORE_X_WINDOW_STATE_HINT_ICONIC:
130           {
131             // Window was iconified (minimised).
132             observer->OnWindowHidden();
133             DALI_LOG_INFO( gWindowLogFilter, Debug::General, "Window (%d) Iconfied\n", handler->mEcoreWindow );
134             handled = ECORE_CALLBACK_DONE;
135           }
136           break;
137
138           case ECORE_X_WINDOW_STATE_HINT_NORMAL:
139           {
140             // Window was shown.
141             observer->OnWindowShown();
142             DALI_LOG_INFO( gWindowLogFilter, Debug::General, "Window (%d) Shown\n", handler->mEcoreWindow );
143             handled = ECORE_CALLBACK_DONE;
144           }
145           break;
146
147           default:
148             // Ignore
149             break;
150         }
151       }
152     }
153
154     return handled;
155   }
156
157   /// Called when the window properties are changed.
158   static Eina_Bool EcoreEventClientMessage( void* data, int type, void* event )
159   {
160     Eina_Bool handled( ECORE_CALLBACK_PASS_ON );
161 #ifndef DALI_PROFILE_UBUNTU
162     Ecore_X_Event_Client_Message* clientMessageEvent( (Ecore_X_Event_Client_Message*)event );
163     EventHandler* handler( (EventHandler*)data );
164
165     if (clientMessageEvent->message_type == ECORE_X_ATOM_E_DEICONIFY_APPROVE)
166     {
167       ECore::WindowRenderSurface* x11Window( dynamic_cast< ECore::WindowRenderSurface * >( handler->mWindow->mSurface ) );
168       WindowVisibilityObserver* observer( handler->mWindow->mAdaptor );
169
170       if ( observer && ( (unsigned int)clientMessageEvent->data.l[0] == handler->mEcoreWindow ) )
171       {
172         if (clientMessageEvent->data.l[1] == 0) //wm sends request message using value 0
173         {
174           observer->OnWindowShown();
175
176           // request to approve the deiconify. render-surface should send proper event after real rendering
177           if(x11Window)
178           {
179             x11Window->RequestToApproveDeiconify();
180           }
181
182           handled = ECORE_CALLBACK_DONE;
183         }
184       }
185     }
186 #endif // DALI_PROFILE_UBUNTU
187
188     return handled;
189   }
190
191   // Data
192   Window* mWindow;
193   Ecore_Event_Handler* mWindowPropertyHandler;
194   Ecore_Event_Handler* mClientMessagehandler;
195   Ecore_X_Window mEcoreWindow;
196 };
197
198
199 Window* Window::New(const PositionSize& posSize, const std::string& name, bool isTransparent)
200 {
201   Window* window = new Window();
202   window->mIsTransparent = isTransparent;
203   window->Initialize(posSize, name);
204   return window;
205 }
206
207 void Window::SetAdaptor(Dali::Adaptor& adaptor)
208 {
209   DALI_ASSERT_ALWAYS( !mStarted && "Adaptor already started" );
210   mStarted = true;
211
212   // Only create one overlay per window
213   Internal::Adaptor::Adaptor& adaptorImpl = Internal::Adaptor::Adaptor::GetImplementation(adaptor);
214   Integration::Core& core = adaptorImpl.GetCore();
215   mOverlay = &core.GetSystemOverlay();
216
217   Dali::RenderTaskList taskList = mOverlay->GetOverlayRenderTasks();
218   taskList.CreateTask();
219
220   mAdaptor = &adaptorImpl;
221   mAdaptor->AddObserver( *this );
222
223   // Can only create the detector when we know the Core has been instantiated.
224   mDragAndDropDetector = DragAndDropDetector::New();
225   mAdaptor->SetDragAndDropDetector( &GetImplementation( mDragAndDropDetector ) );
226
227   if( mOrientation )
228   {
229     mOrientation->SetAdaptor(adaptor);
230   }
231
232   if( mIndicator != NULL )
233   {
234     mIndicator->SetAdaptor(mAdaptor);
235   }
236 }
237
238 RenderSurface* Window::GetSurface()
239 {
240   return mSurface;
241 }
242
243 void Window::SetIndicatorStyle( Dali::Window::IndicatorStyle style )
244 {
245   mIndicatorStyle = style;
246 }
247
248 void Window::ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode )
249 {
250   DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "visible : %d\n", visibleMode );
251   DALI_ASSERT_DEBUG(mOverlay);
252
253   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
254   DALI_ASSERT_DEBUG(x11Window);
255   Ecore_X_Window xWinId = x11Window->GetXWindow();
256
257   mIndicatorVisible = visibleMode;
258
259   if ( mIndicatorVisible == Dali::Window::VISIBLE )
260   {
261     // when the indicator is visible, set proper mode for indicator server according to bg mode
262     if ( mIndicatorOpacityMode == Dali::Window::OPAQUE )
263     {
264       ecore_x_e_illume_indicator_opacity_set(xWinId, ECORE_X_ILLUME_INDICATOR_OPAQUE);
265     }
266     else if ( mIndicatorOpacityMode == Dali::Window::TRANSLUCENT )
267     {
268       ecore_x_e_illume_indicator_opacity_set(xWinId, ECORE_X_ILLUME_INDICATOR_TRANSLUCENT);
269     }
270 #if defined(DALI_PROFILE_MOBILE)
271     else if ( mIndicatorOpacityMode == Dali::Window::TRANSPARENT )
272     {
273       ecore_x_e_illume_indicator_opacity_set(xWinId, ECORE_X_ILLUME_INDICATOR_BG_TRANSPARENT);
274     }
275 #endif
276   }
277   else
278   {
279     // when the indicator is not visible, set TRANSPARENT mode for indicator server
280     ecore_x_e_illume_indicator_opacity_set(xWinId, ECORE_X_ILLUME_INDICATOR_TRANSPARENT); // it means hidden indicator
281   }
282
283   DoShowIndicator( mIndicatorOrientation );
284 }
285
286 void Window::RotateIndicator(Dali::Window::WindowOrientation orientation)
287 {
288   DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "Orientation: %d\n", orientation );
289
290   DoRotateIndicator( orientation );
291 }
292
293 void Window::SetIndicatorBgOpacity( Dali::Window::IndicatorBgOpacity opacityMode )
294 {
295   mIndicatorOpacityMode = opacityMode;
296
297   if( mIndicator != NULL )
298   {
299     mIndicator->SetOpacityMode( opacityMode );
300   }
301 }
302
303 void Window::SetClass(std::string name, std::string klass)
304 {
305   // Get render surface's x11 window
306   if( mSurface )
307   {
308     ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
309     if( x11Window )
310     {
311       ecore_x_icccm_name_class_set( x11Window->GetXWindow(), name.c_str(), klass.c_str() );
312     }
313   }
314 }
315
316 Window::Window()
317 : mSurface(NULL),
318   mIndicatorStyle(Dali::Window::CHANGEABLE_COLOR),
319   mIndicatorVisible(Dali::Window::VISIBLE),
320   mIndicatorIsShown(false),
321   mShowRotatedIndicatorOnClose(false),
322   mStarted(false),
323   mIsTransparent(false),
324   mWMRotationAppSet(false),
325   mIndicator(NULL),
326   mIndicatorOrientation(Dali::Window::PORTRAIT),
327   mNextIndicatorOrientation(Dali::Window::PORTRAIT),
328   mIndicatorOpacityMode(Dali::Window::OPAQUE),
329   mOverlay(NULL),
330   mAdaptor(NULL)
331 {
332 }
333
334 Window::~Window()
335 {
336   delete mEventHandler;
337
338   if ( mAdaptor )
339   {
340     mAdaptor->RemoveObserver( *this );
341     mAdaptor->SetDragAndDropDetector( NULL );
342     mAdaptor = NULL;
343   }
344
345   delete mSurface;
346 }
347
348 void Window::Initialize(const PositionSize& windowPosition, const std::string& name)
349 {
350   // create an X11 window by default
351   Any surface;
352   Any display;
353   mSurface = new ECore::WindowRenderSurface( windowPosition, surface, display, name, mIsTransparent );
354   mOrientation = Orientation::New(this);
355
356   // create event handler for X11 window
357   mEventHandler = new EventHandler( this );
358 }
359
360 void Window::DoShowIndicator( Dali::Window::WindowOrientation lastOrientation )
361 {
362   if( mIndicator == NULL )
363   {
364     if( mIndicatorVisible != Dali::Window::INVISIBLE )
365     {
366       mIndicator = new Indicator( mAdaptor, mIndicatorOrientation, mIndicatorStyle, this );
367       mIndicator->SetOpacityMode( mIndicatorOpacityMode );
368       Dali::Actor actor = mIndicator->GetActor();
369       SetIndicatorActorRotation();
370       mOverlay->Add(actor);
371     }
372     // else don't create a hidden indicator
373   }
374   else // Already have indicator
375   {
376     if( mIndicatorVisible == Dali::Window::VISIBLE )
377     {
378       // If we are resuming, and rotation has changed,
379       if( mIndicatorIsShown == false && mIndicatorOrientation != mNextIndicatorOrientation )
380       {
381         // then close current indicator and open new one
382         mShowRotatedIndicatorOnClose = true;
383         mIndicator->Close(); // May synchronously call IndicatorClosed() callback & 1 level of recursion
384         // Don't show actor - will contain indicator for old orientation.
385       }
386     }
387   }
388
389   // set indicator visible mode
390   if( mIndicator != NULL )
391   {
392     mIndicator->SetVisible( mIndicatorVisible );
393   }
394
395   bool show = (mIndicatorVisible != Dali::Window::INVISIBLE );
396   SetIndicatorProperties( show, lastOrientation );
397   mIndicatorIsShown = show;
398 }
399
400 void Window::DoRotateIndicator( Dali::Window::WindowOrientation orientation )
401 {
402   if( mIndicatorIsShown )
403   {
404     mShowRotatedIndicatorOnClose = true;
405     mNextIndicatorOrientation = orientation;
406     mIndicator->Close(); // May synchronously call IndicatorClosed() callback
407   }
408   else
409   {
410     // Save orientation for when the indicator is next shown
411     mShowRotatedIndicatorOnClose = false;
412     mNextIndicatorOrientation = orientation;
413   }
414 }
415
416 void Window::SetIndicatorProperties( bool isShow, Dali::Window::WindowOrientation lastOrientation )
417 {
418   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
419   if( x11Window )
420   {
421     Ecore_X_Window win = x11Window->GetXWindow();
422
423     int show_state = static_cast<int>( isShow );
424     ecore_x_window_prop_property_set( win,
425                                       ECORE_X_ATOM_E_ILLUME_INDICATOR_STATE,
426                                       ECORE_X_ATOM_CARDINAL, 32, &show_state, 1);
427
428     if ( isShow )
429     {
430       ecore_x_e_illume_indicator_state_set(win, ECORE_X_ILLUME_INDICATOR_STATE_ON);
431     }
432     else
433     {
434       ecore_x_e_illume_indicator_state_set(win, ECORE_X_ILLUME_INDICATOR_STATE_OFF);
435     }
436   }
437 }
438
439 void Window::IndicatorTypeChanged(Indicator::Type type)
440 {
441   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
442   if( x11Window )
443   {
444 #ifndef DALI_PROFILE_UBUNTU
445     Ecore_X_Window win = x11Window->GetXWindow();
446     switch(type)
447     {
448       case Indicator::INDICATOR_TYPE_1:
449         ecore_x_e_illume_indicator_type_set( win, ECORE_X_ILLUME_INDICATOR_TYPE_1 );
450         break;
451
452       case Indicator::INDICATOR_TYPE_2:
453         ecore_x_e_illume_indicator_type_set( win, ECORE_X_ILLUME_INDICATOR_TYPE_2 );
454         break;
455
456       case Indicator::INDICATOR_TYPE_UNKNOWN:
457       default:
458         break;
459     }
460 #endif // DALI_PROFILE_UBUNTU
461   }
462 }
463
464 void Window::IndicatorClosed( Indicator* indicator )
465 {
466   DALI_LOG_TRACE_METHOD( gWindowLogFilter );
467
468   if( mShowRotatedIndicatorOnClose )
469   {
470     Dali::Window::WindowOrientation currentOrientation = mIndicatorOrientation;
471     mIndicator->Open(mNextIndicatorOrientation);
472     mIndicatorOrientation = mNextIndicatorOrientation;
473     SetIndicatorActorRotation();
474     DoShowIndicator(currentOrientation);
475   }
476 }
477
478 void Window::SetIndicatorActorRotation()
479 {
480   DALI_LOG_TRACE_METHOD( gWindowLogFilter );
481   DALI_ASSERT_DEBUG( mIndicator != NULL );
482
483   Dali::Actor actor = mIndicator->GetActor();
484   switch( mIndicatorOrientation )
485   {
486     case Dali::Window::PORTRAIT:
487       actor.SetParentOrigin( ParentOrigin::TOP_CENTER );
488       actor.SetAnchorPoint(  AnchorPoint::TOP_CENTER );
489       actor.SetRotation( Degree(0), Vector3::ZAXIS );
490       break;
491     case Dali::Window::PORTRAIT_INVERSE:
492       actor.SetParentOrigin( ParentOrigin::BOTTOM_CENTER );
493       actor.SetAnchorPoint(  AnchorPoint::TOP_CENTER );
494       actor.SetRotation( Degree(180), Vector3::ZAXIS );
495       break;
496     case Dali::Window::LANDSCAPE:
497       actor.SetParentOrigin( ParentOrigin::CENTER_LEFT );
498       actor.SetAnchorPoint(  AnchorPoint::TOP_CENTER );
499       actor.SetRotation( Degree(270), Vector3::ZAXIS );
500       break;
501     case Dali::Window::LANDSCAPE_INVERSE:
502       actor.SetParentOrigin( ParentOrigin::CENTER_RIGHT );
503       actor.SetAnchorPoint(  AnchorPoint::TOP_CENTER );
504       actor.SetRotation( Degree(90), Vector3::ZAXIS );
505       break;
506   }
507 }
508
509 void Window::Raise()
510 {
511   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
512   if( x11Window )
513   {
514     Ecore_X_Window win = x11Window->GetXWindow();
515     ecore_x_window_raise(win);
516   }
517 }
518
519 void Window::Lower()
520 {
521   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
522   if( x11Window )
523   {
524     Ecore_X_Window win = x11Window->GetXWindow();
525     ecore_x_window_lower(win);
526   }
527 }
528
529 void Window::Activate()
530 {
531   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
532   if( x11Window )
533   {
534     Ecore_X_Window win = x11Window->GetXWindow();
535     ecore_x_netwm_client_active_request(ecore_x_window_root_get(win), win, 1 /* request type, 1:application, 2:pager */, 0);
536   }
537 }
538
539 Dali::DragAndDropDetector Window::GetDragAndDropDetector() const
540 {
541   return mDragAndDropDetector;
542 }
543
544 void Window::OnStart()
545 {
546   DoShowIndicator( mIndicatorOrientation );
547 }
548
549 void Window::OnPause()
550 {
551 }
552
553 void Window::OnResume()
554 {
555   // resume indicator status
556   if( mIndicator != NULL )
557   {
558     // Restore own indicator opacity
559     // Send opacity mode to indicator service when app resumed
560     mIndicator->SetOpacityMode( mIndicatorOpacityMode );
561   }
562 }
563
564 void Window::OnStop()
565 {
566   if( mIndicator )
567   {
568     mIndicator->Close();
569   }
570
571   delete mIndicator;
572   mIndicator = NULL;
573 }
574
575 void Window::OnDestroy()
576 {
577   mAdaptor = NULL;
578 }
579
580 OrientationPtr Window::GetOrientation()
581 {
582   return mOrientation;
583 }
584
585 void Window::AddAvailableOrientation(Dali::Window::WindowOrientation orientation)
586 {
587   bool found = false;
588
589   for( std::size_t i=0; i<mAvailableOrientations.size(); i++ )
590   {
591     if(mAvailableOrientations[i] == orientation)
592     {
593       found = true;
594       break;
595     }
596   }
597
598   if( ! found )
599   {
600     mAvailableOrientations.push_back(orientation);
601     SetAvailableOrientations( mAvailableOrientations );
602   }
603 }
604
605 void Window::RemoveAvailableOrientation(Dali::Window::WindowOrientation orientation)
606 {
607   for( std::vector<Dali::Window::WindowOrientation>::iterator iter = mAvailableOrientations.begin();
608        iter != mAvailableOrientations.end(); ++iter )
609   {
610     if( *iter == orientation )
611     {
612       mAvailableOrientations.erase( iter );
613       break;
614     }
615   }
616   SetAvailableOrientations( mAvailableOrientations );
617 }
618
619 void Window::SetAvailableOrientations(const std::vector<Dali::Window::WindowOrientation>& orientations)
620 {
621   DALI_ASSERT_ALWAYS( mAvailableOrientations.size() <= 4 && "Incorrect number of available orientations" );
622
623   mAvailableOrientations = orientations;
624   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
625   if( x11Window )
626   {
627 #ifndef DALI_PROFILE_UBUNTU
628     Ecore_X_Window ecoreWindow = x11Window->GetXWindow();
629     if( ! mWMRotationAppSet )
630     {
631       mWMRotationAppSet = true;
632       ecore_x_e_window_rotation_app_set(ecoreWindow, EINA_TRUE);
633     }
634
635     int rotations[4];
636     for( std::size_t i=0; i<mAvailableOrientations.size(); i++ )
637     {
638       rotations[i] = static_cast<int>(mAvailableOrientations[i]);
639     }
640     ecore_x_e_window_rotation_available_rotations_set(ecoreWindow, rotations, mAvailableOrientations.size() );
641 #endif // DALI_PROFILE_UBUNTU
642   }
643 }
644
645 const std::vector<Dali::Window::WindowOrientation>& Window::GetAvailableOrientations()
646 {
647   return mAvailableOrientations;
648 }
649
650 void Window::SetPreferredOrientation(Dali::Window::WindowOrientation orientation)
651 {
652   mPreferredOrientation = orientation;
653
654   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
655   if( x11Window )
656   {
657 #ifndef DALI_PROFILE_UBUNTU
658     Ecore_X_Window ecoreWindow = x11Window->GetXWindow();
659
660     if( ! mWMRotationAppSet )
661     {
662       mWMRotationAppSet = true;
663       ecore_x_e_window_rotation_app_set(ecoreWindow, EINA_TRUE);
664     }
665
666     ecore_x_e_window_rotation_preferred_rotation_set(ecoreWindow, orientation);
667 #endif // DALI_PROFILE_UBUNTU
668   }
669 }
670
671 Dali::Window::WindowOrientation Window::GetPreferredOrientation()
672 {
673   return mPreferredOrientation;
674 }
675
676 void Window::RotationDone( int orientation, int width, int height )
677 {
678   // Tell window manager we're done
679   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
680   if( x11Window )
681   {
682 #ifndef DALI_PROFILE_UBUNTU
683     Ecore_X_Window ecoreWindow = x11Window->GetXWindow();
684     Ecore_X_Window root = ecore_x_window_root_get(ecoreWindow);
685
686     /**
687      * send rotation done message to wm, even if window is already rotated.
688      * that's why wm must be wait for comming rotation done message
689      * after sending rotation request.
690      */
691     ecore_x_e_window_rotation_change_done_send(root, ecoreWindow, orientation, width, height);
692
693     /**
694      * set rotate window property
695      */
696     int angles[2] = { orientation, orientation };
697     ecore_x_window_prop_property_set( ecoreWindow,
698                                      ECORE_X_ATOM_E_ILLUME_ROTATE_WINDOW_ANGLE,
699                                      ECORE_X_ATOM_CARDINAL, 32, &angles, 2 );
700 #endif // DALI_PROFILE_UBUNTU
701   }
702 }
703
704
705 } // Adaptor
706 } // Internal
707 } // Dali