36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
|
// Copyright 2016 The Chromium Embedded Framework 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 "libcef/browser/views/textfield_view.h"
|
||
|
|
||
|
#include "libcef/browser/browser_util.h"
|
||
|
|
||
|
CefTextfieldView::CefTextfieldView(CefTextfieldDelegate* cef_delegate)
|
||
|
: ParentClass(cef_delegate) {
|
||
|
set_controller(this);
|
||
|
|
||
|
// Use our defaults instead of the Views framework defaults.
|
||
|
SetFontList(gfx::FontList(view_util::kDefaultFontList));
|
||
|
}
|
||
|
|
||
|
bool CefTextfieldView::HandleKeyEvent(views::Textfield* sender,
|
||
|
const ui::KeyEvent& key_event) {
|
||
|
DCHECK_EQ(sender, this);
|
||
|
|
||
|
if (!cef_delegate())
|
||
|
return false;
|
||
|
|
||
|
CefKeyEvent cef_key_event;
|
||
|
if (!browser_util::GetCefKeyEvent(key_event, cef_key_event))
|
||
|
return false;
|
||
|
|
||
|
return cef_delegate()->OnKeyEvent(GetCefTextfield(), cef_key_event);
|
||
|
}
|
||
|
|
||
|
void CefTextfieldView::OnAfterUserAction(views::Textfield* sender) {
|
||
|
DCHECK_EQ(sender, this);
|
||
|
if (cef_delegate())
|
||
|
cef_delegate()->OnAfterUserAction(GetCefTextfield());
|
||
|
}
|