Statistics
| Branch: | Revision:

root / trunk / Pithos.ShellExtensions / Menus / DisplayFlags.cs @ 42800be8

History | View | Annotate | Download (919 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 container folders
32
        /// </summary>
33
        Container,
34
        /// <summary>
35
        /// Display the item both on folders and files
36
        /// </summary>
37
        All
38
    }
39
}