// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The Options Screen View Model Interface // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.ViewModels.Interfaces { using HandBrakeWPF.Model; /// /// The Options Screen View Model Interface /// public interface IOptionsViewModel { /// /// The goto tab. /// /// /// The tab. /// void GotoTab(OptionsTab tab); /// /// Refresh certain UI controls that can be updated outside preferences. /// void UpdateSettings(); } }