ui/views/slideshowview/src/glxslideshowview.cpp
changeset 49 f291796e213d
parent 36 6481344a6d67
child 52 a3a4c0de738e
child 55 fb37077c270f
equal deleted inserted replaced
48:d0b4e67b3a60 49:f291796e213d
    62 }
    62 }
    63 
    63 
    64 void GlxSlideShowView::activate()
    64 void GlxSlideShowView::activate()
    65 {
    65 {
    66     TRACER("GlxSlideShowView::activate()");
    66     TRACER("GlxSlideShowView::activate()");
    67     mWindow->setOrientation(Qt::Horizontal, true);  // Actually it is animation false, Hack for Bug in Media wall -todo- need to Address this ASAP
    67     mWindow->setOrientation(Qt::Horizontal, false);
    68 
    68 
    69     //finds the widgets from the docml
    69     //finds the widgets from the docml
    70     loadObjects();
    70     loadObjects();
    71     setTitleBarVisible(FALSE);
    71     setTitleBarVisible(FALSE);
    72     setStatusBarVisible(FALSE);
    72     setStatusBarVisible(FALSE);
    81 }
    81 }
    82 
    82 
    83 void GlxSlideShowView::deActivate()
    83 void GlxSlideShowView::deActivate()
    84 {
    84 {
    85     TRACER("GlxSlideShowView::deActivate()");
    85     TRACER("GlxSlideShowView::deActivate()");
    86     mWindow->unsetOrientation(true);         // Actually it is animation false, Hack for Bug in Media wall -todo- need to Address this ASAP
    86     mWindow->unsetOrientation(false);
    87     
    87     
    88     setStatusBarVisible(TRUE);
    88     setStatusBarVisible(TRUE);
    89     setTitleBarVisible(TRUE);
    89     setTitleBarVisible(TRUE);
    90     
    90     
    91                 
    91