// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The Main Window View Model
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels.Interfaces
{
using HandBrake.ApplicationServices.Model;
///
/// The Main Window View Model
///
public interface IMainViewModel
{
///
/// Sets SelectedPreset.
///
Preset SelectedPreset { set; }
///
/// Shutdown the Application
///
void ExitApplication();
///
/// Open the Log Window
///
void OpenLogWindow();
///
/// Open the Queue Window.
///
void OpenQueueWindow();
///
/// Add the current task to the queue.
///
void AddToQueue();
///
/// File Scan
///
void FileScan();
///
/// Folder Scan
///
void FolderScan();
///
/// Stop an Encode.
///
void StopEncode();
///
/// Start an Encode
///
void StartEncode();
///
/// Edit a Queue Task
///
///
/// The task.
///
void EditQueueJob(EncodeTask task);
}
}