Lines Matching refs:Widget
15 #include "ui/views/widget/widget.h"
35 void FocusCycler::AddWidget(views::Widget* widget) {
36 widgets_.push_back(widget);
42 views::Widget* widget = views::Widget::GetWidgetForNativeWindow(window);
43 // First try to rotate focus within the active widget. If that succeeds,
45 if (widget && widget->GetFocusManager()->RotatePaneFocus(
87 views::Widget* widget = views::Widget::GetWidgetForNativeWindow(window);
88 if (!widget)
90 views::FocusManager* focus_manager = widget->GetFocusManager();
104 bool FocusCycler::FocusWidget(views::Widget* widget) {
106 // will be taken care of by the widget activation.
107 widget_activating_ = widget;
108 widget->Activate();
110 return widget->IsActive();