// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // A enum representing each tab on the options screen. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Model { using System.ComponentModel.DataAnnotations; /// /// A enum representing each tab on the options screen. /// public enum OptionsTab { [Display(Name = "General")] General = 0, [Display(Name = "Output Files")] OutputFiles, [Display(Name = "Video")] Video, [Display(Name = "Advanced")] Advanced, [Display(Name = "Updates")] Updates, [Display(Name = "About HandBrake")] About, } }