summaryrefslogtreecommitdiff
path: root/src/contacts-crop-dialog.vala
blob: 32876e781853cfdf314906d4d7c17ba5e8234891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Copyright (C) 2018 Elias Entrup <elias-git@flump.de>
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

[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 ();
  }
}