blob: b321c30219e76f853df85c543c8edbd9950c4d06 (
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
|
// Copyright (c) 2006-2009 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 "chrome/browser/views/dropdown_bar_host.h"
#include <gdk/gdkkeysyms.h>
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/browser/views/frame/browser_view.h"
#include "views/widget/widget_gtk.h"
#include "views/controls/textfield/textfield.h"
#if defined(TOUCH_UI)
#include "app/keyboard_code_conversion_gtk.h"
#endif
views::Widget* DropdownBarHost::CreateHost() {
views::WidgetGtk* host = new views::WidgetGtk(views::WidgetGtk::TYPE_CHILD);
// We own the host.
host->set_delete_on_destroy(false);
return host;
}
void DropdownBarHost::SetWidgetPositionNative(const gfx::Rect& new_pos,
bool no_redraw) {
host_->SetBounds(new_pos);
host_->Show();
}
NativeWebKeyboardEvent DropdownBarHost::GetKeyboardEvent(
const TabContents* contents,
const views::Textfield::Keystroke& key_stroke) {
#if defined(TOUCH_UI)
// TODO(oshima): This is a copy from
// RenderWidgetHostViewViews::OnKeyPressed().
// Refactor and eliminate the dup code.
const views::KeyEvent& e = key_stroke.key_event();
NativeWebKeyboardEvent wke;
wke.type = WebKit::WebInputEvent::KeyDown;
wke.windowsKeyCode = e.GetKeyCode();
wke.setKeyIdentifierFromWindowsKeyCode();
wke.text[0] = wke.unmodifiedText[0] =
static_cast<unsigned short>(gdk_keyval_to_unicode(
app::GdkKeyCodeForWindowsKeyCode(e.GetKeyCode(),
e.IsShiftDown() ^ e.IsCapsLockDown())));
return wke;
#else
return NativeWebKeyboardEvent(key_stroke.event());
#endif
}
|