OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/ui/libgtk2ui/gtk2_event_loop.h" | 5 #include "chrome/browser/ui/libgtk2ui/gtk2_event_loop.h" |
6 | 6 |
7 #include <gdk/gdk.h> | 7 #include <gdk/gdk.h> |
8 #include <gdk/gdkx.h> | 8 #include <gdk/gdkx.h> |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 #include <X11/X.h> | 10 #include <X11/X.h> |
11 | 11 |
12 #include "base/memory/singleton.h" | 12 #include "base/memory/singleton.h" |
13 #include "base/message_loop/message_pump_x11.h" | 13 #include "ui/gfx/x/x11_types.h" |
14 | 14 |
15 namespace libgtk2ui { | 15 namespace libgtk2ui { |
16 | 16 |
17 // static | 17 // static |
18 Gtk2EventLoop* Gtk2EventLoop::GetInstance() { | 18 Gtk2EventLoop* Gtk2EventLoop::GetInstance() { |
19 return Singleton<Gtk2EventLoop>::get(); | 19 return Singleton<Gtk2EventLoop>::get(); |
20 } | 20 } |
21 | 21 |
22 Gtk2EventLoop::Gtk2EventLoop() { | 22 Gtk2EventLoop::Gtk2EventLoop() { |
23 gdk_event_handler_set(GdkEventTrampoline, this, NULL); | 23 gdk_event_handler_set(GdkEventTrampoline, this, NULL); |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 // | 59 // |
60 // (*1) At least ibus-gtk in async mode creates a copy of user's key event and | 60 // (*1) At least ibus-gtk in async mode creates a copy of user's key event and |
61 // pushes it back to the GDK event queue. In this case, there is no | 61 // pushes it back to the GDK event queue. In this case, there is no |
62 // corresponding key event in the X event queue. So we have to handle this | 62 // corresponding key event in the X event queue. So we have to handle this |
63 // case. ibus-gtk is used through gtk-immodule to support IMEs. | 63 // case. ibus-gtk is used through gtk-immodule to support IMEs. |
64 | 64 |
65 XEvent x_event = {0}; | 65 XEvent x_event = {0}; |
66 x_event.xkey.type = | 66 x_event.xkey.type = |
67 gdk_event_key.type == GDK_KEY_PRESS ? KeyPress : KeyRelease; | 67 gdk_event_key.type == GDK_KEY_PRESS ? KeyPress : KeyRelease; |
68 x_event.xkey.send_event = gdk_event_key.send_event; | 68 x_event.xkey.send_event = gdk_event_key.send_event; |
69 x_event.xkey.display = base::MessagePumpX11::GetDefaultXDisplay(); | 69 x_event.xkey.display = gfx::GetXDisplay(); |
70 x_event.xkey.window = GDK_WINDOW_XID(gdk_event_key.window); | 70 x_event.xkey.window = GDK_WINDOW_XID(gdk_event_key.window); |
71 x_event.xkey.root = DefaultRootWindow(x_event.xkey.display); | 71 x_event.xkey.root = DefaultRootWindow(x_event.xkey.display); |
72 x_event.xkey.time = gdk_event_key.time; | 72 x_event.xkey.time = gdk_event_key.time; |
73 x_event.xkey.state = gdk_event_key.state; | 73 x_event.xkey.state = gdk_event_key.state; |
74 x_event.xkey.keycode = gdk_event_key.hardware_keycode; | 74 x_event.xkey.keycode = gdk_event_key.hardware_keycode; |
75 x_event.xkey.same_screen = true; | 75 x_event.xkey.same_screen = true; |
76 | 76 |
77 XPutBackEvent(x_event.xkey.display, &x_event); | 77 XPutBackEvent(x_event.xkey.display, &x_event); |
78 } | 78 } |
79 | 79 |
80 } // namespace libgtk2ui | 80 } // namespace libgtk2ui |
OLD | NEW |