mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	ChromeCommandDispatcherDelegate forwards accelerator events to the FocusManager through NativeWidgetMacNSWindowHost:: HandleAccelerator. Always initialize it so that accelerators also work in a CefWindow without a BrowserView.
		
			
				
	
	
		
			59 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2023 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_NATIVE_WIDGET_MAC_H_
 | 
						|
#define CEF_LIBCEF_BROWSER_VIEWS_NATIVE_WIDGET_MAC_H_
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "base/memory/raw_ptr.h"
 | 
						|
#include "cef/include/internal/cef_ptr.h"
 | 
						|
#include "ui/views/widget/native_widget_mac.h"
 | 
						|
 | 
						|
class BrowserView;
 | 
						|
class CefWindow;
 | 
						|
class CefWindowDelegate;
 | 
						|
 | 
						|
class CefNativeWidgetMac : public views::NativeWidgetMac {
 | 
						|
 public:
 | 
						|
  CefNativeWidgetMac(views::internal::NativeWidgetDelegate* delegate,
 | 
						|
                     CefRefPtr<CefWindow> window,
 | 
						|
                     CefWindowDelegate* window_delegate);
 | 
						|
  ~CefNativeWidgetMac() override = default;
 | 
						|
 | 
						|
  CefNativeWidgetMac(const CefNativeWidgetMac&) = delete;
 | 
						|
  CefNativeWidgetMac& operator=(const CefNativeWidgetMac&) = delete;
 | 
						|
 | 
						|
  void SetBrowserView(BrowserView* browser_view);
 | 
						|
 | 
						|
  // NativeWidgetMac:
 | 
						|
  void ValidateUserInterfaceItem(
 | 
						|
      int32_t command,
 | 
						|
      remote_cocoa::mojom::ValidateUserInterfaceItemResult* result) override;
 | 
						|
  bool WillExecuteCommand(int32_t command,
 | 
						|
                          WindowOpenDisposition window_open_disposition,
 | 
						|
                          bool is_before_first_responder) override;
 | 
						|
  bool ExecuteCommand(int32_t command,
 | 
						|
                      WindowOpenDisposition window_open_disposition,
 | 
						|
                      bool is_before_first_responder) override;
 | 
						|
  NativeWidgetMacNSWindow* CreateNSWindow(
 | 
						|
      const remote_cocoa::mojom::CreateWindowParams* params) override;
 | 
						|
  void GetWindowFrameTitlebarHeight(bool* override_titlebar_height,
 | 
						|
                                    float* titlebar_height) override;
 | 
						|
  void OnWindowFullscreenTransitionStart() override;
 | 
						|
  void OnWindowFullscreenTransitionComplete() override;
 | 
						|
  void OnWindowInitialized() override;
 | 
						|
 | 
						|
 private:
 | 
						|
  const CefRefPtr<CefWindow> window_;
 | 
						|
  const raw_ptr<CefWindowDelegate> window_delegate_;
 | 
						|
 | 
						|
  // Returns true if the CefWindow is fully initialized.
 | 
						|
  bool IsCefWindowInitialized() const;
 | 
						|
 | 
						|
  raw_ptr<BrowserView, AcrossTasksDanglingUntriaged> browser_view_ = nullptr;
 | 
						|
  bool initialized_ = false;
 | 
						|
};
 | 
						|
 | 
						|
#endif  // CEF_LIBCEF_BROWSER_VIEWS_NATIVE_WIDGET_MAC_H_
 |