blob: 9473600afccf8571988005866e694ae796665549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "views/focus/accelerator_handler.h"
#include <gtk/gtk.h>
#include <X11/Xlib.h>
#include "views/accelerator.h"
#include "views/event.h"
#include "views/focus/focus_manager.h"
#include "views/widget/root_view.h"
#include "views/widget/widget_gtk.h"
namespace views {
namespace {
RootView* FindRootViewForGdkWindow(GdkWindow* gdk_window) {
gpointer data = NULL;
gdk_window_get_user_data(gdk_window, &data);
GtkWidget* gtk_widget = reinterpret_cast<GtkWidget*>(data);
if (!gtk_widget || !GTK_IS_WIDGET(gtk_widget)) {
DLOG(WARNING) << "no GtkWidget found for that GdkWindow";
return NULL;
}
WidgetGtk* widget_gtk = WidgetGtk::GetViewForNative(gtk_widget);
if (!widget_gtk) {
DLOG(WARNING) << "no WidgetGtk found for that GtkWidget";
return NULL;
}
return widget_gtk->GetRootView();
}
} // namespace
bool DispatchXEvent(XEvent* xev) {
GdkDisplay* gdisp = gdk_display_get_default();
GdkWindow* gwind = gdk_window_lookup_for_display(gdisp, xev->xany.window);
if (RootView* root = FindRootViewForGdkWindow(gwind)) {
switch (xev->type) {
case KeyPress:
case KeyRelease: {
KeyEvent keyev(xev);
// If it's a keypress, check to see if it triggers an accelerator.
if (xev->type == KeyPress) {
FocusManager* focus_manager = root->GetFocusManager();
if (focus_manager && !focus_manager->OnKeyEvent(keyev))
return true;
}
return root->ProcessKeyEvent(keyev);
}
case ButtonPress:
case ButtonRelease: {
MouseEvent mouseev(xev);
if (xev->type == ButtonPress) {
return root->OnMousePressed(mouseev);
} else {
root->OnMouseReleased(mouseev, false);
return true; // Assume the event has been processed to make sure we
// don't process it twice.
}
}
case MotionNotify: {
MouseEvent mouseev(xev);
if (mouseev.GetType() == Event::ET_MOUSE_DRAGGED) {
return root->OnMouseDragged(mouseev);
} else {
root->OnMouseMoved(mouseev);
return true;
}
}
}
}
return false;
}
AcceleratorHandler::AcceleratorHandler() {}
bool AcceleratorHandler::Dispatch(GdkEvent* event) {
gtk_main_do_event(event);
return true;
}
bool AcceleratorHandler::Dispatch(XEvent* xev) {
return DispatchXEvent(xev);
}
} // namespace views
|