Lines Matching refs:RootView
68 class RootView : public UIViewGroup {
71 * @brief Obtains a singleton <b>RootView</b> instance.
73 * @return Returns the singleton <b>RootView</b> instance.
77 static RootView* GetInstance();
81 * @brief Obtains a <b>RootView</b> instance bound to a window.
83 * @return Returns the <b>RootView</b> instance.
87 static RootView* GetWindowRootView()
89 return new RootView;
93 * @brief Destroys the <b>RootView</b> bound to a window.
95 * @param rootView Indicates the pointer to the <b>RootView</b> to destroy.
100 static bool DestroyWindowRootView(RootView* rootView)
102 if (rootView == RootView::GetInstance()) {
252 * @brief Obtains the window bound with a <b>RootView</b>.
264 * @brief Measure all child view under RootView
303 RootView();
305 ~RootView();