Files
DP44/Common/DTS.Common/Interface/DTS.Viewer/Graphs/IExportGraphMainViewModel.cs

40 lines
1.8 KiB
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Threading;
using DTS.Common.Base;
// ReSharper disable CheckNamespace
namespace DTS.Common.Interface
{
public interface IExportGraphMainViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Graph Main View.
/// </summary>
IExportGraphMainView View { get; set; }
IBaseViewModel Parent { get; set; }
List<ITestChannel> LockedChannelList { get; set; }
List<ITestChannel> SelectedChannelList { get; set; }
List<ITestEvent> SelectedEventList { get; set; }
string LockedGroupName { get; set; }
void PublishSelectedChannels();
void AddSelectedChannel(ITestChannel channel);
void AddSelectedGroupChannels(string groupName, List<ITestChannel> channels);
void AddToSelectedEvents(string groupName, List<ITestEvent> events);
void RemoveFromSelectedEvents(string groupName, List<ITestEvent> events);
void SetItemsBetween(int startTreeIndex, int endTreeIndex);
void ResetAllItems();
void AddLockedChannel(ITestChannel channel, bool isLocked);
void AddLockedEvents(string testName, string groupName, List<ITestEvent> events, bool isLocked);
void AddLockedGroupChannels(string testName, string groupName, List<ITestChannel> channels, bool isLocked);
void GraphList_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e);
bool SettingChildNodesToTrue { get; set; }
bool SettingOrResettingChildNodes { get; set; }
bool SettingPeerNodeToTrue { get; set; }
bool SettingItemsBetween { get; set; }
bool ResettingAllItems { get; set; }
int LastIndexChecked { get; }
void SetLastIndexChecked(int index);
}
}