Support to build against ubuntu environment.
[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( bool show )
249 {
250   DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "%s\n", show?"SHOW":"HIDE" );
251   DALI_ASSERT_DEBUG(mOverlay);
252
253   if(show)
254   {
255     mIndicatorVisible = Dali::Window::VISIBLE;
256   }
257   else
258   {
259     mIndicatorVisible = Dali::Window::INVISIBLE;
260   }
261
262   DoShowIndicator( mIndicatorOrientation );
263 }
264
265 void Window::ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode )
266 {
267   DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "visible : %d\n", visibleMode );
268   DALI_ASSERT_DEBUG(mOverlay);
269
270   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
271   DALI_ASSERT_DEBUG(x11Window);
272   Ecore_X_Window xWinId = x11Window->GetXWindow();
273
274   mIndicatorVisible = visibleMode;
275
276   if ( mIndicatorVisible == Dali::Window::VISIBLE )
277   {
278     // when the indicator is visible, set proper mode for indicator server according to bg mode
279     if ( mIndicatorOpacityMode == Dali::Window::OPAQUE )
280     {
281       ecore_x_e_illume_indicator_opacity_set(xWinId, ECORE_X_ILLUME_INDICATOR_OPAQUE);
282     }
283     else if ( mIndicatorOpacityMode == Dali::Window::TRANSLUCENT )
284     {
285       ecore_x_e_illume_indicator_opacity_set(xWinId, ECORE_X_ILLUME_INDICATOR_TRANSLUCENT);
286     }
287 #if defined(DALI_PROFILE_MOBILE)
288     else if ( mIndicatorOpacityMode == Dali::Window::TRANSPARENT )
289     {
290       ecore_x_e_illume_indicator_opacity_set(xWinId, ECORE_X_ILLUME_INDICATOR_BG_TRANSPARENT);
291     }
292 #endif
293   }
294   else
295   {
296     // when the indicator is not visible, set TRANSPARENT mode for indicator server
297     ecore_x_e_illume_indicator_opacity_set(xWinId, ECORE_X_ILLUME_INDICATOR_TRANSPARENT); // it means hidden indicator
298   }
299
300   DoShowIndicator( mIndicatorOrientation );
301 }
302
303 void Window::RotateIndicator(Dali::Window::WindowOrientation orientation)
304 {
305   DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "Orientation: %d\n", orientation );
306
307   DoRotateIndicator( orientation );
308 }
309
310 void Window::SetIndicatorBgOpacity( Dali::Window::IndicatorBgOpacity opacityMode )
311 {
312   mIndicatorOpacityMode = opacityMode;
313
314   if( mIndicator != NULL )
315   {
316     mIndicator->SetOpacityMode( opacityMode );
317   }
318 }
319
320 void Window::SetClass(std::string name, std::string klass)
321 {
322   // Get render surface's x11 window
323   if( mSurface )
324   {
325     ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
326     if( x11Window )
327     {
328       ecore_x_icccm_name_class_set( x11Window->GetXWindow(), name.c_str(), klass.c_str() );
329     }
330   }
331 }
332
333 Window::Window()
334 : mSurface(NULL),
335   mIndicatorStyle(Dali::Window::CHANGEABLE_COLOR),
336   mIndicatorVisible(Dali::Window::VISIBLE),
337   mIndicatorIsShown(false),
338   mShowRotatedIndicatorOnClose(false),
339   mStarted(false),
340   mIsTransparent(false),
341   mWMRotationAppSet(false),
342   mIndicator(NULL),
343   mIndicatorOrientation(Dali::Window::PORTRAIT),
344   mNextIndicatorOrientation(Dali::Window::PORTRAIT),
345   mIndicatorOpacityMode(Dali::Window::OPAQUE),
346   mOverlay(NULL),
347   mAdaptor(NULL)
348 {
349 }
350
351 Window::~Window()
352 {
353   delete mEventHandler;
354
355   if ( mAdaptor )
356   {
357     mAdaptor->RemoveObserver( *this );
358     mAdaptor->SetDragAndDropDetector( NULL );
359     mAdaptor = NULL;
360   }
361
362   delete mSurface;
363 }
364
365 void Window::Initialize(const PositionSize& windowPosition, const std::string& name)
366 {
367   // create an X11 window by default
368   Any surface;
369   Any display;
370   mSurface = new ECore::WindowRenderSurface( windowPosition, surface, display, name, mIsTransparent );
371   mOrientation = Orientation::New(this);
372
373   // create event handler for X11 window
374   mEventHandler = new EventHandler( this );
375 }
376
377 void Window::DoShowIndicator( Dali::Window::WindowOrientation lastOrientation )
378 {
379   if( mIndicator == NULL )
380   {
381     if( mIndicatorVisible != Dali::Window::INVISIBLE )
382     {
383       mIndicator = new Indicator( mAdaptor, mIndicatorOrientation, mIndicatorStyle, this );
384       mIndicator->SetOpacityMode( mIndicatorOpacityMode );
385       Dali::Actor actor = mIndicator->GetActor();
386       SetIndicatorActorRotation();
387       mOverlay->Add(actor);
388     }
389     // else don't create a hidden indicator
390   }
391   else // Already have indicator
392   {
393     if( mIndicatorVisible == Dali::Window::VISIBLE )
394     {
395       // If we are resuming, and rotation has changed,
396       if( mIndicatorIsShown == false && mIndicatorOrientation != mNextIndicatorOrientation )
397       {
398         // then close current indicator and open new one
399         mShowRotatedIndicatorOnClose = true;
400         mIndicator->Close(); // May synchronously call IndicatorClosed() callback & 1 level of recursion
401         // Don't show actor - will contain indicator for old orientation.
402       }
403     }
404   }
405
406   // set indicator visible mode
407   if( mIndicator != NULL )
408   {
409     mIndicator->SetVisible( mIndicatorVisible );
410   }
411
412   bool show = (mIndicatorVisible != Dali::Window::INVISIBLE );
413   SetIndicatorProperties( show, lastOrientation );
414   mIndicatorIsShown = show;
415 }
416
417 void Window::DoRotateIndicator( Dali::Window::WindowOrientation orientation )
418 {
419   if( mIndicatorIsShown )
420   {
421     mShowRotatedIndicatorOnClose = true;
422     mNextIndicatorOrientation = orientation;
423     mIndicator->Close(); // May synchronously call IndicatorClosed() callback
424   }
425   else
426   {
427     // Save orientation for when the indicator is next shown
428     mShowRotatedIndicatorOnClose = false;
429     mNextIndicatorOrientation = orientation;
430   }
431 }
432
433 void Window::SetIndicatorProperties( bool isShow, Dali::Window::WindowOrientation lastOrientation )
434 {
435   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
436   if( x11Window )
437   {
438     Ecore_X_Window win = x11Window->GetXWindow();
439
440     int show_state = static_cast<int>( isShow );
441     ecore_x_window_prop_property_set( win,
442                                       ECORE_X_ATOM_E_ILLUME_INDICATOR_STATE,
443                                       ECORE_X_ATOM_CARDINAL, 32, &show_state, 1);
444
445     if ( isShow )
446     {
447       ecore_x_e_illume_indicator_state_set(win, ECORE_X_ILLUME_INDICATOR_STATE_ON);
448     }
449     else
450     {
451       ecore_x_e_illume_indicator_state_set(win, ECORE_X_ILLUME_INDICATOR_STATE_OFF);
452     }
453   }
454 }
455
456 void Window::IndicatorTypeChanged(Indicator::Type type)
457 {
458   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
459   if( x11Window )
460   {
461 #ifndef DALI_PROFILE_UBUNTU
462     Ecore_X_Window win = x11Window->GetXWindow();
463     switch(type)
464     {
465       case Indicator::INDICATOR_TYPE_1:
466         ecore_x_e_illume_indicator_type_set( win, ECORE_X_ILLUME_INDICATOR_TYPE_1 );
467         break;
468
469       case Indicator::INDICATOR_TYPE_2:
470         ecore_x_e_illume_indicator_type_set( win, ECORE_X_ILLUME_INDICATOR_TYPE_2 );
471         break;
472
473       case Indicator::INDICATOR_TYPE_UNKNOWN:
474       default:
475         break;
476     }
477 #endif // DALI_PROFILE_UBUNTU
478   }
479 }
480
481 void Window::IndicatorClosed( Indicator* indicator )
482 {
483   DALI_LOG_TRACE_METHOD( gWindowLogFilter );
484
485   if( mShowRotatedIndicatorOnClose )
486   {
487     Dali::Window::WindowOrientation currentOrientation = mIndicatorOrientation;
488     mIndicator->Open(mNextIndicatorOrientation);
489     mIndicatorOrientation = mNextIndicatorOrientation;
490     SetIndicatorActorRotation();
491     DoShowIndicator(currentOrientation);
492   }
493 }
494
495 void Window::SetIndicatorActorRotation()
496 {
497   DALI_LOG_TRACE_METHOD( gWindowLogFilter );
498   DALI_ASSERT_DEBUG( mIndicator != NULL );
499
500   Dali::Actor actor = mIndicator->GetActor();
501   switch( mIndicatorOrientation )
502   {
503     case Dali::Window::PORTRAIT:
504       actor.SetParentOrigin( ParentOrigin::TOP_CENTER );
505       actor.SetAnchorPoint(  AnchorPoint::TOP_CENTER );
506       actor.SetRotation( Degree(0), Vector3::ZAXIS );
507       break;
508     case Dali::Window::PORTRAIT_INVERSE:
509       actor.SetParentOrigin( ParentOrigin::BOTTOM_CENTER );
510       actor.SetAnchorPoint(  AnchorPoint::TOP_CENTER );
511       actor.SetRotation( Degree(180), Vector3::ZAXIS );
512       break;
513     case Dali::Window::LANDSCAPE:
514       actor.SetParentOrigin( ParentOrigin::CENTER_LEFT );
515       actor.SetAnchorPoint(  AnchorPoint::TOP_CENTER );
516       actor.SetRotation( Degree(270), Vector3::ZAXIS );
517       break;
518     case Dali::Window::LANDSCAPE_INVERSE:
519       actor.SetParentOrigin( ParentOrigin::CENTER_RIGHT );
520       actor.SetAnchorPoint(  AnchorPoint::TOP_CENTER );
521       actor.SetRotation( Degree(90), Vector3::ZAXIS );
522       break;
523   }
524 }
525
526 void Window::Raise()
527 {
528   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
529   if( x11Window )
530   {
531     Ecore_X_Window win = x11Window->GetXWindow();
532     ecore_x_window_raise(win);
533   }
534 }
535
536 void Window::Lower()
537 {
538   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
539   if( x11Window )
540   {
541     Ecore_X_Window win = x11Window->GetXWindow();
542     ecore_x_window_lower(win);
543   }
544 }
545
546 void Window::Activate()
547 {
548   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
549   if( x11Window )
550   {
551     Ecore_X_Window win = x11Window->GetXWindow();
552     ecore_x_netwm_client_active_request(ecore_x_window_root_get(win), win, 1 /* request type, 1:application, 2:pager */, 0);
553   }
554 }
555
556 Dali::DragAndDropDetector Window::GetDragAndDropDetector() const
557 {
558   return mDragAndDropDetector;
559 }
560
561 void Window::OnStart()
562 {
563   DoShowIndicator( mIndicatorOrientation );
564 }
565
566 void Window::OnPause()
567 {
568 }
569
570 void Window::OnResume()
571 {
572   // resume indicator status
573   if( mIndicator != NULL )
574   {
575     // Restore own indicator opacity
576     // Send opacity mode to indicator service when app resumed
577     mIndicator->SetOpacityMode( mIndicatorOpacityMode );
578   }
579 }
580
581 void Window::OnStop()
582 {
583   if( mIndicator )
584   {
585     mIndicator->Close();
586   }
587
588   delete mIndicator;
589   mIndicator = NULL;
590 }
591
592 void Window::OnDestroy()
593 {
594   mAdaptor = NULL;
595 }
596
597 OrientationPtr Window::GetOrientation()
598 {
599   return mOrientation;
600 }
601
602 void Window::AddAvailableOrientation(Dali::Window::WindowOrientation orientation)
603 {
604   bool found = false;
605
606   for( std::size_t i=0; i<mAvailableOrientations.size(); i++ )
607   {
608     if(mAvailableOrientations[i] == orientation)
609     {
610       found = true;
611       break;
612     }
613   }
614
615   if( ! found )
616   {
617     mAvailableOrientations.push_back(orientation);
618     SetAvailableOrientations( mAvailableOrientations );
619   }
620 }
621
622 void Window::RemoveAvailableOrientation(Dali::Window::WindowOrientation orientation)
623 {
624   for( std::vector<Dali::Window::WindowOrientation>::iterator iter = mAvailableOrientations.begin();
625        iter != mAvailableOrientations.end(); ++iter )
626   {
627     if( *iter == orientation )
628     {
629       mAvailableOrientations.erase( iter );
630       break;
631     }
632   }
633   SetAvailableOrientations( mAvailableOrientations );
634 }
635
636 void Window::SetAvailableOrientations(const std::vector<Dali::Window::WindowOrientation>& orientations)
637 {
638   DALI_ASSERT_ALWAYS( mAvailableOrientations.size() <= 4 && "Incorrect number of available orientations" );
639
640   mAvailableOrientations = orientations;
641   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
642   if( x11Window )
643   {
644 #ifndef DALI_PROFILE_UBUNTU
645     Ecore_X_Window ecoreWindow = x11Window->GetXWindow();
646     if( ! mWMRotationAppSet )
647     {
648       mWMRotationAppSet = true;
649       ecore_x_e_window_rotation_app_set(ecoreWindow, EINA_TRUE);
650     }
651
652     int rotations[4];
653     for( std::size_t i=0; i<mAvailableOrientations.size(); i++ )
654     {
655       rotations[i] = static_cast<int>(mAvailableOrientations[i]);
656     }
657     ecore_x_e_window_rotation_available_rotations_set(ecoreWindow, rotations, mAvailableOrientations.size() );
658 #endif // DALI_PROFILE_UBUNTU
659   }
660 }
661
662 const std::vector<Dali::Window::WindowOrientation>& Window::GetAvailableOrientations()
663 {
664   return mAvailableOrientations;
665 }
666
667 void Window::SetPreferredOrientation(Dali::Window::WindowOrientation orientation)
668 {
669   mPreferredOrientation = orientation;
670
671   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
672   if( x11Window )
673   {
674 #ifndef DALI_PROFILE_UBUNTU
675     Ecore_X_Window ecoreWindow = x11Window->GetXWindow();
676
677     if( ! mWMRotationAppSet )
678     {
679       mWMRotationAppSet = true;
680       ecore_x_e_window_rotation_app_set(ecoreWindow, EINA_TRUE);
681     }
682
683     ecore_x_e_window_rotation_preferred_rotation_set(ecoreWindow, orientation);
684 #endif // DALI_PROFILE_UBUNTU
685   }
686 }
687
688 Dali::Window::WindowOrientation Window::GetPreferredOrientation()
689 {
690   return mPreferredOrientation;
691 }
692
693 void Window::RotationDone( int orientation, int width, int height )
694 {
695   // Tell window manager we're done
696   ECore::WindowRenderSurface* x11Window = dynamic_cast< ECore::WindowRenderSurface * >( mSurface );
697   if( x11Window )
698   {
699 #ifndef DALI_PROFILE_UBUNTU
700     Ecore_X_Window ecoreWindow = x11Window->GetXWindow();
701     Ecore_X_Window root = ecore_x_window_root_get(ecoreWindow);
702
703     /**
704      * send rotation done message to wm, even if window is already rotated.
705      * that's why wm must be wait for comming rotation done message
706      * after sending rotation request.
707      */
708     ecore_x_e_window_rotation_change_done_send(root, ecoreWindow, orientation, width, height);
709
710     /**
711      * set rotate window property
712      */
713     int angles[2] = { orientation, orientation };
714     ecore_x_window_prop_property_set( ecoreWindow,
715                                      ECORE_X_ATOM_E_ILLUME_ROTATE_WINDOW_ANGLE,
716                                      ECORE_X_ATOM_CARDINAL, 32, &angles, 2 );
717 #endif // DALI_PROFILE_UBUNTU
718   }
719 }
720
721
722 } // Adaptor
723 } // Internal
724 } // Dali