mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 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/menu_runner_views.h"
 | 
						|
 | 
						|
#include "libcef/browser/alloy/alloy_browser_host_impl.h"
 | 
						|
#include "libcef/browser/views/browser_view_impl.h"
 | 
						|
 | 
						|
CefMenuRunnerViews::CefMenuRunnerViews(CefBrowserViewImpl* browser_view)
 | 
						|
    : browser_view_(browser_view) {}
 | 
						|
 | 
						|
bool CefMenuRunnerViews::RunContextMenu(
 | 
						|
    AlloyBrowserHostImpl* browser,
 | 
						|
    CefMenuModelImpl* model,
 | 
						|
    const content::ContextMenuParams& params) {
 | 
						|
  CefRefPtr<CefWindow> window = browser_view_->GetWindow();
 | 
						|
  if (!window)
 | 
						|
    return false;
 | 
						|
 | 
						|
  CefPoint screen_point(params.x, params.y);
 | 
						|
  browser_view_->ConvertPointToScreen(screen_point);
 | 
						|
 | 
						|
  window->ShowMenu(model, screen_point, CEF_MENU_ANCHOR_TOPRIGHT);
 | 
						|
  return true;
 | 
						|
}
 | 
						|
 | 
						|
void CefMenuRunnerViews::CancelContextMenu() {
 | 
						|
  CefRefPtr<CefWindow> window = browser_view_->GetWindow();
 | 
						|
  if (window)
 | 
						|
    window->CancelMenu();
 | 
						|
}
 | 
						|
 | 
						|
bool CefMenuRunnerViews::FormatLabel(std::u16string& label) {
 | 
						|
  // Remove the accelerator indicator (&) from label strings.
 | 
						|
  const std::u16string::value_type replace[] = {L'&', 0};
 | 
						|
  return base::ReplaceChars(label, replace, std::u16string(), &label);
 | 
						|
}
 |