[gnome-calendar/calendar-editor] app: add GbScrolledWindow
- From: Erick Pérez Castellanos <erickpc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-calendar/calendar-editor] app: add GbScrolledWindow
- Date: Mon, 18 May 2015 01:50:05 +0000 (UTC)
commit af8803a39787da105bb40b862022be85dfe059f6
Author: Erick Pérez Castellanos <erick red gmail com>
Date: Sun May 17 21:47:42 2015 -0400
app: add GbScrolledWindow
GbScrolledWindow comes from Builder, courtesy of christian Hergert.
We'll use it in calendars' popover.
src/Makefile.am | 2 +
src/gb-scrolled-window.c | 280 ++++++++++++++++++++++++++++++++++++++++++++++
src/gb-scrolled-window.h | 39 +++++++
3 files changed, 321 insertions(+), 0 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index 06da061..1ce7825 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -20,6 +20,8 @@ BUILT_SOURCES = \
gnome_calendar_SOURCES = \
$(BUILT_SOURCES) \
+ gb-scrolled-window.h \
+ gb-scrolled-window.c \
e-cal-data-model-subscriber.h \
e-cal-data-model-subscriber.c \
e-cal-data-model.h \
diff --git a/src/gb-scrolled-window.c b/src/gb-scrolled-window.c
new file mode 100644
index 0000000..cfcd6fe
--- /dev/null
+++ b/src/gb-scrolled-window.c
@@ -0,0 +1,280 @@
+/* gb-scrolled-window.c
+ *
+ * Copyright (C) 2014 Christian Hergert <christian hergert me>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <glib/gi18n.h>
+
+#include "gb-scrolled-window.h"
+
+typedef struct
+{
+ gint max_content_height;
+ gint max_content_width;
+} GbScrolledWindowPrivate;
+
+G_DEFINE_TYPE_WITH_PRIVATE (GbScrolledWindow, gb_scrolled_window, GTK_TYPE_SCROLLED_WINDOW)
+
+enum {
+ PROP_0,
+ PROP_MAX_CONTENT_HEIGHT,
+ PROP_MAX_CONTENT_WIDTH,
+ LAST_PROP
+};
+
+static GParamSpec *gParamSpecs [LAST_PROP];
+
+GtkWidget *
+gb_scrolled_window_new (void)
+{
+ return g_object_new (GB_TYPE_SCROLLED_WINDOW, NULL);
+}
+
+static gint
+gb_scrolled_window_get_max_content_height (GbScrolledWindow *self)
+{
+ GbScrolledWindowPrivate *priv = gb_scrolled_window_get_instance_private (self);
+
+ g_return_val_if_fail (GB_IS_SCROLLED_WINDOW (self), -1);
+
+ return priv->max_content_height;
+}
+
+/**
+ * gb_scrolled_window_set_max_content_height:
+ * @max_content_height: the max allowed height request or -1 to ignore.
+ *
+ * This function will set the "max-content-height" property. This property is
+ * used to determine the maximum height that the scrolled window will request.
+ *
+ * This is useful if you want to have a scrolled window grow with the child
+ * allocation, but only up to a certain height.
+ */
+static void
+gb_scrolled_window_set_max_content_height (GbScrolledWindow *self,
+ gint max_content_height)
+{
+ GbScrolledWindowPrivate *priv = gb_scrolled_window_get_instance_private (self);
+
+ g_return_if_fail (GB_IS_SCROLLED_WINDOW (self));
+
+ if (max_content_height != priv->max_content_height)
+ {
+ priv->max_content_height = max_content_height;
+ g_object_notify_by_pspec (G_OBJECT (self), gParamSpecs [PROP_MAX_CONTENT_HEIGHT]);
+ gtk_widget_queue_resize (GTK_WIDGET (self));
+ }
+}
+
+static gint
+gb_scrolled_window_get_max_content_width (GbScrolledWindow *self)
+{
+ GbScrolledWindowPrivate *priv = gb_scrolled_window_get_instance_private (self);
+
+ g_return_val_if_fail (GB_IS_SCROLLED_WINDOW (self), -1);
+
+ return priv->max_content_width;
+}
+
+/**
+ * gb_scrolled_window_set_max_content_width:
+ * @max_content_width: the max allowed width request or -1 to ignore.
+ *
+ * This function will set the "max-content-width" property. This property is
+ * used to determine the maximum width that the scrolled window will request.
+ *
+ * This is useful if you want to have a scrolled window grow with the child
+ * allocation, but only up to a certain width.
+ */
+static void
+gb_scrolled_window_set_max_content_width (GbScrolledWindow *self,
+ gint max_content_width)
+{
+ GbScrolledWindowPrivate *priv = gb_scrolled_window_get_instance_private (self);
+
+ g_return_if_fail (GB_IS_SCROLLED_WINDOW (self));
+
+ if (max_content_width != priv->max_content_width)
+ {
+ priv->max_content_width = max_content_width;
+ g_object_notify_by_pspec (G_OBJECT (self), gParamSpecs [PROP_MAX_CONTENT_HEIGHT]);
+ gtk_widget_queue_resize (GTK_WIDGET (self));
+ }
+}
+
+static void
+gb_scrolled_window_get_preferred_height (GtkWidget *widget,
+ gint *minimum_height,
+ gint *natural_height)
+{
+ GbScrolledWindow *self = (GbScrolledWindow *)widget;
+ GbScrolledWindowPrivate *priv = gb_scrolled_window_get_instance_private (self);
+
+ g_return_if_fail (GB_IS_SCROLLED_WINDOW (self));
+
+ GTK_WIDGET_CLASS (gb_scrolled_window_parent_class)->get_preferred_height (widget, minimum_height,
natural_height);
+
+ if (natural_height)
+ {
+ if (priv->max_content_height > -1)
+ {
+ GtkWidget *child;
+ GtkStyleContext *style;
+ GtkBorder border;
+ gint child_min_height;
+ gint child_nat_height;
+ gint additional;
+
+ if (!(child = gtk_bin_get_child (GTK_BIN (widget))))
+ return;
+
+ style = gtk_widget_get_style_context (widget);
+ gtk_style_context_get_border (style, gtk_widget_get_state_flags (widget), &border);
+ additional = border.top + border.bottom;
+
+ gtk_widget_get_preferred_height (child, &child_min_height, &child_nat_height);
+
+ if ((child_nat_height > *natural_height) && (priv->max_content_height > *natural_height))
+ *natural_height = MIN (priv->max_content_height, child_nat_height) + additional;
+ }
+ }
+}
+
+static void
+gb_scrolled_window_get_preferred_width (GtkWidget *widget,
+ gint *minimum_width,
+ gint *natural_width)
+{
+ GbScrolledWindow *self = (GbScrolledWindow *)widget;
+ GbScrolledWindowPrivate *priv = gb_scrolled_window_get_instance_private (self);
+
+ g_return_if_fail (GB_IS_SCROLLED_WINDOW (self));
+
+ GTK_WIDGET_CLASS (gb_scrolled_window_parent_class)->get_preferred_width (widget, minimum_width,
natural_width);
+
+ if (natural_width)
+ {
+ if (priv->max_content_width > -1)
+ {
+ GtkWidget *child;
+ GtkStyleContext *style;
+ GtkBorder border;
+ gint child_min_width;
+ gint child_nat_width;
+ gint additional;
+
+ if (!(child = gtk_bin_get_child (GTK_BIN (widget))))
+ return;
+
+ style = gtk_widget_get_style_context (widget);
+ gtk_style_context_get_border (style, gtk_widget_get_state_flags (widget), &border);
+ additional = border.left = border.right + 1;
+
+ gtk_widget_get_preferred_width (child, &child_min_width, &child_nat_width);
+
+ if ((child_nat_width > *natural_width) && (priv->max_content_width > *natural_width))
+ *natural_width = MIN (priv->max_content_width, child_nat_width) + additional;
+ }
+ }
+}
+
+static void
+gb_scrolled_window_get_property (GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ GbScrolledWindow *self = GB_SCROLLED_WINDOW (object);
+
+ switch (prop_id)
+ {
+ case PROP_MAX_CONTENT_HEIGHT:
+ g_value_set_int (value, gb_scrolled_window_get_max_content_height (self));
+ break;
+
+ case PROP_MAX_CONTENT_WIDTH:
+ g_value_set_int (value, gb_scrolled_window_get_max_content_width (self));
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ }
+}
+
+static void
+gb_scrolled_window_set_property (GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec)
+{
+ GbScrolledWindow *self = GB_SCROLLED_WINDOW (object);
+
+ switch (prop_id)
+ {
+ case PROP_MAX_CONTENT_HEIGHT:
+ gb_scrolled_window_set_max_content_height (self, g_value_get_int (value));
+ break;
+
+ case PROP_MAX_CONTENT_WIDTH:
+ gb_scrolled_window_set_max_content_width (self, g_value_get_int (value));
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ }
+}
+
+static void
+gb_scrolled_window_class_init (GbScrolledWindowClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
+
+ object_class->get_property = gb_scrolled_window_get_property;
+ object_class->set_property = gb_scrolled_window_set_property;
+
+ widget_class->get_preferred_width = gb_scrolled_window_get_preferred_width;
+ widget_class->get_preferred_height = gb_scrolled_window_get_preferred_height;
+
+ gParamSpecs [PROP_MAX_CONTENT_HEIGHT] =
+ g_param_spec_int ("max-content-height",
+ _("Max Content Height"),
+ _("The maximum height request that can be made."),
+ -1,
+ G_MAXINT,
+ -1,
+ (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+ gParamSpecs [PROP_MAX_CONTENT_WIDTH] =
+ g_param_spec_int ("max-content-width",
+ _("Max Content Width"),
+ _("The maximum width request that can be made."),
+ -1,
+ G_MAXINT,
+ -1,
+ (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+ g_object_class_install_properties (object_class, LAST_PROP, gParamSpecs);
+}
+
+static void
+gb_scrolled_window_init (GbScrolledWindow *self)
+{
+ GbScrolledWindowPrivate *priv = gb_scrolled_window_get_instance_private (self);
+
+ priv->max_content_height = -1;
+ priv->max_content_width = -1;
+}
diff --git a/src/gb-scrolled-window.h b/src/gb-scrolled-window.h
new file mode 100644
index 0000000..95e3784
--- /dev/null
+++ b/src/gb-scrolled-window.h
@@ -0,0 +1,39 @@
+/* gb-scrolled-window.h
+ *
+ * Copyright (C) 2014 Christian Hergert <christian hergert me>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GB_SCROLLED_WINDOW_H
+#define GB_SCROLLED_WINDOW_H
+
+#include <gtk/gtk.h>
+
+G_BEGIN_DECLS
+
+#define GB_TYPE_SCROLLED_WINDOW (gb_scrolled_window_get_type())
+
+G_DECLARE_DERIVABLE_TYPE (GbScrolledWindow, gb_scrolled_window, GB, SCROLLED_WINDOW, GtkScrolledWindow)
+
+struct _GbScrolledWindowClass
+{
+ GtkScrolledWindowClass parent_class;
+};
+
+GtkWidget *gb_scrolled_window_new (void);
+
+G_END_DECLS
+
+#endif /* GB_SCROLLED_WINDOW_H */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]