Imported Upstream version 6.6.0.129
Former-commit-id: 5252f8cfe37b84003acc4bfe0fa11691f0daf9fd
This commit is contained in:
parent
907f629e4f
commit
4edc784e8b
@ -1 +1 @@
|
||||
e99de790e27e54ae0cbce0db611ab735386b06d2
|
||||
5ff3337832dd9373631c72289f1972a02ecaffe9
|
@ -1 +1 @@
|
||||
2126007ad631362e44600237a94b76bc10cb7be7
|
||||
e745c73cd7c45328cc765d02bab525b7edb8d184
|
4
external/bockbuild/packages/gtk+.py
vendored
4
external/bockbuild/packages/gtk+.py
vendored
@ -224,7 +224,9 @@ class GtkPackage (GitHubPackage):
|
||||
|
||||
# https://devdiv.visualstudio.com/DevDiv/_workitems/edit/821841
|
||||
'patches/gtk/nsview-embedding-skip-hidden-subviews.patch',
|
||||
'patches/gtk/0001-gtk-combo-box-native-menu-hook.patch'
|
||||
'patches/gtk/0001-gtk-combo-box-native-menu-hook.patch',
|
||||
|
||||
'patches/gtk/gtkviewport-autoscroll.patch'
|
||||
])
|
||||
|
||||
def prep(self):
|
||||
|
109
external/bockbuild/packages/patches/gtk/gtkviewport-autoscroll.patch
vendored
Normal file
109
external/bockbuild/packages/patches/gtk/gtkviewport-autoscroll.patch
vendored
Normal file
@ -0,0 +1,109 @@
|
||||
diff --git a/gtk/gtkviewport.c b/gtk/gtkviewport.c
|
||||
index e564b9af5..24dd9f099 100644
|
||||
--- a/gtk/gtkviewport.c
|
||||
+++ b/gtk/gtkviewport.c
|
||||
@@ -26,6 +26,7 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "gtkviewport.h"
|
||||
+#include "gtkwindow.h"
|
||||
#include "gtkintl.h"
|
||||
#include "gtkmarshalers.h"
|
||||
#include "gtkprivate.h"
|
||||
@@ -87,6 +88,8 @@ static void gtk_viewport_adjustment_value_changed (GtkAdjustment *adjustment,
|
||||
gpointer data);
|
||||
static void gtk_viewport_style_set (GtkWidget *widget,
|
||||
GtkStyle *previous_style);
|
||||
+static void gtk_viewport_set_focus_child (GtkContainer *container,
|
||||
+ GtkWidget *child);
|
||||
|
||||
G_DEFINE_TYPE (GtkViewport, gtk_viewport, GTK_TYPE_BIN)
|
||||
|
||||
@@ -114,8 +117,9 @@ gtk_viewport_class_init (GtkViewportClass *class)
|
||||
widget_class->size_request = gtk_viewport_size_request;
|
||||
widget_class->size_allocate = gtk_viewport_size_allocate;
|
||||
widget_class->style_set = gtk_viewport_style_set;
|
||||
-
|
||||
+
|
||||
container_class->add = gtk_viewport_add;
|
||||
+ container_class->set_focus_child = gtk_viewport_set_focus_child;
|
||||
|
||||
class->set_scroll_adjustments = gtk_viewport_set_scroll_adjustments;
|
||||
|
||||
@@ -758,6 +762,76 @@ gtk_viewport_add (GtkContainer *container,
|
||||
GTK_CONTAINER_CLASS (gtk_viewport_parent_class)->add (container, child);
|
||||
}
|
||||
|
||||
+static gboolean
|
||||
+set_focus_child_cb (gpointer data)
|
||||
+{
|
||||
+ GtkWidget *widget;
|
||||
+ GtkViewport *viewport;
|
||||
+ GtkWidget *toplevel;
|
||||
+ GtkWidget *focus;
|
||||
+ GtkAdjustment *adj;
|
||||
+ int x, y;
|
||||
+ GtkAllocation widget_alloc;
|
||||
+ GtkAllocation focus_alloc;
|
||||
+ gdouble value;
|
||||
+
|
||||
+ widget = (GtkWidget *)data;
|
||||
+ g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
|
||||
+
|
||||
+ toplevel = gtk_widget_get_toplevel (widget);
|
||||
+ g_return_val_if_fail (GTK_IS_WIDGET (toplevel), FALSE);
|
||||
+
|
||||
+ focus = gtk_window_get_focus (GTK_WINDOW (toplevel));
|
||||
+ if (focus == NULL)
|
||||
+ return FALSE;
|
||||
+
|
||||
+ viewport = GTK_VIEWPORT (widget);
|
||||
+
|
||||
+ gtk_widget_get_allocation (focus, &focus_alloc);
|
||||
+ gtk_widget_get_allocation (widget, &widget_alloc);
|
||||
+ gtk_widget_translate_coordinates (focus, widget, 0, 0, &x, &y);
|
||||
+
|
||||
+ /* Do we need to move vertically? */
|
||||
+ if (y + focus_alloc.height >= widget_alloc.height)
|
||||
+ {
|
||||
+ adj = gtk_viewport_get_vadjustment (viewport);
|
||||
+ value = gtk_adjustment_get_value (adj) + (y + focus_alloc.height - widget_alloc.height);
|
||||
+ gtk_adjustment_set_value (adj, value);
|
||||
+ }
|
||||
+ else if (y <= widget_alloc.y)
|
||||
+ {
|
||||
+ adj = gtk_viewport_get_vadjustment (viewport);
|
||||
+ value = gtk_adjustment_get_value (adj) - (widget_alloc.y - y);
|
||||
+ gtk_adjustment_set_value (adj, value);
|
||||
+ }
|
||||
+
|
||||
+ /* Do we need to move horizontally? */
|
||||
+ if (x + focus_alloc.width >= widget_alloc.width)
|
||||
+ {
|
||||
+ adj = gtk_viewport_get_hadjustment (viewport);
|
||||
+ value = gtk_adjustment_get_value (adj) + (x + focus_alloc.width - widget_alloc.width);
|
||||
+ gtk_adjustment_set_value (adj, value);
|
||||
+ }
|
||||
+ else if (x <= widget_alloc.x)
|
||||
+ {
|
||||
+ adj = gtk_viewport_get_hadjustment (viewport);
|
||||
+ value = gtk_adjustment_get_value (adj) - (widget_alloc.x - x);
|
||||
+ gtk_adjustment_set_value (adj, value);
|
||||
+ }
|
||||
+
|
||||
+ return FALSE;
|
||||
+}
|
||||
+
|
||||
+static void
|
||||
+gtk_viewport_set_focus_child (GtkContainer *container,
|
||||
+ GtkWidget *child)
|
||||
+{
|
||||
+ if (child == NULL)
|
||||
+ return;
|
||||
+
|
||||
+ g_idle_add (set_focus_child_cb, container);
|
||||
+}
|
||||
+
|
||||
static void
|
||||
gtk_viewport_size_request (GtkWidget *widget,
|
||||
GtkRequisition *requisition)
|
@ -41,7 +41,7 @@ static partial class Consts
|
||||
// Use these assembly version constants to make code more maintainable.
|
||||
//
|
||||
|
||||
public const string MonoVersion = "6.6.0.128";
|
||||
public const string MonoVersion = "6.6.0.129";
|
||||
public const string MonoCompany = "Mono development team";
|
||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||
public const string MonoCopyright = "(c) Various Mono authors";
|
||||
|
@ -1 +1 @@
|
||||
89e45ec332a791625f1f00a79c83866a1f50581f
|
||||
300722a98a05bc31dfb3f3fc97aaa86152d6626e
|
@ -1 +1 @@
|
||||
f3666c75cf299935ce7d98afad77e3fd806a5947
|
||||
6ab34de67290bcc7a0088ecd8c8317e457e9bb61
|
@ -1 +1 @@
|
||||
6afe3d0aaf1b20c05b5970c395988505e6d81484
|
||||
0fb6236afda1dcfd99e4adca17530b21360700af
|
@ -1 +1 @@
|
||||
79c868774947b3efa0ece81712bb568df8b4927c
|
||||
a1eaa2f68f534f2c4b2ee4b1f772f15b1b67bdcc
|
@ -1 +1 @@
|
||||
74f03df4b3bc6d6f248f883fc145547b03970ad9
|
||||
32f2b24aaa0b03c517b78e71da24e365056ee71f
|
@ -1 +1 @@
|
||||
bf559e19a4204224fdaa8166a68a938e4e567afb
|
||||
2c1857d6aec99e5872da9a31885a3e7ff8d06ced
|
@ -1 +1 @@
|
||||
0a008b2c7a75809e566ef96fa411184427d72072
|
||||
e024162eae00395b415cd344e804a4ac0a841e3a
|
@ -1 +1 @@
|
||||
89e45ec332a791625f1f00a79c83866a1f50581f
|
||||
300722a98a05bc31dfb3f3fc97aaa86152d6626e
|
@ -1 +1 @@
|
||||
f3666c75cf299935ce7d98afad77e3fd806a5947
|
||||
6ab34de67290bcc7a0088ecd8c8317e457e9bb61
|
@ -1 +1 @@
|
||||
6afe3d0aaf1b20c05b5970c395988505e6d81484
|
||||
0fb6236afda1dcfd99e4adca17530b21360700af
|
@ -1 +1 @@
|
||||
79c868774947b3efa0ece81712bb568df8b4927c
|
||||
a1eaa2f68f534f2c4b2ee4b1f772f15b1b67bdcc
|
@ -1 +1 @@
|
||||
74f03df4b3bc6d6f248f883fc145547b03970ad9
|
||||
32f2b24aaa0b03c517b78e71da24e365056ee71f
|
@ -1 +1 @@
|
||||
bf559e19a4204224fdaa8166a68a938e4e567afb
|
||||
2c1857d6aec99e5872da9a31885a3e7ff8d06ced
|
@ -1 +1 @@
|
||||
9003fa9a075495eb5b115a722c5d7a46b2d5c5a0
|
||||
70caf6f317b845757690c33fa4621758452fd86b
|
@ -1 +1 @@
|
||||
0a008b2c7a75809e566ef96fa411184427d72072
|
||||
e024162eae00395b415cd344e804a4ac0a841e3a
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user