forked from AuroraMiddleware/gtk
b55195fa2e
This was only living in gtkcontainer.c for historic reasons. Move it closer to where it belongs, and rename it from 'idle' to 'layout', since it is really about the layout phase of the frame clock, nowadays.
190 lines
5.7 KiB
C
190 lines
5.7 KiB
C
/* GTK - The GIMP Toolkit
|
|
* Copyright (C) 2014 Benjamin Otte <otte@gnome.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "gtkcsswidgetnodeprivate.h"
|
|
|
|
#include "gtkcssanimatedstyleprivate.h"
|
|
#include "gtkprivate.h"
|
|
#include "gtksettingsprivate.h"
|
|
#include "gtkstylecontextprivate.h"
|
|
#include "gtkwidgetprivate.h"
|
|
#include "gtkwindowprivate.h"
|
|
|
|
G_DEFINE_TYPE (GtkCssWidgetNode, gtk_css_widget_node, GTK_TYPE_CSS_NODE)
|
|
|
|
static void
|
|
gtk_css_widget_node_finalize (GObject *object)
|
|
{
|
|
GtkCssWidgetNode *node = GTK_CSS_WIDGET_NODE (object);
|
|
|
|
g_object_unref (node->last_updated_style);
|
|
|
|
G_OBJECT_CLASS (gtk_css_widget_node_parent_class)->finalize (object);
|
|
}
|
|
|
|
static gboolean
|
|
gtk_css_widget_node_queue_callback (GtkWidget *widget,
|
|
GdkFrameClock *frame_clock,
|
|
gpointer user_data)
|
|
{
|
|
GtkCssNode *node = user_data;
|
|
|
|
gtk_css_node_invalidate_frame_clock (node, TRUE);
|
|
gtk_window_queue_restyle (GTK_WINDOW (widget));
|
|
|
|
return G_SOURCE_CONTINUE;
|
|
}
|
|
|
|
static void
|
|
gtk_css_widget_node_queue_validate (GtkCssNode *node)
|
|
{
|
|
GtkCssWidgetNode *widget_node = GTK_CSS_WIDGET_NODE (node);
|
|
|
|
if (widget_node->widget && GTK_IS_ROOT (widget_node->widget))
|
|
widget_node->validate_cb_id = gtk_widget_add_tick_callback (widget_node->widget,
|
|
gtk_css_widget_node_queue_callback,
|
|
node,
|
|
NULL);
|
|
}
|
|
|
|
static void
|
|
gtk_css_widget_node_dequeue_validate (GtkCssNode *node)
|
|
{
|
|
GtkCssWidgetNode *widget_node = GTK_CSS_WIDGET_NODE (node);
|
|
|
|
if (widget_node->widget &&
|
|
GTK_IS_ROOT (widget_node->widget) &&
|
|
GTK_IS_CONTAINER (widget_node->widget))
|
|
gtk_widget_remove_tick_callback (widget_node->widget,
|
|
widget_node->validate_cb_id);
|
|
}
|
|
|
|
static void
|
|
gtk_css_widget_node_validate (GtkCssNode *node)
|
|
{
|
|
GtkCssWidgetNode *widget_node = GTK_CSS_WIDGET_NODE (node);
|
|
GtkCssStyleChange change;
|
|
GtkCssStyle *style;
|
|
|
|
if (widget_node->widget == NULL)
|
|
return;
|
|
|
|
if (node->style == widget_node->last_updated_style)
|
|
return;
|
|
|
|
style = gtk_css_node_get_style (node);
|
|
|
|
gtk_css_style_change_init (&change, widget_node->last_updated_style, style);
|
|
if (gtk_css_style_change_has_change (&change))
|
|
{
|
|
gtk_widget_css_changed (widget_node->widget, &change);
|
|
g_set_object (&widget_node->last_updated_style, style);
|
|
}
|
|
gtk_css_style_change_finish (&change);
|
|
}
|
|
|
|
static GtkStyleProvider *
|
|
gtk_css_widget_node_get_style_provider (GtkCssNode *node)
|
|
{
|
|
GtkCssWidgetNode *widget_node = GTK_CSS_WIDGET_NODE (node);
|
|
GtkStyleContext *context;
|
|
GtkStyleCascade *cascade;
|
|
|
|
if (widget_node->widget == NULL)
|
|
return NULL;
|
|
|
|
context = _gtk_widget_peek_style_context (widget_node->widget);
|
|
if (context)
|
|
return gtk_style_context_get_style_provider (context);
|
|
|
|
cascade = _gtk_settings_get_style_cascade (gtk_widget_get_settings (widget_node->widget),
|
|
gtk_widget_get_scale_factor (widget_node->widget));
|
|
return GTK_STYLE_PROVIDER (cascade);
|
|
}
|
|
|
|
static GdkFrameClock *
|
|
gtk_css_widget_node_get_frame_clock (GtkCssNode *node)
|
|
{
|
|
GtkCssWidgetNode *widget_node = GTK_CSS_WIDGET_NODE (node);
|
|
|
|
if (widget_node->widget == NULL)
|
|
return NULL;
|
|
|
|
if (!gtk_settings_get_enable_animations (gtk_widget_get_settings (widget_node->widget)))
|
|
return NULL;
|
|
|
|
return gtk_widget_get_frame_clock (widget_node->widget);
|
|
}
|
|
|
|
static void
|
|
gtk_css_widget_node_class_init (GtkCssWidgetNodeClass *klass)
|
|
{
|
|
GtkCssNodeClass *node_class = GTK_CSS_NODE_CLASS (klass);
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
object_class->finalize = gtk_css_widget_node_finalize;
|
|
node_class->validate = gtk_css_widget_node_validate;
|
|
node_class->queue_validate = gtk_css_widget_node_queue_validate;
|
|
node_class->dequeue_validate = gtk_css_widget_node_dequeue_validate;
|
|
node_class->get_style_provider = gtk_css_widget_node_get_style_provider;
|
|
node_class->get_frame_clock = gtk_css_widget_node_get_frame_clock;
|
|
}
|
|
|
|
static void
|
|
gtk_css_widget_node_init (GtkCssWidgetNode *node)
|
|
{
|
|
node->last_updated_style = g_object_ref (gtk_css_static_style_get_default ());
|
|
}
|
|
|
|
GtkCssNode *
|
|
gtk_css_widget_node_new (GtkWidget *widget)
|
|
{
|
|
GtkCssWidgetNode *result;
|
|
|
|
gtk_internal_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
|
|
|
|
result = g_object_new (GTK_TYPE_CSS_WIDGET_NODE, NULL);
|
|
result->widget = widget;
|
|
gtk_css_node_set_visible (GTK_CSS_NODE (result),
|
|
_gtk_widget_get_visible (widget));
|
|
|
|
return GTK_CSS_NODE (result);
|
|
}
|
|
|
|
void
|
|
gtk_css_widget_node_widget_destroyed (GtkCssWidgetNode *node)
|
|
{
|
|
gtk_internal_return_if_fail (GTK_IS_CSS_WIDGET_NODE (node));
|
|
gtk_internal_return_if_fail (node->widget != NULL);
|
|
|
|
node->widget = NULL;
|
|
/* Contents of this node are now undefined.
|
|
* So we don't clear the style or anything.
|
|
*/
|
|
}
|
|
|
|
GtkWidget *
|
|
gtk_css_widget_node_get_widget (GtkCssWidgetNode *node)
|
|
{
|
|
gtk_internal_return_val_if_fail (GTK_IS_CSS_WIDGET_NODE (node), NULL);
|
|
|
|
return node->widget;
|
|
}
|
|
|