// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The preview settings. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model.Preview { using Encoding; /// /// The preview settings. /// public class PreviewSettings { /// /// Initializes a new instance of the class. /// public PreviewSettings() { } /// /// Gets or sets the cropping. /// public Cropping Cropping { get; set; } /// /// Gets or sets the max width. /// public int MaxWidth { get; set; } /// /// Gets or sets the max height. /// public int MaxHeight { get; set; } /// /// Gets or sets a value indicating whether keep display aspect. /// public bool KeepDisplayAspect { get; set; } /// /// Gets or sets the title number. /// public int TitleNumber { get; set; } /// /// Gets or sets the anamorphic. /// public Anamorphic Anamorphic { get; set; } /// /// Gets or sets the modulus. /// public int? Modulus { get; set; } /// /// Gets or sets the width. /// public int Width { get; set; } /// /// Gets or sets the height. /// public int Height { get; set; } /// /// Gets or sets the pixel aspect x. /// public int PixelAspectX { get; set; } /// /// Gets or sets the pixel aspect y. /// public int PixelAspectY { get; set; } } }