OSDN Git Service

am e9901563: (-s ours) do not merge: fix copy/paste using trackball on passion
[android-x86/external-webkit.git] / WebCore / accessibility / gtk / AXObjectCacheAtk.cpp
1 /*
2  * Copyright (C) 2008 Nuanti Ltd.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #include "config.h"
21 #include "AXObjectCache.h"
22
23 #include "AccessibilityObject.h"
24 #include "AccessibilityObjectWrapperAtk.h"
25
26 namespace WebCore {
27
28 void AXObjectCache::detachWrapper(AccessibilityObject* obj)
29 {
30     webkit_accessible_detach(WEBKIT_ACCESSIBLE(obj->wrapper()));
31 }
32
33 void AXObjectCache::attachWrapper(AccessibilityObject* obj)
34 {
35     AtkObject* atkObj = ATK_OBJECT(webkit_accessible_new(obj));
36     obj->setWrapper(atkObj);
37     g_object_unref(atkObj);
38 }
39
40 void AXObjectCache::postPlatformNotification(AccessibilityObject* coreObject, AXNotification notification)
41 {
42     if (notification == AXCheckedStateChanged) {
43         if (!coreObject->isCheckboxOrRadio())
44             return;
45         g_signal_emit_by_name(coreObject->wrapper(), "state-change", "checked", coreObject->isChecked());
46     }
47 }
48
49 void AXObjectCache::handleFocusedUIElementChanged(RenderObject* oldFocusedRender, RenderObject* newFocusedRender)
50 {
51     RefPtr<AccessibilityObject> oldObject = getOrCreate(oldFocusedRender);
52     if (oldObject) {
53         g_signal_emit_by_name(oldObject->wrapper(), "focus-event", false);
54         g_signal_emit_by_name(oldObject->wrapper(), "state-change", "focused", false);
55     }
56     RefPtr<AccessibilityObject> newObject = getOrCreate(newFocusedRender);
57     if (newObject) {
58         g_signal_emit_by_name(newObject->wrapper(), "focus-event", true);
59         g_signal_emit_by_name(newObject->wrapper(), "state-change", "focused", true);
60     }
61 }
62
63 void AXObjectCache::handleScrolledToAnchor(const Node*)
64 {
65 }
66
67 } // namespace WebCore