Revert "fix:issue # 262"

This reverts commit 5bfd0c7b2f.
This commit is contained in:
2025-10-18 21:16:24 +08:00
parent db76a11347
commit 086b97906b
+43 -135
View File
@@ -11,7 +11,6 @@ using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Ink;
using System.Windows.Media; using System.Windows.Media;
using System.Windows.Threading; using System.Windows.Threading;
using Application = System.Windows.Application; using Application = System.Windows.Application;
@@ -105,7 +104,6 @@ namespace Ink_Canvas
#region PPT Managers #region PPT Managers
private PPTManager _pptManager; private PPTManager _pptManager;
private MultiPPTInkManager _multiPPTInkManager; private MultiPPTInkManager _multiPPTInkManager;
private PPTInkManager _singlePPTInkManager;
private PPTUIManager _pptUIManager; private PPTUIManager _pptUIManager;
/// <summary> /// <summary>
@@ -135,19 +133,11 @@ namespace Ink_Canvas
_pptManager.PresentationClose += OnPPTPresentationClose; _pptManager.PresentationClose += OnPPTPresentationClose;
_pptManager.SlideShowStateChanged += OnPPTSlideShowStateChanged; _pptManager.SlideShowStateChanged += OnPPTSlideShowStateChanged;
if (Settings.PowerPointSettings.IsSupportWPS) // 初始化多PPT墨迹管理器
{ _multiPPTInkManager = new MultiPPTInkManager();
_singlePPTInkManager = new PPTInkManager(); _multiPPTInkManager.IsAutoSaveEnabled = Settings.PowerPointSettings.IsAutoSaveStrokesInPowerPoint;
_singlePPTInkManager.IsAutoSaveEnabled = Settings.PowerPointSettings.IsAutoSaveStrokesInPowerPoint; _multiPPTInkManager.AutoSaveLocation = Settings.Automation.AutoSavedStrokesLocation;
_singlePPTInkManager.AutoSaveLocation = Settings.Automation.AutoSavedStrokesLocation; _multiPPTInkManager.PPTManager = _pptManager;
}
else
{
_multiPPTInkManager = new MultiPPTInkManager();
_multiPPTInkManager.IsAutoSaveEnabled = Settings.PowerPointSettings.IsAutoSaveStrokesInPowerPoint;
_multiPPTInkManager.AutoSaveLocation = Settings.Automation.AutoSavedStrokesLocation;
_multiPPTInkManager.PPTManager = _pptManager;
}
// 初始化UI管理器 // 初始化UI管理器
_pptUIManager = new PPTUIManager(this); _pptUIManager = new PPTUIManager(this);
@@ -431,12 +421,10 @@ namespace Ink_Canvas
{ {
_pptManager?.Dispose(); _pptManager?.Dispose();
_multiPPTInkManager?.Dispose(); _multiPPTInkManager?.Dispose();
_singlePPTInkManager?.Dispose();
_longPressTimer?.Stop(); _longPressTimer?.Stop();
_longPressTimer = null; _longPressTimer = null;
_pptManager = null; _pptManager = null;
_multiPPTInkManager = null; _multiPPTInkManager = null;
_singlePPTInkManager = null;
_pptUIManager = null; _pptUIManager = null;
// 清理PowerPoint进程守护 // 清理PowerPoint进程守护
@@ -521,14 +509,8 @@ namespace Ink_Canvas
else else
{ {
LogHelper.WriteLogToFile("PPT连接已断开", LogHelper.LogType.Event); LogHelper.WriteLogToFile("PPT连接已断开", LogHelper.LogType.Event);
if (Settings.PowerPointSettings.IsSupportWPS) // 清理墨迹管理器
{ _multiPPTInkManager?.ClearAllStrokes();
_singlePPTInkManager?.ClearAllStrokes();
}
else
{
_multiPPTInkManager?.ClearAllStrokes();
}
} }
}); });
} }
@@ -553,14 +535,8 @@ namespace Ink_Canvas
TimeMachineHistories[0] = null; TimeMachineHistories[0] = null;
} }
if (Settings.PowerPointSettings.IsSupportWPS) // 初始化多PPT墨迹管理器
{ _multiPPTInkManager?.InitializePresentation(pres);
_singlePPTInkManager?.InitializePresentation(pres);
}
else
{
_multiPPTInkManager?.InitializePresentation(pres);
}
// 处理跳转到首页或上次播放页的逻辑 // 处理跳转到首页或上次播放页的逻辑
HandlePresentationOpenNavigation(pres); HandlePresentationOpenNavigation(pres);
@@ -594,15 +570,11 @@ namespace Ink_Canvas
{ {
Application.Current.Dispatcher.InvokeAsync(() => Application.Current.Dispatcher.InvokeAsync(() =>
{ {
if (Settings.PowerPointSettings.IsSupportWPS) // 保存所有墨迹
{ _multiPPTInkManager?.SaveAllStrokesToFile(pres);
_singlePPTInkManager?.SaveAllStrokesToFile(pres);
} // 移除演示文稿管理器
else _multiPPTInkManager?.RemovePresentation(pres);
{
_multiPPTInkManager?.SaveAllStrokesToFile(pres);
_multiPPTInkManager?.RemovePresentation(pres);
}
_pptUIManager?.UpdateConnectionStatus(false); _pptUIManager?.UpdateConnectionStatus(false);
}); });
@@ -667,16 +639,11 @@ namespace Ink_Canvas
Application.Current.Dispatcher.Invoke(() => Application.Current.Dispatcher.Invoke(() =>
{ {
// 获取当前活跃的演示文稿并切换到对应的墨迹管理器
var activePresentation = _pptManager?.GetCurrentActivePresentation(); var activePresentation = _pptManager?.GetCurrentActivePresentation();
if (activePresentation != null) if (activePresentation != null)
{ {
if (Settings.PowerPointSettings.IsSupportWPS) _multiPPTInkManager?.SwitchToPresentation(activePresentation);
{
}
else
{
_multiPPTInkManager?.SwitchToPresentation(activePresentation);
}
} }
// 处理跳转到首页或上次播放位置 // 处理跳转到首页或上次播放位置
@@ -800,16 +767,11 @@ namespace Ink_Canvas
{ {
Application.Current.Dispatcher.InvokeAsync(() => Application.Current.Dispatcher.InvokeAsync(() =>
{ {
// 获取当前活跃的演示文稿并确保切换到正确的墨迹管理器
var activePresentation = _pptManager?.GetCurrentActivePresentation(); var activePresentation = _pptManager?.GetCurrentActivePresentation();
if (activePresentation != null) if (activePresentation != null)
{ {
if (Settings.PowerPointSettings.IsSupportWPS) _multiPPTInkManager?.SwitchToPresentation(activePresentation);
{
}
else
{
_multiPPTInkManager?.SwitchToPresentation(activePresentation);
}
} }
var currentSlide = _pptManager?.GetCurrentSlideNumber() ?? 0; var currentSlide = _pptManager?.GetCurrentSlideNumber() ?? 0;
@@ -862,14 +824,8 @@ namespace Ink_Canvas
if (isEnteredSlideShowEndEvent) return; if (isEnteredSlideShowEndEvent) return;
isEnteredSlideShowEndEvent = true; isEnteredSlideShowEndEvent = true;
if (Settings.PowerPointSettings.IsSupportWPS) // 保存所有墨迹
{ _multiPPTInkManager?.SaveAllStrokesToFile(pres);
_singlePPTInkManager?.SaveAllStrokesToFile(pres);
}
else
{
_multiPPTInkManager?.SaveAllStrokesToFile(pres);
}
await Application.Current.Dispatcher.InvokeAsync(() => await Application.Current.Dispatcher.InvokeAsync(() =>
{ {
@@ -1128,16 +1084,7 @@ namespace Ink_Canvas
{ {
try try
{ {
StrokeCollection strokes = null; var strokes = _multiPPTInkManager?.LoadSlideStrokes(slideIndex);
if (Settings.PowerPointSettings.IsSupportWPS)
{
strokes = _singlePPTInkManager?.LoadSlideStrokes(slideIndex);
}
else
{
strokes = _multiPPTInkManager?.LoadSlideStrokes(slideIndex);
}
if (strokes != null) if (strokes != null)
{ {
inkCanvas.Strokes.Clear(); inkCanvas.Strokes.Clear();
@@ -1157,18 +1104,15 @@ namespace Ink_Canvas
{ {
try try
{ {
if (Settings.PowerPointSettings.IsSupportWPS) // 获取当前活跃的演示文稿
var activePresentation = _pptManager?.GetCurrentActivePresentation();
if (activePresentation != null)
{ {
_singlePPTInkManager?.ResetLockState(); // 切换到对应的墨迹管理器
} _multiPPTInkManager?.SwitchToPresentation(activePresentation);
else
{ // 重置锁定状态
var activePresentation = _pptManager?.GetCurrentActivePresentation(); _multiPPTInkManager?.ResetCurrentPresentationLockState();
if (activePresentation != null)
{
_multiPPTInkManager?.SwitchToPresentation(activePresentation);
_multiPPTInkManager?.ResetCurrentPresentationLockState();
}
} }
} }
catch (Exception ex) catch (Exception ex)
@@ -1282,41 +1226,26 @@ namespace Ink_Canvas
// 如果有当前墨迹且不是第一次切换,先保存到当前页面 // 如果有当前墨迹且不是第一次切换,先保存到当前页面
if (inkCanvas.Strokes.Count > 0 && currentSlideIndex > 0 && currentSlideIndex != newSlideIndex) if (inkCanvas.Strokes.Count > 0 && currentSlideIndex > 0 && currentSlideIndex != newSlideIndex)
{ {
bool canWrite = false; // 检查是否可以写入墨迹
if (Settings.PowerPointSettings.IsSupportWPS) bool canWrite = _multiPPTInkManager?.CanWriteInk(currentSlideIndex) == true;
{
canWrite = _singlePPTInkManager?.CanWriteInk(currentSlideIndex) == true;
}
else
{
canWrite = _multiPPTInkManager?.CanWriteInk(currentSlideIndex) == true;
}
if (canWrite) if (canWrite)
{ {
if (Settings.PowerPointSettings.IsSupportWPS) // 正常保存
{ _multiPPTInkManager?.SaveCurrentSlideStrokes(currentSlideIndex, inkCanvas.Strokes);
_singlePPTInkManager?.SaveCurrentSlideStrokes(currentSlideIndex, inkCanvas.Strokes); }
} else
else {
{ // 墨迹被锁定,跳过保存以避免墨迹错页
_multiPPTInkManager?.SaveCurrentSlideStrokes(currentSlideIndex, inkCanvas.Strokes);
}
} }
} }
else if (inkCanvas.Strokes.Count > 0 && currentSlideIndex <= 0) else if (inkCanvas.Strokes.Count > 0 && currentSlideIndex <= 0)
{ {
// 无法获取当前页面索引时,不保存墨迹,直接清空
} }
StrokeCollection newStrokes = null; // 切换到新页面并加载墨迹
if (Settings.PowerPointSettings.IsSupportWPS) var newStrokes = _multiPPTInkManager?.SwitchToSlide(newSlideIndex, null);
{
newStrokes = _singlePPTInkManager?.SwitchToSlide(newSlideIndex, null);
}
else
{
newStrokes = _multiPPTInkManager?.SwitchToSlide(newSlideIndex, null);
}
if (newStrokes != null) if (newStrokes != null)
{ {
inkCanvas.Strokes.Clear(); inkCanvas.Strokes.Clear();
@@ -1457,14 +1386,7 @@ namespace Ink_Canvas
var currentSlide = _pptManager?.GetCurrentSlideNumber() ?? 0; var currentSlide = _pptManager?.GetCurrentSlideNumber() ?? 0;
if (currentSlide > 0) if (currentSlide > 0)
{ {
if (Settings.PowerPointSettings.IsSupportWPS) _multiPPTInkManager?.SaveCurrentSlideStrokes(currentSlide, inkCanvas.Strokes);
{
_singlePPTInkManager?.SaveCurrentSlideStrokes(currentSlide, inkCanvas.Strokes);
}
else
{
_multiPPTInkManager?.SaveCurrentSlideStrokes(currentSlide, inkCanvas.Strokes);
}
} }
// 保存截图(如果启用) // 保存截图(如果启用)
@@ -1504,14 +1426,7 @@ namespace Ink_Canvas
var currentSlide = _pptManager?.GetCurrentSlideNumber() ?? 0; var currentSlide = _pptManager?.GetCurrentSlideNumber() ?? 0;
if (currentSlide > 0) if (currentSlide > 0)
{ {
if (Settings.PowerPointSettings.IsSupportWPS) _multiPPTInkManager?.SaveCurrentSlideStrokes(currentSlide, inkCanvas.Strokes);
{
_singlePPTInkManager?.SaveCurrentSlideStrokes(currentSlide, inkCanvas.Strokes);
}
else
{
_multiPPTInkManager?.SaveCurrentSlideStrokes(currentSlide, inkCanvas.Strokes);
}
} }
// 保存截图(如果启用) // 保存截图(如果启用)
@@ -1670,14 +1585,7 @@ namespace Ink_Canvas
{ {
Application.Current.Dispatcher.Invoke(() => Application.Current.Dispatcher.Invoke(() =>
{ {
if (Settings.PowerPointSettings.IsSupportWPS) _multiPPTInkManager?.SaveCurrentSlideStrokes(currentSlide, inkCanvas.Strokes);
{
_singlePPTInkManager?.SaveCurrentSlideStrokes(currentSlide, inkCanvas.Strokes);
}
else
{
_multiPPTInkManager?.SaveCurrentSlideStrokes(currentSlide, inkCanvas.Strokes);
}
timeMachine.ClearStrokeHistory(); timeMachine.ClearStrokeHistory();
}); });
} }