OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/base/gtk/gtk_screen_utils.h" |
| 6 |
| 7 namespace ui { |
| 8 |
| 9 bool IsScreenComposited() { |
| 10 GdkScreen* screen = gdk_screen_get_default(); |
| 11 return gdk_screen_is_composited(screen) == TRUE; |
| 12 } |
| 13 |
| 14 gfx::Point ScreenPoint(GtkWidget* widget) { |
| 15 int x, y; |
| 16 gdk_display_get_pointer(gtk_widget_get_display(widget), NULL, &x, &y, |
| 17 NULL); |
| 18 return gfx::Point(x, y); |
| 19 } |
| 20 |
| 21 gfx::Point ClientPoint(GtkWidget* widget) { |
| 22 int x, y; |
| 23 gtk_widget_get_pointer(widget, &x, &y); |
| 24 return gfx::Point(x, y); |
| 25 } |
| 26 |
| 27 } // namespace ui |
OLD | NEW |