Overview   Project   Class   Tree   Index 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Class CefTextfieldDelegate

CefBaseRefCounted
   |
   +--CefViewDelegate
         |
         +--CefTextfieldDelegate

   in cef_textfield_delegate.h

class CefTextfieldDelegate
extends CefViewDelegate

Implement this interface to handle Textfield events. The methods of this class will be called on the browser process UI thread unless otherwise indicated.


Method Summary
 virtual void OnAfterUserAction( CefRefPtr< CefTextfield > textfield )
          Called after performing a user action that may change |textfield|.
 virtual bool OnKeyEvent( CefRefPtr< CefTextfield > textfield, const CefKeyEvent& event )
          Called when |textfield| recieves a keyboard event.
   
Methods inherited from class CefViewDelegate
GetPreferredSize, GetMinimumSize, GetMaximumSize, GetHeightForWidth, OnParentViewChanged, OnChildViewChanged, OnFocus, OnBlur
   
Methods inherited from class CefBaseRefCounted
AddRef, Release, HasOneRef, HasAtLeastOneRef
 

Method Detail

OnAfterUserAction

public virtual void OnAfterUserAction( CefRefPtr< CefTextfield > textfield );
Called after performing a user action that may change |textfield|.

OnKeyEvent

public virtual bool OnKeyEvent( CefRefPtr< CefTextfield > textfield, const CefKeyEvent& event );
Called when |textfield| recieves a keyboard event. |event| contains information about the keyboard event. Return true if the keyboard event was handled or false otherwise for default handling.

 Overview   Project   Class   Tree   Index 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2016 Marshall A. Greenblatt