///////////////////////////////////////////////////////////////////////////////// // Paint.NET // // Copyright (C) Rick Brewster, Tom Jackson, and past contributors. // // Portions Copyright (C) Microsoft Corporation. All Rights Reserved. // // See src/Resources/Files/License.txt for full licensing and attribution // // details. // // . // ///////////////////////////////////////////////////////////////////////////////// using System; namespace PaintDotNet.Effects { /// /// Categories for effects that determine their placement within /// Paint.NET //'s menu hierarchy. /// public enum EffectCategory { /// /// The default category for an effect. This will place effects in to the "Effects" menu. /// Effect, /// /// Signifies that this effect should be an "Image Adjustment", placing the effect in /// the "Adjustments" submenu in the "Layers" menu. /// These types of effects are typically quick to execute. They are also preferably /// "unary" (see EffectTypeHint) but are not required to be. /// Adjustment, /// /// Signifies that this effect should not be displayed in any menu. /// DoNotDisplay } }