Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display output dialog content in tabs #1216

Merged
merged 10 commits into from
Dec 28, 2024
2 changes: 2 additions & 0 deletions src/Beutl.Extensibility/OutputExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ public interface IOutputContext : IDisposable, IJsonSerializable

string TargetFile { get; }

IReactiveProperty<string> Name { get; }

IReadOnlyReactiveProperty<bool> IsIndeterminate { get; }

IReadOnlyReactiveProperty<bool> IsEncoding { get; }
Expand Down
75 changes: 0 additions & 75 deletions src/Beutl/Pages/AddOutputQueueDialog.axaml

This file was deleted.

74 changes: 0 additions & 74 deletions src/Beutl/Pages/AddOutputQueueDialog.axaml.cs

This file was deleted.

74 changes: 0 additions & 74 deletions src/Beutl/Pages/OutputDialog.axaml

This file was deleted.

108 changes: 0 additions & 108 deletions src/Beutl/Pages/OutputDialog.axaml.cs

This file was deleted.

1 change: 0 additions & 1 deletion src/Beutl/Services/EditorService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ public void ActivateTabItem(string? file)

if (ext?.TryCreateContext(file, out IEditorContext? context) == true)
{
context.IsEnabled.Value = !OutputService.Current.Items.Any(x => x.Context.TargetFile == file && x.Context.IsEncoding.Value);
var tabItem2 = new EditorTabItem(context)
{
IsSelected =
Expand Down
Loading
Loading