Files
DP44/Common/DTS.Common/.svn/pristine/04/04759de1c0b867c3ecee21fc6de8ddfa89a02757.svn-base

38 lines
1.4 KiB
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Collections.Generic;
using System.Windows;
using DTS.Common.Base;
// ReSharper disable once CheckNamespace
namespace DTS.Common.Interface
{
public interface IExportMainViewModel : IBaseViewModel, ISelectedDataViewModel
{
/// <summary>
/// Gets the Main View.
/// </summary>
IBaseView View { get; set; }
bool Standalone { get; set; }
object ContextNavigationRegion { get; set; }
object ContextGraphRegion { get; set; }
object ContextGraphsRegion { get; set; }
object ContextPropertyRegion { get; set; }
List<FrameworkElement> GetRegions();
string ConfigPath { get; set; }
bool DoesUserHaveEditPermission { get; set; }
void ZoomReset();
//inform left arrow key was pressed
void LeftKeyPress();
//inform right arrow key was pressed
void RightKeyPress();
Common.Enums.IsoViewMode ChannelCodeViewMode { get; set; }
Common.Enums.Sensors.CalibrationBehaviors CalibrationBehaviorSetting { get; set; }
bool CalibrationBehaviorSettableInViewer { get; set; }
Visibility SettingsVisibility { get; }
string SelectedTest { get; set; }
string SelectedDTSFile { get; set; }
void AddSelectedEvents(string groupName, List<ITestEvent> events);
List<string> AvailableTestIds { get; set; }
}
}