Home | History | Annotate | Download | only in views

Lines Matching refs:focus

230     SkView* focus = this->getFocusView();
231 if (focus == NULL)
232 focus = this;
236 return focus->doEvent(evt);
247 // send an event to the focus-view
249 SkView* focus = this->getFocusView();
250 if (focus == NULL)
251 focus = this;
255 if (focus->doEvent(evt))
276 //send an event to the focus-view
278 SkView* focus = this->getFocusView();
279 if (focus == NULL)
280 focus = this;
285 if (focus->doEvent(evt))
320 bool SkWindow::onGetFocusView(SkView** focus) const
322 if (focus)
323 *focus = fFocusView;
327 bool SkWindow::onSetFocusView(SkView* focus)
329 if (fFocusView != focus)
333 fFocusView = focus;
334 if (focus)
335 focus->onFocusChange(true);