2023-02-21 19:47:46 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
2023-03-11 22:27:23 +08:00
|
|
|
|
using System.Windows.Media;
|
2023-02-27 20:18:58 +08:00
|
|
|
|
using AIStudio.Wpf.DiagramDesigner;
|
2023-02-21 19:47:46 +08:00
|
|
|
|
using AIStudio.Wpf.Mind.ViewModels;
|
|
|
|
|
|
|
|
|
|
|
|
namespace AIStudio.Wpf.Mind.Helpers
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IMindLayout
|
|
|
|
|
|
{
|
2023-03-11 22:27:23 +08:00
|
|
|
|
void Appearance(MindNode mindNode);
|
|
|
|
|
|
void Appearance(MindNode mindNode, MindThemeModel mindThemeModel, bool initAppearance);
|
2023-03-05 23:22:34 +08:00
|
|
|
|
ConnectionViewModel GetOrSetConnectionViewModel(MindNode source, MindNode sink, ConnectionViewModel connector = null);
|
2023-02-21 19:47:46 +08:00
|
|
|
|
void LayoutUpdated(MindNode mindNode);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|