Lines Matching full:focus
184 SkView* focus = this->getFocusView();
185 if (focus == NULL)
186 focus = this;
190 return focus->doEvent(evt);
201 // send an event to the focus-view
203 SkView* focus = this->getFocusView();
204 if (focus == NULL)
205 focus = this;
209 if (focus->doEvent(evt))
230 //send an event to the focus-view
232 SkView* focus = this->getFocusView();
233 if (focus == NULL)
234 focus = this;
239 if (focus->doEvent(evt))
289 bool SkWindow::onGetFocusView(SkView** focus) const
291 if (focus)
292 *focus = fFocusView;
296 bool SkWindow::onSetFocusView(SkView* focus)
298 if (fFocusView != focus)
302 fFocusView = focus;
303 if (focus)
304 focus->onFocusChange(true);