OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/renderer_host/render_widget_host_view_gtk.h" | 5 #include "chrome/browser/renderer_host/render_widget_host_view_gtk.h" |
6 | 6 |
7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
8 #include <gdk/gdk.h> | 8 #include <gdk/gdk.h> |
9 #include <gdk/gdkx.h> | 9 #include <gdk/gdkx.h> |
10 #include <cairo/cairo.h> | 10 #include <cairo/cairo.h> |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 // Only render the widget if it is attached to a window; there's a short | 363 // Only render the widget if it is attached to a window; there's a short |
364 // period where this object isn't attached to a window but hasn't been | 364 // period where this object isn't attached to a window but hasn't been |
365 // Destroy()ed yet and it receives paint messages... | 365 // Destroy()ed yet and it receives paint messages... |
366 if (window) { | 366 if (window) { |
367 backing_store->ShowRect( | 367 backing_store->ShowRect( |
368 invalid_rect_, x11_util::GetX11WindowFromGtkWidget(view_.get())); | 368 invalid_rect_, x11_util::GetX11WindowFromGtkWidget(view_.get())); |
369 } | 369 } |
370 } else { | 370 } else { |
371 if (window) | 371 if (window) |
372 gdk_window_clear(window); | 372 gdk_window_clear(window); |
373 NOTIMPLEMENTED(); | |
374 } | 373 } |
375 } | 374 } |
376 | 375 |
377 void RenderWidgetHostViewGtk::ShowCurrentCursor() { | 376 void RenderWidgetHostViewGtk::ShowCurrentCursor() { |
378 // The widget may not have a window. If that's the case, abort mission. This | 377 // The widget may not have a window. If that's the case, abort mission. This |
379 // is the same issue as that explained above in Paint(). | 378 // is the same issue as that explained above in Paint(). |
380 if (!view_.get()->window) | 379 if (!view_.get()->window) |
381 return; | 380 return; |
382 | 381 |
383 GdkCursor* gdk_cursor; | 382 GdkCursor* gdk_cursor; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 void RenderWidgetHostViewGtk::ReceivedSelectionText(GtkClipboard* clipboard, | 418 void RenderWidgetHostViewGtk::ReceivedSelectionText(GtkClipboard* clipboard, |
420 const gchar* text, gpointer userdata) { | 419 const gchar* text, gpointer userdata) { |
421 // If there's nothing to paste (|text| is NULL), do nothing. | 420 // If there's nothing to paste (|text| is NULL), do nothing. |
422 if (!text) | 421 if (!text) |
423 return; | 422 return; |
424 RenderWidgetHostViewGtk* host_view = | 423 RenderWidgetHostViewGtk* host_view = |
425 reinterpret_cast<RenderWidgetHostViewGtk*>(userdata); | 424 reinterpret_cast<RenderWidgetHostViewGtk*>(userdata); |
426 host_view->host_->Send(new ViewMsg_InsertText(host_view->host_->routing_id(), | 425 host_view->host_->Send(new ViewMsg_InsertText(host_view->host_->routing_id(), |
427 UTF8ToUTF16(text))); | 426 UTF8ToUTF16(text))); |
428 } | 427 } |
OLD | NEW |