[gtk+/wip/baedert/box] window: Remove decoration-resize-handle style property



commit ff0997a7187bd200e02ee83fbeb2f881f3710e42
Author: Timm Bäder <mail baedert org>
Date:   Sat Oct 15 21:55:38 2016 +0200

    window: Remove decoration-resize-handle style property

 gtk/gtkwindow.c |   17 ++++-------------
 1 files changed, 4 insertions(+), 13 deletions(-)
---
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
index 5463dc2..6cca69e 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -150,6 +150,7 @@
  */
 
 #define MENU_BAR_ACCEL "F10"
+#define RESIZE_HANDLE_SIZE 20
 #define MNEMONICS_DELAY 300 /* ms */
 #define NO_CONTENT_CHILD_NAT 200
 /* In case the content (excluding header bar and shadows) of the window
@@ -1069,13 +1070,6 @@ gtk_window_class_init (GtkWindowClass *klass)
                                                                 "menu:close",
                                                                 GTK_PARAM_READABLE|G_PARAM_DEPRECATED));
 
-  gtk_widget_class_install_style_property (widget_class,
-                                           g_param_spec_int ("decoration-resize-handle",
-                                                             P_("Decoration resize handle size"),
-                                                             P_("Decoration resize handle size"),
-                                                             0, G_MAXINT,
-                                                             20, GTK_PARAM_READWRITE));
-
   /**
    * GtkWindow:set-focus:
    * @window: the window which received the signal
@@ -6508,7 +6502,7 @@ update_border_windows (GtkWindow *window)
   GtkWidget *widget = (GtkWidget *)window;
   GtkWindowPrivate *priv = window->priv;
   gboolean resize_h, resize_v;
-  gint handle, handle_h, handle_v;
+  gint handle_h, handle_v;
   cairo_region_t *region;
   cairo_rectangle_int_t rect;
   gint width, height;
@@ -6527,9 +6521,6 @@ update_border_windows (GtkWindow *window)
   sum_borders (&border, &tmp);
   gtk_style_context_get_padding (context, &tmp);
   sum_borders (&border, &tmp);
-  gtk_widget_style_get (widget,
-                        "decoration-resize-handle", &handle,
-                        NULL);
   gtk_style_context_restore (context);
   get_shadow_width (window, &window_border);
 
@@ -6551,8 +6542,8 @@ update_border_windows (GtkWindow *window)
   width = gtk_widget_get_allocated_width (widget) - (window_border.left + window_border.right);
   height = gtk_widget_get_allocated_height (widget) - (window_border.top + window_border.bottom);
 
-  handle_h = MIN (handle, width / 2);
-  handle_v = MIN (handle, height / 2);
+  handle_h = MIN (RESIZE_HANDLE_SIZE, width / 2);
+  handle_v = MIN (RESIZE_HANDLE_SIZE, height / 2);
 
   if (resize_h && resize_v)
     {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]