Lines Matching full:window
46 // Approximate height of controls window, this constant is used in new user
47 // case to make border window size close to existing users.
57 // A window for controls that sets focus to the view when
74 // For some reason, Controls window never gets first expose event,
77 // this may allow WM to show unpainted window, we haven't seen any
89 // Widget that notifies window manager about clicking on itself.
112 void CloseWindow(views::Widget* window) {
113 if (!window)
115 window->set_widget_delegate(NULL);
116 window->Close();
180 // Reset the widget delegate of every window to NULL, so the user
181 // controller will not get notified about the active window change.
360 void UserController::ConfigureLoginWindow(WidgetGtk* window,
365 window->MakeTransparent();
366 window->Init(NULL, bounds);
367 window->SetContentsView(contents_view);
368 window->set_widget_delegate(this);
373 window->GetNativeView(),
377 GdkWindow* gdk_window = window->GetNativeView()->window;
380 window->Show();
417 WidgetGtk* window = new ControlsWindow(control_view);
418 ConfigureLoginWindow(window,
423 return window;
441 WidgetGtk* window = new ClickNotifyingWidget(WidgetGtk::TYPE_WINDOW, this);
442 ConfigureLoginWindow(window,
448 return window;
455 // New user login controls window is much higher than existing user's controls
456 // window so window manager will place the control instead of image window.
479 GdkWindow* gdk_window = border_window_->GetNativeView()->window;
529 WidgetGtk* window = new ClickNotifyingWidget(WidgetGtk::TYPE_WINDOW, this);
530 ConfigureLoginWindow(window,
535 return window;