// -------------------------------------------------------------------------------------------------------------------- // // 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 HandBrake.ApplicationServices.Attributes; /// /// A enum representing each tab on the options screen. /// public enum OptionsTab { [DisplayName("General")] General = 0, [DisplayName("Output Files")] OutputFiles, [DisplayName("Video")] Video, [DisplayName("Advanced")] Advanced, [DisplayName("Updates")] Updates, [DisplayName("About HandBrake")] About, } }