summaryrefslogtreecommitdiff
path: root/src/contacts-crop-dialog.vala
blob: 0a9cbb211a6da5292710207c9c11b56f97d4b5b4 (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
/*
 * 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.Dialog {

  [GtkChild]
  private unowned Gtk.Box box;

  private Cc.CropArea crop_area;

  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.box.append (this.crop_area);
  }

  public CropDialog.for_pixbuf (Gdk.Pixbuf pixbuf, Gtk.Window? parent = null) {
    Object (use_header_bar: 1, transient_for: parent);

    this.crop_area.set_paintable (Gdk.Texture.for_pixbuf (pixbuf));
  }

  public Gdk.Pixbuf create_pixbuf () {
    return this.crop_area.create_pixbuf ();
  }
}