public TLEPCEManagementBeatTests() { editor = new TimeLineEditor(); var timeLine = MockObjects.GetTimeLine2(); editor.AttachTimeLineToEditor(timeLine); Management = new TLEPCEManagementBeat(editor); }
TimeLineEditor TLE;// = new TimeLineEditor(); public TimeLineEditorTests() { TLE = new TimeLineEditor(); TimeLine tl = GetTimeLine(); TLE.AttachTimeLineToEditor(tl); }
public TLEPCEManagementAnimationElementTests() { editor = new TimeLineEditor(); var timeLine = MockObjects.GetTimeLine2(); editor.AttachTimeLineToEditor(timeLine); //editor.PanelHub.InitializeDefaultPanels(timeLine); Management = new TLEPCEManagementAnimationElement(editor); }
public TLEPCEManagementAnimationRouteTests() { editor = new TimeLineEditor(); var timeLine = MockObjects.GetTimeLine2(); editor.AttachTimeLineToEditor(timeLine); Management = new TLEPCEManagementAnimationRoute(editor); var animationElementPanel = Management.ParentTLE.PanelHub.GetPanel(TLEPanelNames.ANIMATION_ELEMENT_PREFIX + "0"); var animationElementCell = animationElementPanel.PanelCells.FirstOrDefault(); Management.ParentTLE.PanelHub.SelectPanelCell(animationElementCell); }
public TLEPCEManagementAnimationElement(TimeLineEditor parent) { ParentTLE = parent; }
public TLEPCEManagementBeat(TimeLineEditor parent) { ParentTLE = parent; }