├── .clog.toml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── ChangeLog.txt ├── Doxyfile ├── LICENSE ├── README.md ├── browser_demo ├── CMakeLists.txt ├── browser_address_edit.cpp ├── browser_address_edit.h ├── browser_event_delegate.cpp ├── browser_event_delegate.h ├── browser_tab_bar.cpp ├── browser_tab_bar.h ├── browser_tab_widget.cpp ├── browser_tab_widget.h ├── browser_window.cpp ├── browser_window.h ├── channel.cpp ├── channel.h ├── images │ ├── document-new-symbolic.svg │ ├── document-print-symbolic.svg │ ├── firefox.png │ ├── go-next-symbolic.svg │ ├── go-previous-symbolic.svg │ ├── images.qrc │ ├── system-lock-screen-symbolic.svg │ ├── user-home-symbolic.svg │ ├── view-more-symbolic.svg │ ├── view-refresh-symbolic.svg │ ├── window-close-symbolic.svg │ ├── zoom-in-symbolic.svg │ ├── zoom-original-symbolic.svg │ └── zoom-out-symbolic.svg ├── main.cpp ├── resources │ ├── iframe.html │ ├── index.html │ ├── redirect.html │ ├── resources.qrc │ ├── script.js │ ├── style.css │ └── user_script.js ├── sync_methods.cpp └── sync_methods.h ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── libqcef-dev.install ├── libqcef1.install ├── libqcef1.lintian-overrides ├── rules └── source │ └── format ├── docs ├── cef.md └── proxy.md └── src ├── CMakeLists.txt ├── base ├── file_util.cpp ├── file_util.h └── macros.h ├── core ├── qcef_app.cpp ├── qcef_app.h ├── qcef_browser_transport.cpp ├── qcef_browser_transport.h ├── qcef_client_handler.cpp ├── qcef_client_handler.h ├── qcef_context.cpp ├── qcef_context.h ├── qcef_cookie_store.cpp ├── qcef_cookie_store.h ├── qcef_core_export.h ├── qcef_dialog_handler.cpp ├── qcef_dialog_handler.h ├── qcef_global_settings.cpp ├── qcef_global_settings.h ├── qcef_key_event_map.cpp ├── qcef_key_event_map.h ├── qcef_message_pump_handler.cpp ├── qcef_message_pump_handler.h ├── qcef_notification_constructor.cpp ├── qcef_notification_constructor.h ├── qcef_print_handler.cpp ├── qcef_print_handler.h ├── qcef_renderer_handler.cpp ├── qcef_renderer_handler.h ├── qcef_renderer_transport_handler.cpp ├── qcef_renderer_transport_handler.h ├── qcef_scheme_handler.h ├── qcef_scheme_handler_factory.cpp ├── qcef_scheme_handler_factory.h ├── qcef_string_visitor.cpp ├── qcef_string_visitor.h ├── qcef_sync_method.h ├── qcef_sync_method_handler.cpp ├── qcef_sync_method_handler.h ├── qcef_util.cpp ├── qcef_util.h ├── qcef_web_channel_consts.h ├── qcef_x11_util.cpp └── qcef_x11_util.h ├── data └── libqcef.pc.in ├── tests ├── notification_test.cpp ├── notification_window.cpp ├── notification_window.h ├── qt_version_test.cpp ├── web_demo.cpp └── xevent-tracer.c └── widgets ├── qcef_browser_event_delegate.cpp ├── qcef_browser_event_delegate.h ├── qcef_browser_event_delegate_p.h ├── qcef_client_handler_delegate.cpp ├── qcef_client_handler_delegate.h ├── qcef_native_event_filter.cpp ├── qcef_native_event_filter.h ├── qcef_notification_service.cpp ├── qcef_notification_service.h ├── qcef_ssl_status.h ├── qcef_web_page.cpp ├── qcef_web_page.h ├── qcef_web_settings.cpp ├── qcef_web_settings.h ├── qcef_web_view.cpp ├── qcef_web_view.h └── qcef_widgets_export.h /.clog.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/.clog.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/README.md -------------------------------------------------------------------------------- /browser_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/CMakeLists.txt -------------------------------------------------------------------------------- /browser_demo/browser_address_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_address_edit.cpp -------------------------------------------------------------------------------- /browser_demo/browser_address_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_address_edit.h -------------------------------------------------------------------------------- /browser_demo/browser_event_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_event_delegate.cpp -------------------------------------------------------------------------------- /browser_demo/browser_event_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_event_delegate.h -------------------------------------------------------------------------------- /browser_demo/browser_tab_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_tab_bar.cpp -------------------------------------------------------------------------------- /browser_demo/browser_tab_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_tab_bar.h -------------------------------------------------------------------------------- /browser_demo/browser_tab_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_tab_widget.cpp -------------------------------------------------------------------------------- /browser_demo/browser_tab_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_tab_widget.h -------------------------------------------------------------------------------- /browser_demo/browser_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_window.cpp -------------------------------------------------------------------------------- /browser_demo/browser_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/browser_window.h -------------------------------------------------------------------------------- /browser_demo/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/channel.cpp -------------------------------------------------------------------------------- /browser_demo/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/channel.h -------------------------------------------------------------------------------- /browser_demo/images/document-new-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/document-new-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/document-print-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/document-print-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/firefox.png -------------------------------------------------------------------------------- /browser_demo/images/go-next-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/go-next-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/go-previous-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/go-previous-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/images.qrc -------------------------------------------------------------------------------- /browser_demo/images/system-lock-screen-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/system-lock-screen-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/user-home-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/user-home-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/view-more-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/view-more-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/view-refresh-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/view-refresh-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/window-close-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/window-close-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/zoom-in-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/zoom-in-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/zoom-original-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/zoom-original-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/images/zoom-out-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/images/zoom-out-symbolic.svg -------------------------------------------------------------------------------- /browser_demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/main.cpp -------------------------------------------------------------------------------- /browser_demo/resources/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/resources/iframe.html -------------------------------------------------------------------------------- /browser_demo/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/resources/index.html -------------------------------------------------------------------------------- /browser_demo/resources/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/resources/redirect.html -------------------------------------------------------------------------------- /browser_demo/resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/resources/resources.qrc -------------------------------------------------------------------------------- /browser_demo/resources/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/resources/script.js -------------------------------------------------------------------------------- /browser_demo/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/resources/style.css -------------------------------------------------------------------------------- /browser_demo/resources/user_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/resources/user_script.js -------------------------------------------------------------------------------- /browser_demo/sync_methods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/sync_methods.cpp -------------------------------------------------------------------------------- /browser_demo/sync_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/browser_demo/sync_methods.h -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /debian/libqcef-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/debian/libqcef-dev.install -------------------------------------------------------------------------------- /debian/libqcef1.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/debian/libqcef1.install -------------------------------------------------------------------------------- /debian/libqcef1.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/debian/libqcef1.lintian-overrides -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /docs/cef.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- 1 | ## Network Proxy 2 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/base/file_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/base/file_util.cpp -------------------------------------------------------------------------------- /src/base/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/base/file_util.h -------------------------------------------------------------------------------- /src/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/base/macros.h -------------------------------------------------------------------------------- /src/core/qcef_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_app.cpp -------------------------------------------------------------------------------- /src/core/qcef_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_app.h -------------------------------------------------------------------------------- /src/core/qcef_browser_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_browser_transport.cpp -------------------------------------------------------------------------------- /src/core/qcef_browser_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_browser_transport.h -------------------------------------------------------------------------------- /src/core/qcef_client_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_client_handler.cpp -------------------------------------------------------------------------------- /src/core/qcef_client_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_client_handler.h -------------------------------------------------------------------------------- /src/core/qcef_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_context.cpp -------------------------------------------------------------------------------- /src/core/qcef_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_context.h -------------------------------------------------------------------------------- /src/core/qcef_cookie_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_cookie_store.cpp -------------------------------------------------------------------------------- /src/core/qcef_cookie_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_cookie_store.h -------------------------------------------------------------------------------- /src/core/qcef_core_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_core_export.h -------------------------------------------------------------------------------- /src/core/qcef_dialog_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_dialog_handler.cpp -------------------------------------------------------------------------------- /src/core/qcef_dialog_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_dialog_handler.h -------------------------------------------------------------------------------- /src/core/qcef_global_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_global_settings.cpp -------------------------------------------------------------------------------- /src/core/qcef_global_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_global_settings.h -------------------------------------------------------------------------------- /src/core/qcef_key_event_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_key_event_map.cpp -------------------------------------------------------------------------------- /src/core/qcef_key_event_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_key_event_map.h -------------------------------------------------------------------------------- /src/core/qcef_message_pump_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_message_pump_handler.cpp -------------------------------------------------------------------------------- /src/core/qcef_message_pump_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_message_pump_handler.h -------------------------------------------------------------------------------- /src/core/qcef_notification_constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_notification_constructor.cpp -------------------------------------------------------------------------------- /src/core/qcef_notification_constructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_notification_constructor.h -------------------------------------------------------------------------------- /src/core/qcef_print_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_print_handler.cpp -------------------------------------------------------------------------------- /src/core/qcef_print_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_print_handler.h -------------------------------------------------------------------------------- /src/core/qcef_renderer_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_renderer_handler.cpp -------------------------------------------------------------------------------- /src/core/qcef_renderer_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_renderer_handler.h -------------------------------------------------------------------------------- /src/core/qcef_renderer_transport_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_renderer_transport_handler.cpp -------------------------------------------------------------------------------- /src/core/qcef_renderer_transport_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_renderer_transport_handler.h -------------------------------------------------------------------------------- /src/core/qcef_scheme_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_scheme_handler.h -------------------------------------------------------------------------------- /src/core/qcef_scheme_handler_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_scheme_handler_factory.cpp -------------------------------------------------------------------------------- /src/core/qcef_scheme_handler_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_scheme_handler_factory.h -------------------------------------------------------------------------------- /src/core/qcef_string_visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_string_visitor.cpp -------------------------------------------------------------------------------- /src/core/qcef_string_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_string_visitor.h -------------------------------------------------------------------------------- /src/core/qcef_sync_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_sync_method.h -------------------------------------------------------------------------------- /src/core/qcef_sync_method_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_sync_method_handler.cpp -------------------------------------------------------------------------------- /src/core/qcef_sync_method_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_sync_method_handler.h -------------------------------------------------------------------------------- /src/core/qcef_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_util.cpp -------------------------------------------------------------------------------- /src/core/qcef_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_util.h -------------------------------------------------------------------------------- /src/core/qcef_web_channel_consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_web_channel_consts.h -------------------------------------------------------------------------------- /src/core/qcef_x11_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_x11_util.cpp -------------------------------------------------------------------------------- /src/core/qcef_x11_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/core/qcef_x11_util.h -------------------------------------------------------------------------------- /src/data/libqcef.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/data/libqcef.pc.in -------------------------------------------------------------------------------- /src/tests/notification_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/tests/notification_test.cpp -------------------------------------------------------------------------------- /src/tests/notification_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/tests/notification_window.cpp -------------------------------------------------------------------------------- /src/tests/notification_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/tests/notification_window.h -------------------------------------------------------------------------------- /src/tests/qt_version_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/tests/qt_version_test.cpp -------------------------------------------------------------------------------- /src/tests/web_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/tests/web_demo.cpp -------------------------------------------------------------------------------- /src/tests/xevent-tracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/tests/xevent-tracer.c -------------------------------------------------------------------------------- /src/widgets/qcef_browser_event_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_browser_event_delegate.cpp -------------------------------------------------------------------------------- /src/widgets/qcef_browser_event_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_browser_event_delegate.h -------------------------------------------------------------------------------- /src/widgets/qcef_browser_event_delegate_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_browser_event_delegate_p.h -------------------------------------------------------------------------------- /src/widgets/qcef_client_handler_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_client_handler_delegate.cpp -------------------------------------------------------------------------------- /src/widgets/qcef_client_handler_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_client_handler_delegate.h -------------------------------------------------------------------------------- /src/widgets/qcef_native_event_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_native_event_filter.cpp -------------------------------------------------------------------------------- /src/widgets/qcef_native_event_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_native_event_filter.h -------------------------------------------------------------------------------- /src/widgets/qcef_notification_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_notification_service.cpp -------------------------------------------------------------------------------- /src/widgets/qcef_notification_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_notification_service.h -------------------------------------------------------------------------------- /src/widgets/qcef_ssl_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_ssl_status.h -------------------------------------------------------------------------------- /src/widgets/qcef_web_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_web_page.cpp -------------------------------------------------------------------------------- /src/widgets/qcef_web_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_web_page.h -------------------------------------------------------------------------------- /src/widgets/qcef_web_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_web_settings.cpp -------------------------------------------------------------------------------- /src/widgets/qcef_web_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_web_settings.h -------------------------------------------------------------------------------- /src/widgets/qcef_web_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_web_view.cpp -------------------------------------------------------------------------------- /src/widgets/qcef_web_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_web_view.h -------------------------------------------------------------------------------- /src/widgets/qcef_widgets_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyr-deepin/qcef/HEAD/src/widgets/qcef_widgets_export.h --------------------------------------------------------------------------------