[gtk+/wip/otte/gadget: 1/30] treeview: Remove "row" and "col" regions
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/otte/gadget: 1/30] treeview: Remove "row" and "col" regions
- Date: Sun, 11 Oct 2015 18:18:31 +0000 (UTC)
commit 825931d62b64abbda40cb2fbb0a2744917f8f6eb
Author: Benjamin Otte <otte redhat com>
Date: Sat Sep 5 21:44:13 2015 +0200
treeview: Remove "row" and "col" regions
They aren't used by the theme and we want to get rid of regions.
gtk/gtktreeview.c | 64 +----------------------------------------------------
1 files changed, 1 insertions(+), 63 deletions(-)
---
diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c
index 3eec8e4..44e8e4d 100644
--- a/gtk/gtktreeview.c
+++ b/gtk/gtktreeview.c
@@ -5012,8 +5012,6 @@ gtk_tree_view_bin_draw (GtkWidget *widget,
do
{
gboolean is_separator = FALSE;
- gboolean is_first = FALSE;
- gboolean is_last = FALSE;
gint n_col = 0;
parity = !parity;
@@ -5059,7 +5057,6 @@ gtk_tree_view_bin_draw (GtkWidget *widget,
list = (rtl ? list->prev : list->next))
{
GtkTreeViewColumn *column = list->data;
- GtkRegionFlags row_flags = 0, column_flags = 0;
GtkStateFlags state = 0;
gint width;
gboolean draw_focus;
@@ -5142,46 +5139,12 @@ gtk_tree_view_bin_draw (GtkWidget *widget,
GTK_RBNODE_FLAG_SET (node, GTK_RBNODE_IS_PARENT),
node->children?TRUE:FALSE);
- /* Select the detail for drawing the cell. relevant
- * factors are parity, sortedness, and whether to
- * display rules.
- */
- if (allow_rules && tree_view->priv->has_rules)
- {
- if (parity)
- row_flags |= GTK_REGION_ODD;
- else
- row_flags |= GTK_REGION_EVEN;
- }
-
- if ((flags & GTK_CELL_RENDERER_SORTED) &&
- n_visible_columns >= 3)
- column_flags |= GTK_REGION_SORTED;
-
- is_first = (rtl ? !list->next : !list->prev);
- is_last = (rtl ? !list->prev : !list->next);
-
- if (is_first)
- column_flags |= GTK_REGION_FIRST;
-
- if (is_last)
- column_flags |= GTK_REGION_LAST;
-
- if ((n_col % 2) == 0)
- column_flags |= GTK_REGION_EVEN;
- else
- column_flags |= GTK_REGION_ODD;
-
gtk_style_context_save (context);
state = gtk_cell_renderer_get_state (NULL, widget, flags);
gtk_style_context_set_state (context, state);
gtk_style_context_add_class (context, GTK_STYLE_CLASS_CELL);
-G_GNUC_BEGIN_IGNORE_DEPRECATIONS
- gtk_style_context_add_region (context, GTK_STYLE_REGION_ROW, row_flags);
- gtk_style_context_add_region (context, GTK_STYLE_REGION_COLUMN, column_flags);
-G_GNUC_END_IGNORE_DEPRECATIONS
if (node == tree_view->priv->cursor_node && has_can_focus_cell
&& ((column == tree_view->priv->focus_column
@@ -14623,7 +14586,7 @@ gtk_tree_view_create_row_drag_icon (GtkTreeView *tree_view,
cairo_surface_t *surface;
gint bin_window_width;
gboolean is_separator = FALSE;
- gboolean rtl, allow_rules;
+ gboolean rtl;
cairo_t *cr;
g_return_val_if_fail (GTK_IS_TREE_VIEW (tree_view), NULL);
@@ -14651,29 +14614,6 @@ gtk_tree_view_create_row_drag_icon (GtkTreeView *tree_view,
context = gtk_widget_get_style_context (widget);
- gtk_style_context_save (context);
-G_GNUC_BEGIN_IGNORE_DEPRECATIONS
- gtk_style_context_add_region (context, GTK_STYLE_REGION_COLUMN, 0);
-G_GNUC_END_IGNORE_DEPRECATIONS
-
- gtk_widget_style_get (widget,
- "allow-rules", &allow_rules,
- NULL);
-
- if (allow_rules && tree_view->priv->has_rules)
- {
- GtkRegionFlags row_flags;
-
- if ((_gtk_rbtree_node_get_index (tree, node) % 2))
- row_flags = GTK_REGION_ODD;
- else
- row_flags = GTK_REGION_EVEN;
-
-G_GNUC_BEGIN_IGNORE_DEPRECATIONS
- gtk_style_context_add_region (context, GTK_STYLE_REGION_ROW, row_flags);
-G_GNUC_END_IGNORE_DEPRECATIONS
- }
-
is_separator = row_is_separator (tree_view, &iter, NULL);
cell_offset = x;
@@ -14777,8 +14717,6 @@ G_GNUC_END_IGNORE_DEPRECATIONS
cairo_surface_set_device_offset (surface, 2, 2);
- gtk_style_context_restore (context);
-
return surface;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]