mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Also perform related C++ cleanup:
- Use =default instead of {} for default implementations of
  constructors/destructors.
- Replace typedef with using.
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.5 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.
 | |
| 
 | |
| #ifndef CEF_LIBCEF_BROWSER_VIEWS_TEXTFIELD_VIEW_H_
 | |
| #define CEF_LIBCEF_BROWSER_VIEWS_TEXTFIELD_VIEW_H_
 | |
| #pragma once
 | |
| 
 | |
| #include "include/views/cef_textfield_delegate.h"
 | |
| 
 | |
| #include "include/views/cef_textfield.h"
 | |
| #include "libcef/browser/views/view_view.h"
 | |
| 
 | |
| #include "ui/views/controls/textfield/textfield.h"
 | |
| #include "ui/views/controls/textfield/textfield_controller.h"
 | |
| 
 | |
| class CefTextfieldView
 | |
|     : public CefViewView<views::Textfield, CefTextfieldDelegate>,
 | |
|       public views::TextfieldController {
 | |
|  public:
 | |
|   using ParentClass = CefViewView<views::Textfield, CefTextfieldDelegate>;
 | |
| 
 | |
|   // |cef_delegate| may be nullptr.
 | |
|   explicit CefTextfieldView(CefTextfieldDelegate* cef_delegate);
 | |
| 
 | |
|   CefTextfieldView(const CefTextfieldView&) = delete;
 | |
|   CefTextfieldView& operator=(const CefTextfieldView&) = delete;
 | |
| 
 | |
|   void Initialize() override;
 | |
| 
 | |
|   // Returns the CefTextfield associated with this view. See comments on
 | |
|   // CefViewView::GetCefView.
 | |
|   CefRefPtr<CefTextfield> GetCefTextfield() const {
 | |
|     CefRefPtr<CefTextfield> textfield = GetCefView()->AsTextfield();
 | |
|     DCHECK(textfield);
 | |
|     return textfield;
 | |
|   }
 | |
| 
 | |
|   // TextfieldController methods:
 | |
|   bool HandleKeyEvent(views::Textfield* sender,
 | |
|                       const ui::KeyEvent& key_event) override;
 | |
|   void OnAfterUserAction(views::Textfield* sender) override;
 | |
| };
 | |
| 
 | |
| #endif  // CEF_LIBCEF_BROWSER_VIEWS_TEXTFIELD_VIEW_H_
 |