/* * Copyright (C) 2018 Elias Entrup * * 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 . */ [GtkTemplate (ui = "/org/gnome/Contacts/ui/contacts-crop-dialog.ui")] public class Contacts.CropDialog : Gtk.Window { private Cc.CropArea crop_area; public signal void cropped (Gdk.Pixbuf pixbuf); static construct { install_action ("crop", null, (Gtk.WidgetActionActivateFunc) on_crop); } construct { this.crop_area = new Cc.CropArea (); this.crop_area.vexpand = true; this.crop_area.hexpand = true; this.crop_area.set_min_size (48, 48); this.child = this.crop_area; } public CropDialog.for_pixbuf (Gdk.Pixbuf pixbuf, Gtk.Window? parent = null) { Object (transient_for: parent); this.crop_area.set_paintable (Gdk.Texture.for_pixbuf (pixbuf)); } private void on_crop (string action_name, Variant? param) { cropped (this.crop_area.create_pixbuf ()); destroy (); } }