/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Pix * * Copyright (C) 2009 Free Software Foundation, 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, see . */ #include #include #include #include #include "gth-file-tool-rotate-right.h" G_DEFINE_TYPE (GthFileToolRotateRight, gth_file_tool_rotate_right, GTH_TYPE_IMAGE_VIEWER_PAGE_TOOL) static gpointer rotate_right_exec (GthAsyncTask *task, gpointer user_data) { cairo_surface_t *source; cairo_surface_t *destination; source = gth_image_task_get_source_surface (GTH_IMAGE_TASK (task)); destination = _cairo_image_surface_transform (source, GTH_TRANSFORM_ROTATE_90); gth_image_task_set_destination_surface (GTH_IMAGE_TASK (task), destination); cairo_surface_destroy (destination); cairo_surface_destroy (source); return NULL; } static void gth_file_tool_rotate_right_activate (GthFileTool *base) { GtkWidget *window; GthViewerPage *viewer_page; GthTask *task; window = gth_file_tool_get_window (base); viewer_page = gth_browser_get_viewer_page (GTH_BROWSER (window)); if (! GTH_IS_IMAGE_VIEWER_PAGE (viewer_page)) return; task = gth_image_viewer_task_new (GTH_IMAGE_VIEWER_PAGE (viewer_page), _("Applying changes"), NULL, rotate_right_exec, NULL, NULL, NULL); g_signal_connect (task, "completed", G_CALLBACK (gth_image_viewer_task_set_destination), NULL); gth_browser_exec_task (GTH_BROWSER (window), task, GTH_TASK_FLAGS_DEFAULT); } static void gth_file_tool_rotate_right_class_init (GthFileToolRotateRightClass *klass) { GthFileToolClass *file_tool_class; file_tool_class = (GthFileToolClass *) klass; file_tool_class->activate = gth_file_tool_rotate_right_activate; } static void gth_file_tool_rotate_right_init (GthFileToolRotateRight *self) { gth_file_tool_construct (GTH_FILE_TOOL (self), "image-rotate-right-symbolic", _("Rotate Right"), GTH_TOOLBOX_SECTION_ROTATION); gtk_widget_set_tooltip_text (GTK_WIDGET (self), _("Rotate the image by 90 degrees clockwise")); }