.
1 /*
2 Copyright (C) 2013 Johan Mattsson
3
4 This library is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 3 of the
7 License, or (at your option) any later version.
8
9 This library is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13 */
14
15 namespace BirdFont {
16
17 public class OverWriteDialogListener : GLib.Object {
18
19 public signal void overwrite_signal ();
20 public signal void cancel_signal ();
21
22 public static bool dont_ask_again = false;
23
24 public string message;
25 public string overwrite_message;
26 public string cancel_message;
27 public string dont_ask_again_message;
28
29 public OverWriteDialogListener () {
30 message = t_("Overwrite TTF file?");
31 overwrite_message = t_("Overwrite");
32 cancel_message = t_("Cancel");
33 dont_ask_again_message = t_("Yes, don't ask again.");
34 }
35
36 public void overwrite () {
37 overwrite_signal ();
38 }
39
40 public void cancel () {
41 cancel_signal ();
42 }
43
44 public void overwrite_dont_ask_again () {
45 dont_ask_again = true;
46 overwrite ();
47 }
48 }
49
50 }
51