Skip to content

CefView/QCefView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QCefView

Introduction

QCefView is a Qt-based QWidget that encapsulates CEF (Chromium Embedded Framework). With QCefView, you can build your application UI using modern frontend development techniques, boosting project efficiency while keeping UI and business logic decoupled. Most importantly, QCefView enables seamless CEF integration within Qt applications.

Build Status

Platform Lastest Build Status OSR Production Ready NCW Production Ready
Windows-x86_64 Build on Windows ✔️ ✔️
macOS-x86_64 Build on macOS ✔️ ✔️
Linux-x86_64 Build on Linux ✔️
  • OSR = Offscreen Rendering Mode
  • NCW = Native Child Window Mode

Feature Status

Platform NCW
CEF All Versions
OSR - Software Rendering
CEF All Versions
OSR - Hardware Rendering
CEF 125+
Windows ✔️ ✔️ ✔️ (DirectX 11)
MacOS ✔️ ✔️ ❌ WIP (Metal)
Linux ✔️ ✔️ ❌ WIP (OpenGL)

WIP (Work In Progress): Features under development, no guaranteed release date.


Quick Start

Clone the Project

git clone https://github.com/CefView/QCefView.git

The dependency on CefViewCore has been converted to CMake FetchContent, meaning submodules are no longer required. Refer to: cmake/CefViewCoreConfig.cmake for more details.

Documentation

Find the latest documentation here:

These resources will help you quickly understand and integrate QCefView into your projects.


OSR Mode & Hardware Acceleration

QCefView supports CEF offscreen rendering mode (OSR), which is enabled by default. To disable OSR mode, set setWindowlessRenderingEnabled to false in the configuration:

QCefConfig config;

// OSR (Windowless Rendering) is enabled by default
// Set to false to disable OSR mode
config.setWindowlessRenderingEnabled(false);

Enabling Hardware Acceleration (CEF 125+)

Starting from CEF 125+, GPU resource sharing is generally available. QCefView now supports hardware acceleration for OSR mode. To enable it:

QCefSetting setting;

// Enable hardware renderer (only applicable in OSR mode)
setting.setHardwareAcceleration(true);

// Set frame rate limit
setting.setWindowlessFrameRate(240);

// Create the QCefView widget
auto qCefViewWidget = new QCefView("https://www.testufo.com/", &setting);

The performance comparison:


Software VS Hardware Rendering

Contributing

We welcome contributions and suggestions! To maintain consistency, please ensure your code adheres to the style defined in .clang-format.

How You Can Contribute

  • 📌 Solve an issue (e.g., answer a question in the Issues section or Gitter chat)
  • 🛠 Fix a bug or report one
  • 📖 Improve documentation (even fixing typos helps!)

If you're interested in becoming a QCefView maintainer (e.g., merging PRs, triaging issues), please contact me via email: sheentianshen#gmail.com. I'm happy to help set the right permissions for you.


💡 Let's build a better QCefView together! 🚀