cdf2b3f4e4
* fix: don't call X11 functions in file dialog and message box * refactor: remove unused GtkUiPlatform declaration * fix: set gtk darktheme only when running under X11 * fix: replace X11 window state watcher with implementation using ozone * fix: make sure global menu barr is used only when supported * fix: don't call X11 function in native window views under wayland * style: fix lint issues * fix: use GtkUiPlatform::ShowGtkWindow instead of gtk_window_present directly * refactor: extract CreateGlobalMenuBar into separate function * refactor: move checking for WaylandWindowDecorations inside class * fix: check if we run under X11 only in ozone build * refactor: drop including unused ui/base/ui_base_features.h header * fix: modify ui_gtk_public_header.patch to also export gtk_ui.h * fix: refactor guarding of X11 calls - Introduce patch exposing new electron_can_call_x11 property - Replace defined(USE_OZONE) with BUILDFLAG(OZONE_PLATFORM_X11) flags * fix: remove the last remaining usage of USE_X11 * fix: usage of BUILDFLAG(OZONE_PLATFORM_X11) not building on non ozone * fix: call UpdateWindowState from OnBoundsChanged only under X11
38 lines
1.1 KiB
Diff
38 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: deepak1556 <hop2deep@gmail.com>
|
|
Date: Fri, 10 Apr 2020 17:47:18 -0700
|
|
Subject: ui_gtk_public_header.patch
|
|
|
|
Allow electron to depend on gtk_util.h and gtk_ui.h from //ui/gtk/
|
|
|
|
diff --git a/ui/gtk/BUILD.gn b/ui/gtk/BUILD.gn
|
|
index 4093df78da0bbb1d8df743942f364cf728ad3414..2f7c404307bfebb0e2890148cf9b0d6d9c68094f 100644
|
|
--- a/ui/gtk/BUILD.gn
|
|
+++ b/ui/gtk/BUILD.gn
|
|
@@ -69,7 +69,11 @@ generate_stubs("gtk_stubs") {
|
|
}
|
|
|
|
component("gtk") {
|
|
- public = [ "gtk_ui_factory.h" ]
|
|
+ public = [
|
|
+ "gtk_ui.h",
|
|
+ "gtk_ui_factory.h",
|
|
+ "gtk_util.h",
|
|
+ ]
|
|
|
|
sources = [
|
|
"gtk_color_mixers.cc",
|
|
@@ -79,13 +83,11 @@ component("gtk") {
|
|
"gtk_key_bindings_handler.cc",
|
|
"gtk_key_bindings_handler.h",
|
|
"gtk_ui.cc",
|
|
- "gtk_ui.h",
|
|
"gtk_ui_factory.cc",
|
|
"gtk_ui_platform.h",
|
|
"gtk_ui_platform_stub.cc",
|
|
"gtk_ui_platform_stub.h",
|
|
"gtk_util.cc",
|
|
- "gtk_util.h",
|
|
"input_method_context_impl_gtk.cc",
|
|
"input_method_context_impl_gtk.h",
|
|
"native_theme_gtk.cc",
|