~do-plugins/do-plugins/future

« back to all changes in this revision

Viewing changes to File/src/Do.FilesAndFolders/Preferences.cs

  • Committer: David Siegel
  • Date: 2008-12-23 22:55:20 UTC
  • Revision ID: david@david-desktop-20081223225520-fqdedh21xtm635wl
Update File plugin (had to replace files, merge was very difficult).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Preferences.cs
 
2
 *
 
3
 * GNOME Do is the legal property of its developers. Please refer to the
 
4
 * COPYRIGHT file distributed with this
 
5
 * source distribution.
 
6
 *
 
7
 * This program is free software: you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation, either version 3 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
 
 
21
using System;
 
22
using System.IO;
 
23
using System.Linq;
 
24
using System.Collections.Generic;
 
25
 
 
26
using Do.Platform;
 
27
 
 
28
namespace Do.FilesAndFolders
 
29
{
 
30
        
 
31
        class FilesAndFoldersPreferences
 
32
        {
 
33
 
 
34
                #region Preference keys and default values.
 
35
                const string IncludeHiddenFilesKey = "IncludeHiddenFiles";
 
36
                const string MaximumFilesIndexedKey = "MaximumFilesIndexed";
 
37
 
 
38
                const bool IncludeHiddenFilesDefaultValue = false;
 
39
                const int MaximumFilesIndexedDefaultValue = 3000;
 
40
                #endregion
 
41
 
 
42
                IPreferences Prefs { get; set; }
 
43
                
 
44
                public bool IncludeHiddenFiles {
 
45
                        get { return Prefs.Get (IncludeHiddenFilesKey, IncludeHiddenFilesDefaultValue); }
 
46
                        set { Prefs.Set (IncludeHiddenFilesKey, value); }
 
47
                }
 
48
 
 
49
                public int MaximumFilesIndexed {
 
50
                        get { return Prefs.Get (MaximumFilesIndexedKey, MaximumFilesIndexedDefaultValue); }
 
51
                        set { Prefs.Set (MaximumFilesIndexedKey, value); }
 
52
                }
 
53
                
 
54
                public FilesAndFoldersPreferences ()
 
55
                {
 
56
                        Prefs = Services.Preferences.Get<FilesAndFoldersPreferences> ();
 
57
                }
 
58
                
 
59
        }
 
60
}