aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Advanced Installer Projects/PPC Installer-cache
ModeNameSize
-rw-r--r--cacheIndex.txt52logstatsplain
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Common;

namespace Tango.PPC.Jobs.ViewContracts
{
    /// <summary>
    /// Represents the job view contract.
    /// </summary>
    /// <seealso cref="Tango.PPC.Common.IPPCView" />
    public interface IJobView : IPPCView
    {
        /// <summary>
        /// Displays the sample dye region.
        /// </summary>
        void DisplaySampleDye();

        /// <summary>
        /// Displays the fine tuning region.
        /// </summary>
        void DisplayFineTuning();

        /// <summary>
        /// Scrolls to top.
        /// </summary>
        void ScrollToTop();
    }
}