*/
double GetPeriod() const;
+ /**
+ * @copydoc Dali::WidgetView::WidgetView::Show
+ */
+ void Show();
+
+ /**
+ * @copydoc Dali::WidgetView::WidgetView::Hide
+ */
+ void Hide();
+
/**
* @copydoc Dali::WidgetView::WidgetView::CancelTouchEvent
*/
return Dali::WidgetView::GetImplementation( *this ).GetPeriod();
}
+void WidgetView::Show()
+{
+ Dali::WidgetView::GetImplementation( *this ).Show();
+}
+
+void WidgetView::Hide()
+{
+ Dali::WidgetView::GetImplementation( *this ).Hide();
+}
+
bool WidgetView::CancelTouchEvent()
{
return Dali::WidgetView::GetImplementation( *this ).CancelTouchEvent();
*/
double GetPeriod() const;
+ /**
+ * @brief Shows the widget.
+ *
+ * @since_tizen 3.0
+ * @privlevel public
+ * @privilege %http://tizen.org/privilege/widget.viewer
+ * @note Use this function instead of Dali::Actor::SetVisible() to restart updating widget content.
+ */
+ void Show();
+
+ /**
+ * @brief Hides the widget.
+ *
+ * @since_tizen 3.0
+ * @privlevel public
+ * @privilege %http://tizen.org/privilege/widget.viewer
+ * @note Use this function instead of Dali::Actor::SetVisible() to stop updating widget content.
+ */
+ void Hide();
+
/**
* @brief Cancels touch event procedure.
* If you call this function after feed the touch down event, the widget will get ON_HOLD events.