mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-27 05:15:05 +00:00
133 lines
3.7 KiB
C#
133 lines
3.7 KiB
C#
using System;
|
|
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Controls.Primitives;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.Media;
|
|
|
|
using AvaloniaEdit;
|
|
using AvaloniaEdit.Document;
|
|
using AvaloniaEdit.Editing;
|
|
using AvaloniaEdit.TextMate;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public class AIResponseView : TextEditor
|
|
{
|
|
public static readonly StyledProperty<string> ContentProperty =
|
|
AvaloniaProperty.Register<AIResponseView, string>(nameof(Content), string.Empty);
|
|
|
|
public string Content
|
|
{
|
|
get => GetValue(ContentProperty);
|
|
set => SetValue(ContentProperty, value);
|
|
}
|
|
|
|
protected override Type StyleKeyOverride => typeof(TextEditor);
|
|
|
|
public AIResponseView() : base(new TextArea(), new TextDocument())
|
|
{
|
|
IsReadOnly = true;
|
|
ShowLineNumbers = false;
|
|
WordWrap = true;
|
|
HorizontalScrollBarVisibility = ScrollBarVisibility.Disabled;
|
|
VerticalScrollBarVisibility = ScrollBarVisibility.Auto;
|
|
|
|
TextArea.TextView.Margin = new Thickness(4, 0);
|
|
TextArea.TextView.Options.EnableHyperlinks = false;
|
|
TextArea.TextView.Options.EnableEmailHyperlinks = false;
|
|
}
|
|
|
|
protected override void OnLoaded(RoutedEventArgs e)
|
|
{
|
|
base.OnLoaded(e);
|
|
|
|
TextArea.TextView.ContextRequested += OnTextViewContextRequested;
|
|
|
|
if (_textMate == null)
|
|
{
|
|
_textMate = Models.TextMateHelper.CreateForEditor(this);
|
|
Models.TextMateHelper.SetGrammarByFileName(_textMate, "README.md");
|
|
}
|
|
}
|
|
|
|
protected override void OnUnloaded(RoutedEventArgs e)
|
|
{
|
|
base.OnUnloaded(e);
|
|
|
|
TextArea.TextView.ContextRequested -= OnTextViewContextRequested;
|
|
|
|
if (_textMate != null)
|
|
{
|
|
_textMate.Dispose();
|
|
_textMate = null;
|
|
}
|
|
|
|
GC.Collect();
|
|
}
|
|
|
|
protected override void OnPropertyChanged(AvaloniaPropertyChangedEventArgs change)
|
|
{
|
|
base.OnPropertyChanged(change);
|
|
|
|
if (change.Property == ContentProperty)
|
|
{
|
|
Text = Content;
|
|
}
|
|
}
|
|
|
|
private void OnTextViewContextRequested(object sender, ContextRequestedEventArgs e)
|
|
{
|
|
var selected = SelectedText;
|
|
if (string.IsNullOrEmpty(selected))
|
|
return;
|
|
|
|
var copy = new MenuItem() { Header = App.Text("Copy") };
|
|
copy.Click += (_, ev) =>
|
|
{
|
|
App.CopyText(selected);
|
|
ev.Handled = true;
|
|
};
|
|
|
|
if (this.FindResource("Icons.Copy") is Geometry geo)
|
|
{
|
|
copy.Icon = new Avalonia.Controls.Shapes.Path()
|
|
{
|
|
Width = 10,
|
|
Height = 10,
|
|
Stretch = Stretch.Uniform,
|
|
Data = geo,
|
|
};
|
|
}
|
|
|
|
var menu = new ContextMenu();
|
|
menu.Items.Add(copy);
|
|
menu.Open(TextArea.TextView);
|
|
|
|
e.Handled = true;
|
|
}
|
|
|
|
private TextMate.Installation _textMate = null;
|
|
}
|
|
|
|
public partial class AIAssistant : ChromelessWindow
|
|
{
|
|
public AIAssistant()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnClosing(WindowClosingEventArgs e)
|
|
{
|
|
base.OnClosing(e);
|
|
(DataContext as ViewModels.AIAssistant)?.Cancel();
|
|
}
|
|
|
|
private void OnApply(object sender, RoutedEventArgs e)
|
|
{
|
|
(DataContext as ViewModels.AIAssistant)?.Apply();
|
|
Close();
|
|
}
|
|
}
|
|
}
|