~elementary-apps/pantheon-photos/loki

« back to all changes in this revision

Viewing changes to src/DirectoryMonitor.vala

  • Committer: Jim Nelson
  • Date: 2011-01-18 02:41:35 UTC
  • Revision ID: git-v1:d0a1fdf2ec5a25889ffcabd0545b70d3fd328655
#182: Further work in building infrastructure to support plug-ins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
//
59
59
 
60
60
public class DirectoryMonitor : Object {
61
 
    public const string SUPPLIED_ATTRIBUTES = "standard::*,time::*,id::file,id::filesystem,etag::value";
62
61
    public const int DEFAULT_PRIORITY = Priority.LOW;
63
62
    public const FileQueryInfoFlags DIR_INFO_FLAGS = FileQueryInfoFlags.NONE;
64
63
    public const FileQueryInfoFlags FILE_INFO_FLAGS = FileQueryInfoFlags.NOFOLLOW_SYMLINKS;
69
68
    public const bool SUPPORT_DIR_SYMLINKS = true;
70
69
    public const bool SUPPORT_FILE_SYMLINKS = false;
71
70
    
 
71
    protected const string SUPPLIED_ATTRIBUTES = Util.FILE_ATTRIBUTES;
 
72
    
72
73
    private const FileMonitorFlags FILE_MONITOR_FLAGS = FileMonitorFlags.SEND_MOVED;
73
74
    private const uint DELETED_EXPIRATION_MSEC = 500;
74
75
    private const int MAX_EXPLORATION_DIRS = 5;