Home | History | Annotate | Download | only in views

Lines Matching full:focus

176     SkView* focus = this->getFocusView();
177 if (focus == NULL)
178 focus = this;
182 return focus->doEvent(evt);
192 // send an event to the focus-view
194 SkView* focus = this->getFocusView();
195 if (focus == NULL)
196 focus = this;
200 if (focus->doEvent(evt))
219 //send an event to the focus-view
221 SkView* focus = this->getFocusView();
222 if (focus == NULL)
223 focus = this;
228 if (focus->doEvent(evt))
257 bool SkWindow::onGetFocusView(SkView** focus) const {
258 if (focus)
259 *focus = fFocusView;
263 bool SkWindow::onSetFocusView(SkView* focus) {
264 if (fFocusView != focus) {
267 fFocusView = focus;
268 if (focus)
269 focus->onFocusChange(true);