leashi / QCefView

A Qt Widget encapsulated CEF view based on QWidget

Home Page:https://cefview.github.io/QCefView/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

QCefView is a Qt based QWidget which encapsulates CEF. With QCefView you can build your application UI in frontend developing way to boost your project. And what's more you can completely decouple the UI and business logic in your project.

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

About OSR mode

QCefView supports CEF offscreen rendering mode, to enable OSR mode just add switch USE_OSR=ON (Currently OSR is the default mode, so you don't need to add this switch. If you want to switch to NCW mode, just add switch USE_OSR=OFF) during the CMake configuring stage (Do not forget to clear the cache generated by previous configuration).

QCefView currently uses Qt Software Rasterizer as the backend paint engine for best compatibility, thus the rendering performance is not so good to be applied for all business scenarios. If you are going to host WegGL games, video sites or some other Web Apps with high rendering performance, Non OSR mode (Native Child Window mode) is recommended.

Why not OpenGL/DirectX/Metal?

QCefView was designed to be a common Qt widget for Desktop application, so the compatibility is the first important requirement. We can switch the backend engine from Software Rasterizer to OpenGL/DirectX/Metal but this will increase the complexity and decrease the compatibility of QCefView.

For example if we use OpenGL as the backend engine then all the applications with QCefView introduced will be switched to OpenGL backend automatically. I believe not all users want this to happen.

DirectX/Metal are platform dependent and they are not supported natively by Qt. If we provide QCefView with extra dependencies individually, this makes QCefView so different with other components in Qt Framework.

But if you must use OSR and the rendering performance is vital, you can try to switch the backend with whatever you want.

Contributing

This project welcomes contributions and suggestions. Make sure to align your code style with the configuration defined by .clang-format file

Making contributions is not a hard thing.

  • Solving an issue(maybe just answering a question raised in issues list or gitter)
  • Fixing/Issuing a bug
  • Improving the documents and even fixing a typo

are important contributions to QCefView If you would like to become one of QCefView's maintainers to contribute more (e.g. help merge PR, triage issues), please contact me by email(sheentianshen#gmail.com). I am glad to help you to set the right permission.

About

A Qt Widget encapsulated CEF view based on QWidget

https://cefview.github.io/QCefView/

License:GNU Lesser General Public License v2.1


Languages

Language:C++ 86.5%Language:CMake 7.8%Language:Objective-C++ 2.5%Language:HTML 1.7%Language:Shell 0.9%Language:Batchfile 0.3%Language:C 0.3%