Home | History | Annotate | Download | only in renderer_host

Lines Matching refs:host_view

98   static GtkWidget* CreateNewWidget(RenderWidgetHostViewGtk* host_view) {
125 G_CALLBACK(OnExposeEvent), host_view);
127 G_CALLBACK(OnKeyPressReleaseEvent), host_view);
129 G_CALLBACK(OnKeyPressReleaseEvent), host_view);
131 G_CALLBACK(OnFocusIn), host_view);
133 G_CALLBACK(OnFocusOut), host_view);
135 G_CALLBACK(OnGrabNotify), host_view);
137 G_CALLBACK(OnButtonPressReleaseEvent), host_view);
139 G_CALLBACK(OnButtonPressReleaseEvent), host_view);
141 G_CALLBACK(OnMouseMoveEvent), host_view);
143 G_CALLBACK(OnCrossingEvent), host_view);
145 G_CALLBACK(OnCrossingEvent), host_view);
147 G_CALLBACK(OnClientEvent), host_view);
153 G_CALLBACK(OnMouseScrollEvent), host_view);
156 static_cast<RenderWidgetHostView*>(host_view));
164 RenderWidgetHostViewGtk* host_view) {
165 if (host_view->is_hidden_)
168 host_view->Paint(damage_rect);
174 RenderWidgetHostViewGtk* host_view) {
178 (host_view->IsPopup() && host_view->NeedsInputGrab()) ||
179 host_view->is_fullscreen_;
181 host_view->host_->Shutdown();
184 host_view->im_context_->ProcessKeyEvent(event);
195 RenderWidgetHostViewGtk* host_view) {
196 host_view->ShowCurrentCursor();
197 host_view->GetRenderWidgetHost()->GotFocus();
201 host_view->im_context_->OnFocusIn();
208 RenderWidgetHostViewGtk* host_view) {
214 if (!host_view->is_showing_context_menu_)
215 host_view->GetRenderWidgetHost()->Blur();
218 host_view->was_focused_before_grab_ = false;
221 host_view->im_context_->OnFocusOut();
231 RenderWidgetHostViewGtk* host_view) {
233 if (host_view->was_focused_before_grab_)
234 host_view->im_context_->OnFocusIn();
236 host_view->was_focused_before_grab_ = host_view->HasFocus();
237 if (host_view->was_focused_before_grab_) {
239 host_view->im_context_->OnFocusOut();
247 RenderWidgetHostViewGtk* host_view) {
276 host_view->GetRenderWidgetHost()->ForwardWheelEvent(web_event);
281 host_view->set_last_mouse_down(event);
290 host_view->host_->OnMouseActivate();
294 host_view->im_context_->ConfirmComposition();
312 if (event->type != GDK_BUTTON_RELEASE && host_view->IsPopup() &&
313 !host_view->is_popup_first_mouse_release_ && !click_in_popup) {
314 host_view->host_->Shutdown();
326 host_view->is_popup_first_mouse_release_ = false;
327 host_view->GetRenderWidgetHost()->ForwardMouseEvent(
337 RenderWidgetHostViewGtk* host_view) {
350 host_view->ModifyEventForEdgeDragging(widget, event);
351 host_view->GetRenderWidgetHost()->ForwardMouseEvent(
358 RenderWidgetHostViewGtk* host_view) {
372 host_view->GetRenderWidgetHost()->ForwardMouseEvent(
381 RenderWidgetHostViewGtk* host_view) {
459 RenderWidgetHostViewGtk* host_view) {
487 host_view->GetRenderWidgetHost()->ForwardWheelEvent(web_event);