[gnome-photos/wip/foo: 6/7] Add PhotosPrintOperation
- From: Debarshi Ray <debarshir src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-photos/wip/foo: 6/7] Add PhotosPrintOperation
- Date: Tue, 26 Mar 2013 16:44:31 +0000 (UTC)
commit a659b9b8d0ff1bc74810a0c67b7e30795ec8f51c
Author: Debarshi Ray <debarshir gnome org>
Date: Mon Mar 25 23:11:48 2013 +0100
Add PhotosPrintOperation
src/Makefile.am | 2 +
src/photos-print-operation.c | 288 ++++++++++++++++++++++++++++++++++++++++++
src/photos-print-operation.h | 78 ++++++++++++
3 files changed, 368 insertions(+), 0 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index 51cd2c2..a27a96a 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -106,6 +106,8 @@ gnome_photos_SOURCES = \
photos-organize-collection-view.h \
photos-preview-view.c \
photos-preview-view.h \
+ photos-print-operation.c \
+ photos-print-operation.h \
photos-properties-dialog.c \
photos-properties-dialog.h \
photos-query.c \
diff --git a/src/photos-print-operation.c b/src/photos-print-operation.c
new file mode 100644
index 0000000..60cc29f
--- /dev/null
+++ b/src/photos-print-operation.c
@@ -0,0 +1,288 @@
+/*
+ * Photos - access, organize and share your photos on GNOME
+ * Copyright © 2013 Red Hat, Inc.
+ *
+ * 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 2
+ * 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, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+/* Based on code from:
+ * + Eye of GNOME
+ */
+
+#include "config.h"
+
+#include <stdio.h>
+
+#include <babl/babl.h>
+#include <glib.h>
+#include <glib/gi18n.h>
+
+#include "photos-print-operation.h"
+
+
+struct _PhotosPrintOperationPrivate
+{
+ GeglNode *node;
+ GtkUnit unit;
+ PhotosBaseItem *item;
+ gdouble left_margin;
+ gdouble top_margin;
+ gdouble scale_factor;
+};
+
+
+enum
+{
+ PROP_0,
+ PROP_ITEM,
+ PROP_NODE
+};
+
+
+G_DEFINE_TYPE (PhotosPrintOperation, photos_print_operation, GTK_TYPE_PRINT_OPERATION);
+
+
+static GtkWidget *
+photos_print_operation_create_custom_widget (GtkPrintOperation *operation)
+{
+ return NULL;
+}
+
+static void
+photos_print_operation_draw_page (GtkPrintOperation *operation, GtkPrintContext *context, gint page_nr)
+{
+ PhotosPrintOperation *self = PHOTOS_PRINT_OPERATION (operation);
+ PhotosPrintOperationPrivate *priv = self->priv;
+ GeglNode *save_pixbuf;
+ GeglRectangle bbox;
+ GdkPixbuf *pixbuf = NULL;
+ GtkPageSetup *page_setup;
+ cairo_t *cr;
+ gdouble dpi_x;
+ gdouble dpi_y;
+ gdouble page_height;
+ gdouble page_width;
+ gdouble scale_factor_n;
+ gdouble x0;
+ gdouble y0;
+
+ scale_factor_n = priv->scale_factor / 100.0;
+ bbox = gegl_node_get_bounding_box (priv->node);
+
+ dpi_x = gtk_print_context_get_dpi_x (context);
+ dpi_y = gtk_print_context_get_dpi_x (context);
+
+ switch (priv->unit)
+ {
+ case GTK_UNIT_INCH:
+ x0 = priv->left_margin * dpi_x;
+ y0 = priv->top_margin * dpi_y;
+ break;
+ case GTK_UNIT_MM:
+ x0 = priv->left_margin * dpi_x / 25.4;
+ y0 = priv->top_margin * dpi_y / 25.4;
+ break;
+ default:
+ g_assert_not_reached ();
+ }
+
+ cr = gtk_print_context_get_cairo_context (context);
+ cairo_translate (cr, x0, y0);
+
+ page_setup = gtk_print_context_get_page_setup (context);
+ page_width = gtk_page_setup_get_page_width (page_setup, GTK_UNIT_POINTS);
+ page_height = gtk_page_setup_get_page_height (page_setup, GTK_UNIT_POINTS);
+
+ /* This is both a workaround for a bug in cairo's PDF backend, and
+ * a way to ensure we are not printing outside the page margins.
+ */
+ cairo_rectangle (cr,
+ 0,
+ 0,
+ MIN (bbox.width * scale_factor_n, page_width),
+ MIN (bbox.height * scale_factor_n, page_height));
+ cairo_clip (cr);
+ cairo_scale (cr, scale_factor_n, scale_factor_n);
+
+ save_pixbuf = gegl_node_new_child (gegl_node_get_parent (priv->node),
+ "operation", "gegl:save-pixbuf",
+ "pixbuf", &pixbuf,
+ NULL);
+ gegl_node_link_many (priv->node, save_pixbuf, NULL);
+ gegl_node_process (save_pixbuf);
+
+ gdk_cairo_set_source_pixbuf (cr, pixbuf, 0.0, 0.0);
+ cairo_paint (cr);
+
+ g_clear_object (&pixbuf);
+ g_object_unref (save_pixbuf);
+}
+
+
+static void
+photos_print_operation_constructed (GObject *object)
+{
+ PhotosPrintOperation *self = PHOTOS_PRINT_OPERATION (object);
+ PhotosPrintOperationPrivate *priv = self->priv;
+ GeglRectangle bbox;
+ GtkPageSetup *page_setup;
+ gchar *name;
+
+ page_setup = gtk_page_setup_new ();
+ gtk_print_operation_set_default_page_setup (GTK_PRINT_OPERATION (self), page_setup);
+
+ bbox = gegl_node_get_bounding_box (priv->node);
+ if (bbox.height >= bbox.width)
+ gtk_page_setup_set_orientation (page_setup, GTK_PAGE_ORIENTATION_PORTRAIT);
+ else
+ gtk_page_setup_set_orientation (page_setup, GTK_PAGE_ORIENTATION_LANDSCAPE);
+
+ g_object_unref (page_setup);
+
+ name = g_strdup (photos_base_item_get_name (priv->item));
+ if (name == NULL)
+ {
+ GFile *file;
+ const gchar *uri;
+ gchar *basename;
+
+ uri = photos_base_item_get_uri (priv->item);
+ file = g_file_new_for_uri (uri);
+ basename = g_file_get_basename (file);
+
+ if (g_utf8_validate (basename, -1, NULL))
+ name = g_strdup (basename);
+ else
+ name = g_filename_to_utf8 (basename, -1, NULL, NULL, NULL);
+
+ g_free (basename);
+ g_object_unref (file);
+ }
+ gtk_print_operation_set_job_name (GTK_PRINT_OPERATION (self), name);
+
+ G_OBJECT_CLASS (photos_print_operation_parent_class)->constructed (object);
+}
+
+
+static void
+photos_print_operation_dispose (GObject *object)
+{
+ PhotosPrintOperation *self = PHOTOS_PRINT_OPERATION (object);
+ PhotosPrintOperationPrivate *priv = self->priv;
+
+ g_clear_object (&priv->item);
+ g_clear_object (&priv->node);
+
+ G_OBJECT_CLASS (photos_print_operation_parent_class)->dispose (object);
+}
+
+
+static void
+photos_print_operation_finalize (GObject *object)
+{
+ PhotosPrintOperation *self = PHOTOS_PRINT_OPERATION (object);
+ PhotosPrintOperationPrivate *priv = self->priv;
+
+ G_OBJECT_CLASS (photos_print_operation_parent_class)->finalize (object);
+}
+
+
+static void
+photos_print_operation_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
+{
+ PhotosPrintOperation *self = PHOTOS_PRINT_OPERATION (object);
+ PhotosPrintOperationPrivate *priv = self->priv;
+
+ switch (prop_id)
+ {
+ case PROP_ITEM:
+ priv->item = PHOTOS_BASE_ITEM (g_value_dup_object (value));
+ break;
+
+ case PROP_NODE:
+ priv->node = GEGL_NODE (g_value_dup_object (value));
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+}
+
+
+static void
+photos_print_operation_init (PhotosPrintOperation *self)
+{
+ PhotosPrintOperationPrivate *priv;
+ GtkPrintSettings *settings;
+
+ self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
+ PHOTOS_TYPE_PRINT_OPERATION,
+ PhotosPrintOperationPrivate);
+ priv = self->priv;
+
+ priv->unit = GTK_UNIT_INCH;
+ priv->left_margin = 0.0;
+ priv->top_margin = 0.0;
+ priv->scale_factor = 100.0;
+
+ settings = gtk_print_settings_new ();
+ gtk_print_operation_set_print_settings (GTK_PRINT_OPERATION (self), settings);
+ g_object_unref (settings);
+
+ gtk_print_operation_set_embed_page_setup (GTK_PRINT_OPERATION (self), TRUE);
+ gtk_print_operation_set_n_pages (GTK_PRINT_OPERATION (self), 1);
+}
+
+
+static void
+photos_print_operation_class_init (PhotosPrintOperationClass *class)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (class);
+ GtkPrintOperationClass *operation_class = GTK_PRINT_OPERATION_CLASS (class);
+
+ object_class->constructed= photos_print_operation_constructed;
+ object_class->dispose = photos_print_operation_dispose;
+ object_class->finalize = photos_print_operation_finalize;
+ object_class->set_property = photos_print_operation_set_property;
+ operation_class->create_custom_widget = photos_print_operation_create_custom_widget;
+ operation_class->draw_page = photos_print_operation_draw_page;
+
+ g_object_class_install_property (object_class,
+ PROP_ITEM,
+ g_param_spec_object ("item",
+ "PhotosBaseItem object",
+ "The item to print",
+ PHOTOS_TYPE_BASE_ITEM,
+ G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE));
+
+ g_object_class_install_property (object_class,
+ PROP_NODE,
+ g_param_spec_object ("node",
+ "GeglNode object",
+ "The node corresponding to the item",
+ GEGL_TYPE_NODE,
+ G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE));
+
+ g_type_class_add_private (class, sizeof (PhotosPrintOperationPrivate));
+}
+
+
+GtkPrintOperation *
+photos_print_operation_new (PhotosBaseItem *item, GeglNode *node)
+{
+ return g_object_new (PHOTOS_TYPE_PRINT_OPERATION, "item", item, "node", node, NULL);
+}
diff --git a/src/photos-print-operation.h b/src/photos-print-operation.h
new file mode 100644
index 0000000..47cd9af
--- /dev/null
+++ b/src/photos-print-operation.h
@@ -0,0 +1,78 @@
+/*
+ * Photos - access, organize and share your photos on GNOME
+ * Copyright © 2013 Red Hat, Inc.
+ *
+ * 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 2
+ * 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, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+/* Based on code from:
+ * + Eye of GNOME
+ */
+
+#ifndef PHOTOS_PRINT_OPERATION_H
+#define PHOTOS_PRINT_OPERATION_H
+
+#include <gegl.h>
+#include <gtk/gtk.h>
+
+#include "photos-base-item.h"
+
+G_BEGIN_DECLS
+
+#define PHOTOS_TYPE_PRINT_OPERATION (photos_print_operation_get_type ())
+
+#define PHOTOS_PRINT_OPERATION(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
+ PHOTOS_TYPE_PRINT_OPERATION, PhotosPrintOperation))
+
+#define PHOTOS_PRINT_OPERATION_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), \
+ PHOTOS_TYPE_PRINT_OPERATION, PhotosPrintOperationClass))
+
+#define PHOTOS_IS_PRINT_OPERATION(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
+ PHOTOS_TYPE_PRINT_OPERATION))
+
+#define PHOTOS_IS_PRINT_OPERATION_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), \
+ PHOTOS_TYPE_PRINT_OPERATION))
+
+#define PHOTOS_PRINT_OPERATION_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), \
+ PHOTOS_TYPE_PRINT_OPERATION, PhotosPrintOperationClass))
+
+typedef struct _PhotosPrintOperation PhotosPrintOperation;
+typedef struct _PhotosPrintOperationClass PhotosPrintOperationClass;
+typedef struct _PhotosPrintOperationPrivate PhotosPrintOperationPrivate;
+
+struct _PhotosPrintOperation
+{
+ GtkPrintOperation parent_instance;
+ PhotosPrintOperationPrivate *priv;
+};
+
+struct _PhotosPrintOperationClass
+{
+ GtkPrintOperationClass parent_class;
+};
+
+GType photos_print_operation_get_type (void) G_GNUC_CONST;
+
+GtkPrintOperation *photos_print_operation_new (PhotosBaseItem *item, GeglNode *node);
+
+G_END_DECLS
+
+#endif /* PHOTOS_PRINT_OPERATION_H */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]