Statistics
| Branch: | Revision:

root / trunk / Pithos.ShellExtensions / Menus / DisplayFlags.cs @ 3c43ec9b

History | View | Annotate | Download (800 Bytes)

1
// <copyright file="DisplayFlags.cs" company="GRNet">
2
// This project is open source. Released under the XYZ license
3
// </copyright>
4

    
5
namespace Pithos.ShellExtensions.Menus
6
{
7
    using System;
8

    
9
    /// <summary>
10
    /// Specifies whether a context menu item is displayed for files, folders or both.
11
    /// </summary>
12
    [Flags]
13
    public enum DisplayFlags
14
    {
15
        /// <summary>
16
        /// Don't display the item at all
17
        /// </summary>
18
        None,
19

    
20
        /// <summary>
21
        /// Display the item only on folders
22
        /// </summary>
23
        Folder,
24

    
25
        /// <summary>
26
        /// Display the item only on files
27
        /// </summary>
28
        File,
29

    
30
        /// <summary>
31
        /// Display the item both on folders and files
32
        /// </summary>
33
        All
34
    }
35
}