Lines Matching refs:focus

84 	BHandler*	focus;
1093 // we notify the input server if we are gaining or losing focus
1892 BWindow::WindowActivated(bool focus)
3193 // we notify the input server if we are passing focus
3215 focus view.
3243 // these messages should be dispatched by the focus view
3285 /*! \brief Determines whether or not this message has targeted the focus view.
3288 handler, or if the packed message does not contain address the focus view
3330 cookie.focus = *_target;
3332 if (cookie.focus != NULL)
3344 // message directly (but not to the focus view)
3350 // focus view is preferred and should get its message directly
3363 // the secondary copies of the message should not be treated as focus
3374 // if there is a last mouse moved view, and the new focus is
3378 && fLastMouseMovedView != cookie.focus) {
3387 // check if the focus token is still valid (could have been removed in the mean time)
3394 // should this message still be dispatched by the focus view?
3409 *_target = cookie.focus;
3623 // Only handle special functions when the event targeted the active focus
3711 // Send Command+Left and Command+Right to textview if it has focus
3773 // Only handle special functions when the event targeted the active focus
3942 BWindow::_FindNextNavigable(BView* focus, uint32 flags)
3944 if (focus == NULL)
3945 focus = fTopView;
3947 BView* nextFocus = focus;
3949 // Search the tree for views that accept focus (depth search)
3963 if (nextFocus == focus)
3971 if (nextFocus == focus || nextFocus == NULL) {
3984 BWindow::_FindPreviousNavigable(BView* focus, uint32 flags)
3986 if (focus == NULL)
3987 focus = fTopView;
3989 BView* previousFocus = focus;
3991 // Search the tree for the previous view that accept focus
4002 if (previousFocus == focus || previousFocus == NULL) {