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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/***
Copyright (C) 2011 ammonkey <am.monkeyd@gmail.com>
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, Inc.,, either version 3 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/>.
***/
namespace GOF {
public static Preferences? preferences = null;
public class Preferences : Object {
public const string TAGS_COLORS[10] = { null, "#fce94f", "#fcaf3e", "#997666", "#8ae234", "#729fcf", "#ad7fa8", "#ef2929", "#d3d7cf", "#888a85" };
public bool pref_show_hidden_files = false;
public bool show_hidden_files {
get {
return pref_show_hidden_files;
}
set {
pref_show_hidden_files = value;
}
}
public bool show_remote_thumbnails {set; get; default=false;}
public bool pref_confirm_trash = true;
public bool confirm_trash {
get {
return pref_confirm_trash;
}
set {
pref_confirm_trash = value;
}
}
public bool pref_force_icon_size = true;
public bool force_icon_size {
get {
return pref_force_icon_size;
}
set {
pref_force_icon_size = value;
}
}
public string pref_date_format = "iso";
public string date_format {
get {
return pref_date_format;
}
set {
pref_date_format = value;
}
}
public class Preferences () {
}
public static Preferences get_default () {
if (preferences != null)
return preferences;
preferences = new Preferences ();
return preferences;
}
}
}
|