Home | History | Annotate | Download | only in focus

Lines Matching refs:FocusTraversable

39 // The FocusTraversable interface exposes the methods a class should implement
41 // RootViews implement FocusTraversable.
42 // The FocusManager contains a top FocusTraversable instance, which is the top
71 // Note that FocusTraversable do not have to be RootViews: AccessibleToolbarView
72 // is FocusTraversable.
88 // The FocusTraversable interface is used by components that want to process
90 class VIEWS_EXPORT FocusTraversable {
96 // Should return the parent FocusTraversable.
97 // The top RootView which is the top FocusTraversable returns NULL.
98 virtual FocusTraversable* GetFocusTraversableParent() = 0;
100 // This should return the View this FocusTraversable belongs to.
106 virtual ~FocusTraversable() {}
314 // Returns the focusable view found in the FocusTraversable specified starting
315 // at the specified view. This traverses down along the FocusTraversable
318 View* FindFocusableView(FocusTraversable* focus_traversable,