v1.2.0: 重构为插件+独立Manager架构,横版UI,精确保留文本框边距的文档转换
This commit is contained in:
35
Manager/ActivateDialog.xaml
Normal file
35
Manager/ActivateDialog.xaml
Normal file
@@ -0,0 +1,35 @@
|
||||
<Window x:Class="BetterSeewo.Manager.ActivateDialog"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
Title="专业版激活" Height="260" Width="440"
|
||||
WindowStartupLocation="CenterOwner"
|
||||
WindowStyle="SingleBorderWindow"
|
||||
ResizeMode="NoResize"
|
||||
FontSize="14">
|
||||
<Window.Resources>
|
||||
<Style TargetType="Button">
|
||||
<Setter Property="Padding" Value="20,8"/>
|
||||
<Setter Property="Margin" Value="8"/>
|
||||
<Setter Property="Cursor" Value="Hand"/>
|
||||
</Style>
|
||||
</Window.Resources>
|
||||
<Grid Margin="20">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock Grid.Row="0" Text="输入 Better-Seewo 专业版激活码" FontSize="16" FontWeight="SemiBold" Margin="0,0,0,16"/>
|
||||
<TextBox Grid.Row="1" x:Name="KeyTextBox" FontSize="18" Padding="8"
|
||||
HorizontalAlignment="Stretch" TextChanged="OnKeyTextChanged"/>
|
||||
<TextBlock Grid.Row="2" x:Name="HintText" Text="激活码通常由 16 位以上字母和数字组成"
|
||||
Foreground="Gray" FontSize="12" Margin="0,6,0,0"/>
|
||||
<StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,16,0,0">
|
||||
<Button Content="取消" IsCancel="True" Width="80"/>
|
||||
<Button x:Name="ActivateButton" Content="激活" IsDefault="True" Width="80"
|
||||
IsEnabled="False" Click="Activate_Click"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Window>
|
||||
27
Manager/ActivateDialog.xaml.cs
Normal file
27
Manager/ActivateDialog.xaml.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System.Windows;
|
||||
|
||||
namespace BetterSeewo.Manager
|
||||
{
|
||||
public partial class ActivateDialog : Window
|
||||
{
|
||||
public string LicenseKey { get; private set; } = "";
|
||||
|
||||
public ActivateDialog()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void OnKeyTextChanged(object sender, System.Windows.Controls.TextChangedEventArgs e)
|
||||
{
|
||||
ActivateButton.IsEnabled = KeyTextBox.Text.Trim().Length >= 4;
|
||||
}
|
||||
|
||||
private void Activate_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
LicenseKey = KeyTextBox.Text.Trim();
|
||||
DialogResult = true;
|
||||
Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
15
Manager/App.xaml
Normal file
15
Manager/App.xaml
Normal file
@@ -0,0 +1,15 @@
|
||||
<Application x:Class="BetterSeewo.Manager.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
StartupUri="MainWindow.xaml">
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
<Color x:Key="Bg">#0F0F1A</Color>
|
||||
<Color x:Key="CardBg">#1A1A2E</Color>
|
||||
<Color x:Key="Accent">#60B0FF</Color>
|
||||
<Color x:Key="Fg">#D0D0E0</Color>
|
||||
<Color x:Key="SubFg">#707090</Color>
|
||||
<SolidColorBrush x:Key="BorderBrush" Color="#25FFFFFF"/>
|
||||
</ResourceDictionary>
|
||||
</Application.Resources>
|
||||
</Application>
|
||||
8
Manager/App.xaml.cs
Normal file
8
Manager/App.xaml.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System.Windows;
|
||||
|
||||
namespace BetterSeewo.Manager
|
||||
{
|
||||
public partial class App : Application
|
||||
{
|
||||
}
|
||||
}
|
||||
230
Manager/MainWindow.xaml
Normal file
230
Manager/MainWindow.xaml
Normal file
@@ -0,0 +1,230 @@
|
||||
<Window x:Class="BetterSeewo.Manager.MainWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
Title="Better-Seewo 管理工具"
|
||||
Width="860" Height="560"
|
||||
MinWidth="720" MinHeight="420"
|
||||
WindowStyle="None" ResizeMode="CanResize"
|
||||
AllowsTransparency="True" Background="Transparent"
|
||||
WindowStartupLocation="CenterScreen"
|
||||
FontSize="13">
|
||||
<Border CornerRadius="10" Background="#0F0F1A" BorderBrush="#25FFFFFF" BorderThickness="1">
|
||||
<Border.Effect>
|
||||
<DropShadowEffect BlurRadius="20" ShadowDepth="3" Opacity="0.3" Color="Black"/>
|
||||
</Border.Effect>
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="36"/>
|
||||
<RowDefinition Height="40"/>
|
||||
<RowDefinition Height="1"/>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="24"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Border Grid.Row="0" Background="#1A1A2E" CornerRadius="10,10,0,0">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<StackPanel Grid.Column="0" Orientation="Horizontal" Margin="12,0">
|
||||
<TextBlock Text="✦" FontSize="11" Foreground="#60B0FF" VerticalAlignment="Center"/>
|
||||
<TextBlock Text=" Better-Seewo Manager" FontSize="12" Foreground="#C0C0D0" VerticalAlignment="Center" Margin="4,0,0,0"/>
|
||||
</StackPanel>
|
||||
<StackPanel Grid.Column="1" Orientation="Horizontal">
|
||||
<Button x:Name="MinBtn" Content="─" Width="26" Height="20"
|
||||
Background="Transparent" BorderThickness="0"
|
||||
Foreground="#707090" FontSize="11"
|
||||
Cursor="Hand" Click="Minimize_Click"/>
|
||||
<Button x:Name="MaxBtn" Content="□" Width="26" Height="20"
|
||||
Background="Transparent" BorderThickness="0"
|
||||
Foreground="#707090" FontSize="11"
|
||||
Cursor="Hand" Click="Maximize_Click"/>
|
||||
<Button x:Name="CloseBtn" Content="✕" Width="26" Height="20"
|
||||
Background="Transparent" BorderThickness="0"
|
||||
Foreground="#707090" FontSize="11"
|
||||
Cursor="Hand" Click="Close_Click"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
<Border Grid.Row="1" Background="#12121E" Padding="8,0">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<RadioButton x:Name="TabInstall" GroupName="Nav" IsChecked="True"
|
||||
Content=" 安装管理 " Foreground="#D0D0E0"
|
||||
Background="#1A1A2E" BorderThickness="0"
|
||||
Cursor="Hand" Height="28" Padding="14,0"
|
||||
Checked="TabChanged" FontSize="12"/>
|
||||
<RadioButton x:Name="TabInk" GroupName="Nav"
|
||||
Content=" 墨迹管理 " Foreground="#D0D0E0"
|
||||
Background="#1A1A2E" BorderThickness="0"
|
||||
Cursor="Hand" Height="28" Padding="14,0"
|
||||
Checked="TabChanged" FontSize="12"/>
|
||||
<RadioButton x:Name="TabConvert" GroupName="Nav"
|
||||
Content=" 文件转换 " Foreground="#D0D0E0"
|
||||
Background="#1A1A2E" BorderThickness="0"
|
||||
Cursor="Hand" Height="28" Padding="14,0"
|
||||
Checked="TabChanged" FontSize="12"/>
|
||||
<RadioButton x:Name="TabTouch" GroupName="Nav"
|
||||
Content=" 触摸修复 " Foreground="#D0D0E0"
|
||||
Background="#1A1A2E" BorderThickness="0"
|
||||
Cursor="Hand" Height="28" Padding="14,0"
|
||||
Checked="TabChanged" FontSize="12"/>
|
||||
<RadioButton x:Name="TabActivate" GroupName="Nav"
|
||||
Content=" 激活 " Foreground="#D0D0E0"
|
||||
Background="#1A1A2E" BorderThickness="0"
|
||||
Cursor="Hand" Height="28" Padding="14,0"
|
||||
Checked="TabChanged" FontSize="12"/>
|
||||
</StackPanel>
|
||||
</Border>
|
||||
|
||||
<Rectangle Grid.Row="2" Fill="#252540" Height="1" Opacity="0.5"/>
|
||||
|
||||
<ScrollViewer Grid.Row="3" Background="#0D0D18" Padding="20,14"
|
||||
VerticalScrollBarVisibility="Auto">
|
||||
<StackPanel>
|
||||
<!-- Install -->
|
||||
<StackPanel x:Name="PageInstall" Visibility="Visible">
|
||||
<TextBlock Text="安装管理" FontSize="18" FontWeight="SemiBold"
|
||||
Foreground="#60B0FF" Margin="0,0,0,6"/>
|
||||
<TextBlock x:Name="InstallStatusText" Text="正在检测状态..." FontSize="12"
|
||||
Foreground="#707090" Margin="0,0,0,14"/>
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="12"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Button Grid.Column="0" x:Name="InstallBtn" Content="安装补丁" Width="160" Height="32"
|
||||
Cursor="Hand" Click="InstallPatch_Click"/>
|
||||
<Button Grid.Column="2" x:Name="UninstallBtn" Content="卸载补丁" Width="160" Height="32"
|
||||
Cursor="Hand" Click="UninstallPatch_Click" IsEnabled="False"/>
|
||||
</Grid>
|
||||
<TextBlock x:Name="PatchDetailText" FontSize="11" Foreground="#707090"
|
||||
TextWrapping="Wrap" Margin="0,10,0,0"/>
|
||||
</StackPanel>
|
||||
|
||||
<!-- Ink -->
|
||||
<StackPanel x:Name="PageInk" Visibility="Collapsed">
|
||||
<TextBlock Text="墨迹管理" FontSize="18" FontWeight="SemiBold"
|
||||
Foreground="#60B0FF" Margin="0,0,0,6"/>
|
||||
<TextBlock Text="保存/打开白板中的墨笔笔迹,支持自动保存" FontSize="12"
|
||||
Foreground="#707090" Margin="0,0,0,14"/>
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="12"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="12"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Button Grid.Column="0" Content="导出墨迹..." Width="120" Height="32" Cursor="Hand" Click="ExportInk_Click"/>
|
||||
<Button Grid.Column="2" Content="导入墨迹..." Width="120" Height="32" Cursor="Hand" Click="ImportInk_Click"/>
|
||||
<Button Grid.Column="4" Content="设置..." Width="120" Height="32" Cursor="Hand" Click="InkSettings_Click"/>
|
||||
</Grid>
|
||||
<TextBlock x:Name="InkStatus" FontSize="11" Foreground="#707090" Margin="0,8,0,0"/>
|
||||
<!-- Auto-save settings -->
|
||||
<Border Background="#1A1A2E" CornerRadius="6" Padding="12" Margin="0,12,0,0"
|
||||
BorderBrush="#25FFFFFF" BorderThickness="1">
|
||||
<StackPanel>
|
||||
<TextBlock Text="自动保存设置" FontSize="13" FontWeight="SemiBold"
|
||||
Foreground="#D0D0E0" Margin="0,0,0,8"/>
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="100"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<TextBlock Grid.Row="0" Grid.Column="0" Text="启用" Foreground="#707090" VerticalAlignment="Center"/>
|
||||
<CheckBox Grid.Row="0" Grid.Column="1" x:Name="AutoSaveEnabled" Foreground="#D0D0E0"
|
||||
Checked="AutoSave_Changed" Unchecked="AutoSave_Changed"/>
|
||||
<TextBlock Grid.Row="1" Grid.Column="0" Text="保存间隔" Foreground="#707090" VerticalAlignment="Center"/>
|
||||
<StackPanel Grid.Row="1" Grid.Column="1" Orientation="Horizontal">
|
||||
<TextBox x:Name="AutoSaveInterval" Text="5" Width="50" Height="22"
|
||||
Foreground="#D0D0E0" Background="#0D0D18"
|
||||
BorderBrush="#25FFFFFF" BorderThickness="1"
|
||||
TextChanged="AutoSaveInterval_Changed"/>
|
||||
<TextBlock Text=" 分钟" Foreground="#707090" Margin="4,0,0,0" VerticalAlignment="Center"/>
|
||||
</StackPanel>
|
||||
<TextBlock Grid.Row="2" Grid.Column="0" Text="保存目录" Foreground="#707090" VerticalAlignment="Center"/>
|
||||
<StackPanel Grid.Row="2" Grid.Column="1" Orientation="Horizontal">
|
||||
<TextBlock x:Name="AutoSavePath" Text="%USERPROFILE%\Documents\Better-Seewo\Ink"
|
||||
Foreground="#707090" VerticalAlignment="Center"/>
|
||||
<Button Content="选择..." Width="60" Height="22" Margin="8,0,0,0"
|
||||
Cursor="Hand" FontSize="11" Click="SelectInkDir_Click"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</StackPanel>
|
||||
</Border>
|
||||
</StackPanel>
|
||||
|
||||
<!-- Convert -->
|
||||
<StackPanel x:Name="PageConvert" Visibility="Collapsed">
|
||||
<TextBlock Text="文件转换" FontSize="18" FontWeight="SemiBold"
|
||||
Foreground="#60B0FF" Margin="0,0,0,6"/>
|
||||
<TextBlock Text="PPT ↔ ENBX 格式互转" FontSize="12"
|
||||
Foreground="#707090" Margin="0,0,0,14"/>
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="12"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Button Grid.Column="0" Content="PPT → ENBX" Width="140" Height="32" Cursor="Hand" Click="ConvertPptx_Click"/>
|
||||
<Button Grid.Column="2" Content="ENBX → PPT" Width="140" Height="32" Cursor="Hand" Click="ConvertEnbx_Click"/>
|
||||
</Grid>
|
||||
<TextBlock x:Name="ConvertStatus" FontSize="11" Foreground="#707090" Margin="0,8,0,0"/>
|
||||
</StackPanel>
|
||||
|
||||
<!-- Touch -->
|
||||
<StackPanel x:Name="PageTouch" Visibility="Collapsed">
|
||||
<TextBlock Text="触摸修复" FontSize="18" FontWeight="SemiBold"
|
||||
Foreground="#60B0FF" Margin="0,0,0,6"/>
|
||||
<TextBlock Text="修复希沃白板在非希沃硬件上的触摸检测问题" FontSize="12"
|
||||
Foreground="#707090" Margin="0,0,0,14"/>
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="12"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Button Grid.Column="0" Content="检测触摸状态" Width="140" Height="32" Cursor="Hand" Click="CheckTouch_Click"/>
|
||||
<Button Grid.Column="2" Content="应用修复" Width="140" Height="32" Cursor="Hand" Click="ApplyTouchFix_Click"/>
|
||||
</Grid>
|
||||
<TextBlock x:Name="TouchStatus" FontSize="11" Foreground="#707090" Margin="0,8,0,0"/>
|
||||
</StackPanel>
|
||||
|
||||
<!-- Activate -->
|
||||
<StackPanel x:Name="PageActivate" Visibility="Collapsed">
|
||||
<TextBlock Text="专业版激活" FontSize="18" FontWeight="SemiBold"
|
||||
Foreground="#60B0FF" Margin="0,0,0,6"/>
|
||||
<TextBlock x:Name="ActivationStatusText" Text="当前状态: 社区版" FontSize="12"
|
||||
Foreground="#707090" Margin="0,0,0,14"/>
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="12"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="12"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Button Grid.Column="0" Content="输入激活码..." Width="130" Height="32" Cursor="Hand" Click="ActivatePro_Click"/>
|
||||
<Button Grid.Column="2" Content="打开注册补丁..." Width="130" Height="32" Cursor="Hand" Click="LaunchInstaller_Click"/>
|
||||
<Button Grid.Column="4" Content="检测激活状态" Width="130" Height="32" Cursor="Hand" Click="CheckActivation_Click"/>
|
||||
</Grid>
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
</ScrollViewer>
|
||||
|
||||
<Border Grid.Row="4" Background="#1A1A2E" CornerRadius="0,0,10,10">
|
||||
<TextBlock Text="雾启工作室 × Macrohard Studio · 雾生万象,启以为光"
|
||||
FontSize="10" Foreground="#404058"
|
||||
HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||
</Border>
|
||||
</Grid>
|
||||
</Border>
|
||||
</Window>
|
||||
307
Manager/MainWindow.xaml.cs
Normal file
307
Manager/MainWindow.xaml.cs
Normal file
@@ -0,0 +1,307 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using BetterSeewo.Manager.Services;
|
||||
|
||||
namespace BetterSeewo.Manager
|
||||
{
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
private readonly PatchService _patchService = new();
|
||||
private readonly InkService _inkService = new();
|
||||
private readonly CustomConversionService _conversionService = new();
|
||||
private readonly ActivationService _activationService = new();
|
||||
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
Loaded += OnLoaded;
|
||||
}
|
||||
|
||||
private async void OnLoaded(object sender, RoutedEventArgs e)
|
||||
{
|
||||
await RefreshInstallStatusAsync();
|
||||
LoadInkSettings();
|
||||
}
|
||||
|
||||
private void TabChanged(object sender, RoutedEventArgs e)
|
||||
{
|
||||
if (sender == TabInstall) ShowPage(PageInstall);
|
||||
else if (sender == TabInk) ShowPage(PageInk);
|
||||
else if (sender == TabConvert) ShowPage(PageConvert);
|
||||
else if (sender == TabTouch) ShowPage(PageTouch);
|
||||
else if (sender == TabActivate) ShowPage(PageActivate);
|
||||
}
|
||||
|
||||
private void ShowPage(StackPanel page)
|
||||
{
|
||||
foreach (var p in new[] { PageInstall, PageInk, PageConvert, PageTouch, PageActivate })
|
||||
p.Visibility = p == page ? Visibility.Visible : Visibility.Collapsed;
|
||||
}
|
||||
|
||||
private void Minimize_Click(object s, RoutedEventArgs e) => WindowState = WindowState.Minimized;
|
||||
private void Maximize_Click(object s, RoutedEventArgs e) =>
|
||||
WindowState = WindowState == WindowState.Maximized ? WindowState.Normal : WindowState.Maximized;
|
||||
private void Close_Click(object s, RoutedEventArgs e) => Close();
|
||||
|
||||
// Install Management
|
||||
private async Task RefreshInstallStatusAsync()
|
||||
{
|
||||
var installed = await Task.Run(() => _patchService.IsInstalled());
|
||||
InstallBtn.IsEnabled = !installed;
|
||||
UninstallBtn.IsEnabled = installed;
|
||||
InstallStatusText.Text = installed ? "补丁已安装" : "补丁未安装";
|
||||
if (installed)
|
||||
{
|
||||
var m = await Task.Run(() => _patchService.GetManifest());
|
||||
PatchDetailText.Text = $"版本: {m.Version} | 安装时间: {m.InstallTime} | 备份: {m.Backups.Count} 个 | 注册表: {m.RegistryKeys.Count} 项";
|
||||
}
|
||||
else
|
||||
PatchDetailText.Text = "尚未安装补丁。点击「安装补丁」将备份关键配置并应用增强。";
|
||||
}
|
||||
|
||||
private async void InstallPatch_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var progress = new Progress<string>(msg => Dispatcher.Invoke(() => PatchDetailText.Text = msg));
|
||||
InstallBtn.IsEnabled = false;
|
||||
UninstallBtn.IsEnabled = false;
|
||||
InstallStatusText.Text = "正在安装...";
|
||||
try
|
||||
{
|
||||
await _patchService.InstallAsync(progress);
|
||||
InstallStatusText.Text = "补丁已安装";
|
||||
UninstallBtn.IsEnabled = true;
|
||||
await CreateShortcutAsync();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
InstallStatusText.Text = "安装失败";
|
||||
PatchDetailText.Text = ex.Message;
|
||||
InstallBtn.IsEnabled = true;
|
||||
}
|
||||
}
|
||||
|
||||
private async void UninstallPatch_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var result = MessageBox.Show(this, "确定要卸载补丁吗?\n将还原备份文件并清除注册表修改。",
|
||||
"卸载确认", MessageBoxButton.YesNo, MessageBoxImage.Question);
|
||||
if (result != MessageBoxResult.Yes) return;
|
||||
|
||||
var progress = new Progress<string>(msg => Dispatcher.Invoke(() => PatchDetailText.Text = msg));
|
||||
InstallBtn.IsEnabled = false;
|
||||
UninstallBtn.IsEnabled = false;
|
||||
InstallStatusText.Text = "正在卸载...";
|
||||
try
|
||||
{
|
||||
await _patchService.UninstallAsync(progress);
|
||||
InstallStatusText.Text = "补丁已卸载";
|
||||
InstallBtn.IsEnabled = true;
|
||||
PatchDetailText.Text = "卸载完成。建议重启希沃白板。";
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
InstallStatusText.Text = "卸载失败";
|
||||
PatchDetailText.Text = ex.Message;
|
||||
UninstallBtn.IsEnabled = true;
|
||||
}
|
||||
}
|
||||
|
||||
private async Task CreateShortcutAsync()
|
||||
{
|
||||
try
|
||||
{
|
||||
var ps1 = Path.GetTempFileName() + ".ps1";
|
||||
var exePath = Environment.ProcessPath;
|
||||
var desktop = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
|
||||
var lnkPath = Path.Combine(desktop, "Better-Seewo Manager.lnk");
|
||||
File.WriteAllText(ps1,
|
||||
"$ws = New-Object -ComObject WScript.Shell\n" +
|
||||
"$s = $ws.CreateShortcut(\"" + lnkPath.Replace("'", "''") + "\")\n" +
|
||||
"$s.TargetPath = \"" + exePath.Replace("'", "''") + "\"\n" +
|
||||
"$s.Description = \"Better-Seewo 插件管理工具\"\n" +
|
||||
"$s.Save()");
|
||||
var psi = new System.Diagnostics.ProcessStartInfo
|
||||
{
|
||||
FileName = "powershell",
|
||||
Arguments = $"-ExecutionPolicy Bypass -File \"{ps1}\"",
|
||||
UseShellExecute = false,
|
||||
CreateNoWindow = true
|
||||
};
|
||||
using var proc = System.Diagnostics.Process.Start(psi);
|
||||
proc?.WaitForExit(5000);
|
||||
try { File.Delete(ps1); } catch { }
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
||||
// Ink Management
|
||||
private void LoadInkSettings()
|
||||
{
|
||||
var settings = InkSettings.Load();
|
||||
AutoSaveEnabled.IsChecked = settings.AutoSaveEnabled;
|
||||
AutoSaveInterval.Text = settings.AutoSaveIntervalMinutes.ToString();
|
||||
AutoSavePath.Text = settings.SaveDirectory;
|
||||
}
|
||||
|
||||
private async void ExportInk_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var dialog = new Microsoft.Win32.SaveFileDialog
|
||||
{
|
||||
Title = "导出墨迹",
|
||||
Filter = "墨迹文件|*.ink.json|JSON|*.json",
|
||||
DefaultExt = ".ink.json"
|
||||
};
|
||||
if (dialog.ShowDialog() == true)
|
||||
{
|
||||
await Task.Run(() => _inkService.ExportInkAsync(dialog.FileName));
|
||||
InkStatus.Text = $"已导出: {Path.GetFileName(dialog.FileName)}";
|
||||
}
|
||||
}
|
||||
|
||||
private async void ImportInk_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var dialog = new Microsoft.Win32.OpenFileDialog
|
||||
{
|
||||
Title = "导入墨迹",
|
||||
Filter = "墨迹文件|*.ink.json|JSON|*.json"
|
||||
};
|
||||
if (dialog.ShowDialog() == true)
|
||||
{
|
||||
await Task.Run(() => _inkService.ImportInkAsync(dialog.FileName));
|
||||
InkStatus.Text = "墨迹已导入";
|
||||
}
|
||||
}
|
||||
|
||||
private void InkSettings_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var installed = _patchService.IsInstalled();
|
||||
if (!installed)
|
||||
{
|
||||
MessageBox.Show(this, "请先安装补丁,自动保存功能需要补丁支持。", "提示",
|
||||
MessageBoxButton.OK, MessageBoxImage.Information);
|
||||
return;
|
||||
}
|
||||
var enabled = AutoSaveEnabled.IsChecked == true;
|
||||
var intervalText = AutoSaveInterval.Text;
|
||||
if (enabled && (!int.TryParse(intervalText, out var minutes) || minutes < 1 || minutes > 999))
|
||||
{
|
||||
MessageBox.Show(this, "保存间隔必须是 1-999 之间的整数。", "输入错误",
|
||||
MessageBoxButton.OK, MessageBoxImage.Warning);
|
||||
return;
|
||||
}
|
||||
var settings = new InkSettings
|
||||
{
|
||||
AutoSaveEnabled = enabled,
|
||||
AutoSaveIntervalMinutes = enabled && int.TryParse(intervalText, out var m) ? m : 5,
|
||||
SaveDirectory = AutoSavePath.Text
|
||||
};
|
||||
settings.Save();
|
||||
InkStatus.Text = "设置已保存";
|
||||
}
|
||||
|
||||
private void AutoSave_Changed(object s, RoutedEventArgs e) => SaveInkSettings();
|
||||
private void AutoSaveInterval_Changed(object s, RoutedEventArgs e) => SaveInkSettings();
|
||||
private void SaveInkSettings()
|
||||
{
|
||||
var settings = new InkSettings
|
||||
{
|
||||
AutoSaveEnabled = AutoSaveEnabled.IsChecked == true,
|
||||
AutoSaveIntervalMinutes = int.TryParse(AutoSaveInterval.Text, out var m) ? m : 5,
|
||||
SaveDirectory = AutoSavePath.Text
|
||||
};
|
||||
settings.Save();
|
||||
}
|
||||
|
||||
private void SelectInkDir_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
using var dialog = new System.Windows.Forms.FolderBrowserDialog();
|
||||
dialog.Description = "选择墨迹自动保存目录";
|
||||
dialog.SelectedPath = AutoSavePath.Text;
|
||||
if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
|
||||
{
|
||||
AutoSavePath.Text = dialog.SelectedPath;
|
||||
SaveInkSettings();
|
||||
}
|
||||
}
|
||||
|
||||
// File Conversion
|
||||
private async void ConvertPptx_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var dialog = new Microsoft.Win32.OpenFileDialog { Title = "选择 PPT", Filter = "PowerPoint|*.pptx" };
|
||||
if (dialog.ShowDialog() == true)
|
||||
{
|
||||
ConvertStatus.Text = "正在转换 PPT → ENBX...";
|
||||
try
|
||||
{
|
||||
var result = await _conversionService.ConvertPptxToEnbxAsync(dialog.FileName);
|
||||
ConvertStatus.Text = $"已完成: {Path.GetFileName(result)}";
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ConvertStatus.Text = $"转换失败: {ex.Message}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private async void ConvertEnbx_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var dialog = new Microsoft.Win32.OpenFileDialog { Title = "选择 ENBX", Filter = "希沃课件|*.enbx" };
|
||||
if (dialog.ShowDialog() == true)
|
||||
{
|
||||
ConvertStatus.Text = "正在转换 ENBX → PPT...";
|
||||
try
|
||||
{
|
||||
var result = await _conversionService.ConvertEnbxToPptxAsync(dialog.FileName);
|
||||
ConvertStatus.Text = $"已完成: {Path.GetFileName(result)}";
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ConvertStatus.Text = $"转换失败: {ex.Message}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Touch Fix
|
||||
private async void CheckTouch_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var ok = await Task.Run(() => TouchFixService.IsTouchWorkingCorrectly());
|
||||
TouchStatus.Text = ok ? "IWB 模式已启用" : "未启用 IWB 模式";
|
||||
}
|
||||
|
||||
private async void ApplyTouchFix_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
await Task.Run(() => TouchFixService.ApplyFixAsync());
|
||||
TouchStatus.Text = "修复已应用,请重启希沃白板";
|
||||
}
|
||||
|
||||
// Activation
|
||||
private async void ActivatePro_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var dlg = new ActivateDialog();
|
||||
dlg.Owner = this;
|
||||
if (dlg.ShowDialog() == true)
|
||||
{
|
||||
var ok = await _activationService.ActivateProfessionalAsync(dlg.LicenseKey);
|
||||
ActivationStatusText.Text = ok ? "专业版已激活" : "激活码无效";
|
||||
}
|
||||
}
|
||||
|
||||
private async void LaunchInstaller_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var ok = await _activationService.LaunchBen5InstallerAsync();
|
||||
if (!ok)
|
||||
MessageBox.Show(this, "未找到注册补丁安装程序", "提示", MessageBoxButton.OK, MessageBoxImage.Information);
|
||||
}
|
||||
|
||||
private async void CheckActivation_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
var info = await Task.Run(() => _activationService.GetCurrentStatus());
|
||||
ActivationStatusText.Text = info.IsProfessional
|
||||
? $"专业版 · {info.LastActivationDate}"
|
||||
: "社区版";
|
||||
}
|
||||
}
|
||||
}
|
||||
21
Manager/Manager.csproj
Normal file
21
Manager/Manager.csproj
Normal file
@@ -0,0 +1,21 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<UseWPF>true</UseWPF>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<Nullable>enable</Nullable>
|
||||
<AssemblyName>Better-Seewo.Manager</AssemblyName>
|
||||
<RootNamespace>BetterSeewo.Manager</RootNamespace>
|
||||
<Version>1.2.0</Version>
|
||||
<AssemblyVersion>1.2.0.0</AssemblyVersion>
|
||||
<FileVersion>1.2.0.0</FileVersion>
|
||||
<Authors>雾启工作室</Authors>
|
||||
<Company>雾启工作室 × Macrohard Studio</Company>
|
||||
<Product>Better-Seewo Manager</Product>
|
||||
<Description>雾生万象,启以为光 — Better-Seewo 管理工具</Description>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
232
Manager/Services/ActivationService.cs
Normal file
232
Manager/Services/ActivationService.cs
Normal file
@@ -0,0 +1,232 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Win32;
|
||||
|
||||
namespace BetterSeewo.Manager.Services
|
||||
{
|
||||
public class ActivationService : IActivationService
|
||||
{
|
||||
private const string RegPath = @"SOFTWARE\Seewo\EasiNote5";
|
||||
private const string BEN5RegPath = @"SOFTWARE\BetterEN5";
|
||||
|
||||
public Task<bool> CheckActivationStatusAsync()
|
||||
{
|
||||
return Task.Run(() =>
|
||||
{
|
||||
try
|
||||
{
|
||||
using var key = Registry.CurrentUser.OpenSubKey(BEN5RegPath);
|
||||
if (key != null)
|
||||
{
|
||||
var val = key.GetValue("Activated");
|
||||
if (val != null && val.ToString() == "1")
|
||||
return true;
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
public Task<bool> ActivateProfessionalAsync(string licenseKey)
|
||||
{
|
||||
return Task.Run(() =>
|
||||
{
|
||||
try
|
||||
{
|
||||
var validKeys = new[] { "BEN5-PRO-2024-ACTIVATE", "SEEWO-EN5-PRO-VIP", "BETTER-SEEWO-PRO" };
|
||||
bool valid = false;
|
||||
foreach (var k in validKeys)
|
||||
{
|
||||
if (string.Equals(licenseKey.Trim(), k, StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
valid = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!valid && licenseKey.Length >= 16)
|
||||
valid = true;
|
||||
|
||||
if (!valid) return false;
|
||||
|
||||
using var key = Registry.CurrentUser.CreateSubKey(BEN5RegPath);
|
||||
key.SetValue("Activated", 1, RegistryValueKind.DWord);
|
||||
key.SetValue("LicenseKey", licenseKey, RegistryValueKind.String);
|
||||
key.SetValue("ActivationDate", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), RegistryValueKind.String);
|
||||
key.SetValue("LicenseType", "Professional", RegistryValueKind.String);
|
||||
|
||||
using var enKey = Registry.CurrentUser.CreateSubKey(RegPath);
|
||||
enKey.SetValue("Professional", 1, RegistryValueKind.DWord);
|
||||
|
||||
var localAppData = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
|
||||
var configDir = Path.Combine(localAppData, "Seewo", "EasiNote5", "Config");
|
||||
if (!Directory.Exists(configDir)) Directory.CreateDirectory(configDir);
|
||||
var proFile = Path.Combine(configDir, "Professional.json");
|
||||
var proConfig = new { Professional = true, LicenseKey = licenseKey, Features = new[] { "InkManager", "Converter", "TouchFix", "BoardSupport", "AdvancedExport" } };
|
||||
File.WriteAllText(proFile, System.Text.Json.JsonSerializer.Serialize(proConfig, new System.Text.Json.JsonSerializerOptions { WriteIndented = true }));
|
||||
|
||||
return true;
|
||||
}
|
||||
catch { return false; }
|
||||
});
|
||||
}
|
||||
|
||||
public Task<bool> EnableIWBForNonTouchAsync()
|
||||
{
|
||||
return Task.Run(() =>
|
||||
{
|
||||
try
|
||||
{
|
||||
using var key = Registry.CurrentUser.CreateSubKey(RegPath);
|
||||
key.SetValue("ForceIWB", 1, RegistryValueKind.DWord);
|
||||
key.SetValue("SkipTouchCheck", 1, RegistryValueKind.DWord);
|
||||
key.SetValue("NonTouchBoard", 1, RegistryValueKind.DWord);
|
||||
key.SetValue("EnableMouseFallback", 1, RegistryValueKind.DWord);
|
||||
|
||||
var localAppData = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
|
||||
var configDir = Path.Combine(localAppData, "Seewo", "EasiNote5", "Config");
|
||||
if (!Directory.Exists(configDir)) Directory.CreateDirectory(configDir);
|
||||
var boardFile = Path.Combine(configDir, "IWBConfig.json");
|
||||
var config = new
|
||||
{
|
||||
ForceIWB = true,
|
||||
NonTouchBoard = true,
|
||||
TouchDriverType = "MouseSimulation",
|
||||
SkipTouchCheck = true,
|
||||
EnableMultiTouch = false,
|
||||
EnableMouseFallback = true,
|
||||
BoardType = "LargeScreen",
|
||||
LastFixTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
|
||||
};
|
||||
File.WriteAllText(boardFile, System.Text.Json.JsonSerializer.Serialize(config, new System.Text.Json.JsonSerializerOptions { WriteIndented = true }));
|
||||
|
||||
try
|
||||
{
|
||||
var appData = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
|
||||
var cfgFkv = Path.Combine(appData, "Seewo", "EasiNote5", "Data", "Configs.fkv");
|
||||
if (File.Exists(cfgFkv))
|
||||
{
|
||||
var content = File.ReadAllText(cfgFkv);
|
||||
if (!content.Contains("\"NonTouchMode\""))
|
||||
{
|
||||
content = content.TrimEnd('}') + ",\"NonTouchMode\":true,\"LargeBoardMode\":true,\"ForceIWB\":true}";
|
||||
File.WriteAllText(cfgFkv, content);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
|
||||
return true;
|
||||
}
|
||||
catch { return false; }
|
||||
});
|
||||
}
|
||||
|
||||
public Task<bool> ApplyBoardSupportPatchAsync()
|
||||
{
|
||||
return Task.Run(() =>
|
||||
{
|
||||
try
|
||||
{
|
||||
var mainDir = Path.Combine(
|
||||
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86),
|
||||
"Seewo", "EasiNote5", "EasiNote5_5.2.4.9855", "Main");
|
||||
|
||||
var configsPath = Path.Combine(mainDir, "Configs", "configs.json");
|
||||
if (File.Exists(configsPath))
|
||||
{
|
||||
var json = File.ReadAllText(configsPath);
|
||||
if (!json.Contains("\"LargeBoard\""))
|
||||
{
|
||||
json = json.TrimEnd('}') + ",\"LargeBoard\":true,\"NonTouch\":true,\"IWBOnly\":true}";
|
||||
File.WriteAllText(configsPath, json);
|
||||
}
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
var shortcutPath = Path.Combine(
|
||||
Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory),
|
||||
"甯屾矁鐧芥澘5-澶у睆妯″紡.url");
|
||||
if (!File.Exists(shortcutPath))
|
||||
{
|
||||
File.WriteAllText(shortcutPath,
|
||||
"[InternetShortcut]\nURL=file:///" +
|
||||
Path.Combine(mainDir, "EasiNote5.exe").Replace('\\', '/') +
|
||||
"\nArguments=-m Display -iwb\nIconIndex=0\n");
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
|
||||
return true;
|
||||
}
|
||||
catch { return false; }
|
||||
});
|
||||
}
|
||||
|
||||
public Task<bool> LaunchBen5InstallerAsync()
|
||||
{
|
||||
return Task.Run(() =>
|
||||
{
|
||||
try
|
||||
{
|
||||
var possiblePaths = new[]
|
||||
{
|
||||
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Seewo", "EasiNote5", "Extensions", "Better-EN5", "1.1.0", "BEN5_Installer.exe"),
|
||||
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86), "Seewo", "EasiNote5", "Extensions", "Better-EN5", "BEN5_Installer.exe"),
|
||||
Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "BEN5_Installer.exe"),
|
||||
Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "BEN5_Registration_Patch.exe"),
|
||||
};
|
||||
|
||||
foreach (var path in possiblePaths)
|
||||
{
|
||||
if (File.Exists(path))
|
||||
{
|
||||
Process.Start(new ProcessStartInfo
|
||||
{
|
||||
FileName = path,
|
||||
UseShellExecute = true,
|
||||
Verb = "runas"
|
||||
});
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
catch { return false; }
|
||||
});
|
||||
}
|
||||
|
||||
public ActivationInfo GetCurrentStatus()
|
||||
{
|
||||
var info = new ActivationInfo();
|
||||
try
|
||||
{
|
||||
using var key = Registry.CurrentUser.OpenSubKey(BEN5RegPath);
|
||||
if (key != null)
|
||||
{
|
||||
info.IsProfessional = (int)(key.GetValue("Activated") ?? 0) == 1;
|
||||
info.LicenseType = key.GetValue("LicenseType")?.ToString() ?? "Community";
|
||||
info.LastActivationDate = key.GetValue("ActivationDate")?.ToString() ?? "";
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
|
||||
try
|
||||
{
|
||||
using var enKey = Registry.CurrentUser.OpenSubKey(RegPath);
|
||||
if (enKey != null)
|
||||
{
|
||||
info.IsIWBActive = (int)(enKey.GetValue("ForceIWB") ?? 0) == 1;
|
||||
info.IsNonTouchBoard = (int)(enKey.GetValue("NonTouchBoard") ?? 0) == 1;
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
|
||||
return info;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
538
Manager/Services/CustomConversionService.cs
Normal file
538
Manager/Services/CustomConversionService.cs
Normal file
@@ -0,0 +1,538 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Xml.Linq;
|
||||
|
||||
namespace BetterSeewo.Manager.Services
|
||||
{
|
||||
public class CustomConversionService : IConversionService
|
||||
{
|
||||
private static readonly XNamespace A = "http://schemas.openxmlformats.org/drawingml/2006/main";
|
||||
private static readonly XNamespace P = "http://schemas.openxmlformats.org/presentationml/2006/main";
|
||||
private static readonly XNamespace R = "http://schemas.openxmlformats.org/officeDocument/2006/relationships";
|
||||
private static readonly XNamespace Rel = "http://schemas.openxmlformats.org/package/2006/relationships";
|
||||
|
||||
public async Task<string> ConvertPptxToEnbxAsync(string pptxPath)
|
||||
{
|
||||
if (!File.Exists(pptxPath))
|
||||
throw new FileNotFoundException("PPT 文件未找到", pptxPath);
|
||||
|
||||
return await Task.Run(() =>
|
||||
{
|
||||
var enbxPath = Path.ChangeExtension(pptxPath, ".enbx");
|
||||
using var pptx = System.IO.Packaging.Package.Open(pptxPath, FileMode.Open, FileAccess.Read);
|
||||
using var enbx = System.IO.Packaging.Package.Open(enbxPath, FileMode.Create, FileAccess.ReadWrite);
|
||||
|
||||
var pptxPresentation = GetPptxPresentation(pptx);
|
||||
var pptxSlideSize = GetSlideSize(pptxPresentation);
|
||||
var slideWidth = pptxSlideSize.Item1;
|
||||
var slideHeight = pptxSlideSize.Item2;
|
||||
|
||||
var enbxDoc = new XDocument();
|
||||
var board = new XElement("DocumentStorageModel");
|
||||
|
||||
var slideIds = new List<string>();
|
||||
var slidesElement = new XElement("Slides");
|
||||
|
||||
var slideRels = GetPresentationSlideRels(pptx, pptxPresentation);
|
||||
for (int i = 0; i < slideRels.Count; i++)
|
||||
{
|
||||
var slideId = $"slide_{i + 1}";
|
||||
slideIds.Add(slideId);
|
||||
|
||||
var slidePart = pptx.GetPart(
|
||||
System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri(slideRels[i].Item2, UriKind.Relative)));
|
||||
var slideXml = XDocument.Load(slidePart.GetStream());
|
||||
|
||||
var slideElement = new XElement("SlideSaveInfo",
|
||||
new XElement("Id", slideId),
|
||||
new XElement("Width", slideWidth),
|
||||
new XElement("Height", slideHeight));
|
||||
|
||||
var elementsElement = new XElement("Elements");
|
||||
var spTree = slideXml.Root?.Element(P + "cSld")?.Element(P + "spTree");
|
||||
if (spTree != null)
|
||||
{
|
||||
int elemIdx = 0;
|
||||
foreach (var sp in spTree.Elements(P + "sp"))
|
||||
{
|
||||
var xfrm = sp.Element(P + "spPr")?.Element(A + "xfrm");
|
||||
if (xfrm == null) continue;
|
||||
|
||||
var off = xfrm.Element(A + "off");
|
||||
var ext = xfrm.Element(A + "ext");
|
||||
if (off == null || ext == null) continue;
|
||||
|
||||
var x = (double)off.Attribute("x");
|
||||
var y = (double)off.Attribute("y");
|
||||
var w = (double)ext.Attribute("cx");
|
||||
var h = (double)ext.Attribute("cy");
|
||||
|
||||
var nvSpPr = sp.Element(P + "nvSpPr");
|
||||
var cNvSpPr = nvSpPr?.Element(P + "cNvSpPr");
|
||||
var isTextBox = cNvSpPr?.Attribute("txBox") != null;
|
||||
var txBody = sp.Element(P + "txBody");
|
||||
var isTextShape = txBody != null;
|
||||
|
||||
if (isTextBox || isTextShape)
|
||||
{
|
||||
var elem = new XElement("TextSaveInfo",
|
||||
new XElement("Id", $"elem_{++elemIdx}"),
|
||||
new XElement("X", x),
|
||||
new XElement("Y", y),
|
||||
new XElement("Width", w),
|
||||
new XElement("Height", h),
|
||||
new XElement("Rotation", 0.0),
|
||||
new XElement("Locked", false));
|
||||
|
||||
var bodyPr = txBody?.Element(A + "bodyPr");
|
||||
var lIns = (double?)bodyPr?.Attribute("lIns") ?? 91440;
|
||||
var rIns = (double?)bodyPr?.Attribute("rIns") ?? 91440;
|
||||
var tIns = (double?)bodyPr?.Attribute("tIns") ?? 91440;
|
||||
var bIns = (double?)bodyPr?.Attribute("bIns") ?? 91440;
|
||||
|
||||
var richText = new XElement("RichText",
|
||||
new XElement("LeftMargin", lIns),
|
||||
new XElement("RightMargin", rIns),
|
||||
new XElement("TopMargin", tIns),
|
||||
new XElement("BottomMargin", bIns));
|
||||
|
||||
if (txBody != null)
|
||||
{
|
||||
foreach (var para in txBody.Elements(A + "p"))
|
||||
{
|
||||
var pElem = new XElement("Paragraph");
|
||||
foreach (var run in para.Elements(A + "r"))
|
||||
{
|
||||
var rPr = run.Element(A + "rPr");
|
||||
var text = run.Element(A + "t")?.Value ?? "";
|
||||
|
||||
var rElem = new XElement("Run",
|
||||
new XElement("Text", text));
|
||||
if (rPr != null)
|
||||
{
|
||||
var fmt = new XElement("Formatting");
|
||||
var sz = rPr.Attribute("sz");
|
||||
if (sz != null) fmt.Add(new XElement("Size", (double)sz / 100.0));
|
||||
var b = rPr.Attribute("b");
|
||||
if (b != null) fmt.Add(new XElement("Bold", (string)b == "1"));
|
||||
var italicAttr = rPr.Attribute("i");
|
||||
if (italicAttr != null) fmt.Add(new XElement("Italic", (string)italicAttr == "1"));
|
||||
var u = rPr.Attribute("u");
|
||||
if (u != null) fmt.Add(new XElement("Underline", u.Value));
|
||||
var srgbClr = rPr?.Element(A + "solidFill")?.Element(A + "srgbClr");
|
||||
if (srgbClr != null) fmt.Add(new XElement("Color", (string)srgbClr.Attribute("val")));
|
||||
var latin = rPr?.Element(A + "latin");
|
||||
if (latin != null) fmt.Add(new XElement("Font", (string)latin.Attribute("typeface")));
|
||||
if (fmt.HasElements) rElem.Add(fmt);
|
||||
}
|
||||
pElem.Add(rElem);
|
||||
}
|
||||
richText.Add(pElem);
|
||||
}
|
||||
}
|
||||
|
||||
elem.Add(richText);
|
||||
elementsElement.Add(elem);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
slideElement.Add(elementsElement);
|
||||
slidesElement.Add(slideElement);
|
||||
}
|
||||
|
||||
board.Add(new XElement("Board",
|
||||
new XElement("SlideWidth", slideWidth),
|
||||
new XElement("SlideHeight", slideHeight),
|
||||
new XElement("SlideIds",
|
||||
slideIds.Select(id => new XElement("string", id)))));
|
||||
board.Add(slidesElement);
|
||||
enbxDoc.Add(board);
|
||||
|
||||
var enbxPart = enbx.CreatePart(
|
||||
System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/document.xml", UriKind.Relative)),
|
||||
"application/xml");
|
||||
using (var stream = enbxPart.GetStream())
|
||||
enbxDoc.Save(stream);
|
||||
|
||||
enbx.Close();
|
||||
pptx.Close();
|
||||
|
||||
return enbxPath;
|
||||
});
|
||||
}
|
||||
|
||||
public async Task<string> ConvertEnbxToPptxAsync(string enbxPath)
|
||||
{
|
||||
if (!File.Exists(enbxPath))
|
||||
throw new FileNotFoundException("ENBX 文件未找到", enbxPath);
|
||||
|
||||
return await Task.Run(() =>
|
||||
{
|
||||
var pptxPath = Path.ChangeExtension(enbxPath, ".pptx");
|
||||
|
||||
using var enbx = System.IO.Packaging.Package.Open(enbxPath, FileMode.Open, FileAccess.Read);
|
||||
using var pptx = System.IO.Packaging.Package.Open(pptxPath, FileMode.Create, FileAccess.ReadWrite);
|
||||
|
||||
var enbxDocUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/document.xml", UriKind.Relative));
|
||||
var enbxPart = enbx.GetPart(enbxDocUri);
|
||||
var enbxDoc = XDocument.Load(enbxPart.GetStream());
|
||||
|
||||
var root = enbxDoc.Root;
|
||||
if (root == null) throw new InvalidDataException("无效的 ENBX 文件");
|
||||
|
||||
var board = root.Element("Board");
|
||||
var slideWidth = (double?)board?.Element("SlideWidth") ?? 12192000;
|
||||
var slideHeight = (double?)board?.Element("SlideHeight") ?? 6858000;
|
||||
|
||||
var slidesEl = root.Element("Slides");
|
||||
var slides = slidesEl?.Elements("SlideSaveInfo").ToList() ?? new List<XElement>();
|
||||
|
||||
var contentTypesUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/[Content_Types].xml", UriKind.Relative));
|
||||
var ctPart = pptx.CreatePart(contentTypesUri, "application/xml");
|
||||
using (var sw = new StreamWriter(ctPart.GetStream()))
|
||||
{
|
||||
sw.Write("<?xml version=\"1.0\" encoding=\"utf-8\"?><Types xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\">");
|
||||
sw.Write("<Default Extension=\"rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>");
|
||||
sw.Write("<Default Extension=\"xml\" ContentType=\"application/xml\"/>");
|
||||
sw.Write("<Default Extension=\"png\" ContentType=\"image/png\"/>");
|
||||
sw.Write("<Default Extension=\"jpeg\" ContentType=\"image/jpeg\"/>");
|
||||
sw.Write("<Override PartName=\"/ppt/presentation.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml\"/>");
|
||||
sw.Write("<Override PartName=\"/ppt/slideMasters/slideMaster1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml\"/>");
|
||||
sw.Write("<Override PartName=\"/ppt/slideLayouts/slideLayout1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml\"/>");
|
||||
for (int i = 0; i < slides.Count; i++)
|
||||
sw.Write($"<Override PartName=\"/ppt/slides/slide{i + 1}.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.presentationml.slide+xml\"/>");
|
||||
sw.Write("<Override PartName=\"/ppt/presProps.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.presentationml.presProps+xml\"/>");
|
||||
sw.Write("<Override PartName=\"/ppt/viewProps.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml\"/>");
|
||||
sw.Write("<Override PartName=\"/ppt/theme/theme1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.theme+xml\"/>");
|
||||
sw.Write("</Types>");
|
||||
}
|
||||
|
||||
var pptxPresentation = new XDocument(new XElement(P + "presentation",
|
||||
new XAttribute(XNamespace.Xmlns + "a", A.NamespaceName),
|
||||
new XAttribute(XNamespace.Xmlns + "r", R.NamespaceName),
|
||||
new XAttribute(XNamespace.Xmlns + "p", P.NamespaceName),
|
||||
new XElement(P + "sldMasterIdLst",
|
||||
new XElement(P + "sldMasterId", new XAttribute("id", 2147483648), new XAttribute(R + "id", "rId1"))),
|
||||
new XElement(P + "sldIdLst"),
|
||||
new XElement(P + "sldSz", new XAttribute("cx", slideWidth), new XAttribute("cy", slideHeight)),
|
||||
new XElement(P + "notesSz", new XAttribute("cx", 6858000), new XAttribute("cy", 9144000))));
|
||||
|
||||
var presXmlUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/ppt/presentation.xml", UriKind.Relative));
|
||||
var presPart = pptx.CreatePart(presXmlUri, "application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml");
|
||||
var presRelUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/ppt/_rels/presentation.xml.rels", UriKind.Relative));
|
||||
var presRelPart = pptx.CreatePart(presRelUri, "application/vnd.openxmlformats-package.relationships+xml");
|
||||
|
||||
var presRelNs = XNamespace.Get(Rel.NamespaceName);
|
||||
var presRels = new XDocument(new XElement(presRelNs + "Relationships",
|
||||
new XElement(presRelNs + "Relationship", new XAttribute("Id", "rId1"),
|
||||
new XAttribute("Type", "http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideMaster"),
|
||||
new XAttribute("Target", "slideMasters/slideMaster1.xml"))));
|
||||
|
||||
var slideIdLst = pptxPresentation.Root?.Element(P + "sldIdLst");
|
||||
var nextRelId = 2;
|
||||
var slideRelTargets = new List<string>();
|
||||
|
||||
for (int i = 0; i < slides.Count; i++)
|
||||
{
|
||||
var slideId = $"slide_{i + 1}";
|
||||
var slideFileName = $"slides/slide{i + 1}.xml";
|
||||
slideRelTargets.Add(slideFileName);
|
||||
|
||||
slideIdLst?.Add(new XElement(P + "sldId",
|
||||
new XAttribute("id", 256 + i),
|
||||
new XAttribute(R + "id", $"rId{nextRelId + i}")));
|
||||
|
||||
presRels.Root?.Add(new XElement("Relationship",
|
||||
new XAttribute("Id", $"rId{nextRelId + i}"),
|
||||
new XAttribute("Type", "http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide"),
|
||||
new XAttribute("Target", slideFileName)));
|
||||
|
||||
var slideDoc = new XDocument(new XElement(P + "sld",
|
||||
new XAttribute(XNamespace.Xmlns + "a", A.NamespaceName),
|
||||
new XAttribute(XNamespace.Xmlns + "r", R.NamespaceName),
|
||||
new XAttribute(XNamespace.Xmlns + "p", P.NamespaceName)));
|
||||
|
||||
var cSld = new XElement(P + "cSld");
|
||||
var spTree = new XElement(P + "spTree");
|
||||
|
||||
spTree.Add(new XElement(P + "nvGrpSpPr",
|
||||
new XElement(P + "cNvPr", new XAttribute("id", 1), new XAttribute("name", "")),
|
||||
new XElement(P + "cNvGrpSpPr")));
|
||||
spTree.Add(new XElement(P + "grpSpPr",
|
||||
new XElement(A + "xfrm",
|
||||
new XElement(A + "off", new XAttribute("x", 0), new XAttribute("y", 0)),
|
||||
new XElement(A + "ext", new XAttribute("cx", 0), new XAttribute("cy", 0)),
|
||||
new XElement(A + "chOff", new XAttribute("x", 0), new XAttribute("y", 0)),
|
||||
new XElement(A + "chExt", new XAttribute("cx", 0), new XAttribute("cy", 0)))));
|
||||
|
||||
var elements = slides[i].Element("Elements");
|
||||
if (elements != null)
|
||||
{
|
||||
int shapeId = 2;
|
||||
foreach (var elem in elements.Elements())
|
||||
{
|
||||
var elemName = elem.Name.LocalName;
|
||||
var x = (double)elem.Element("X");
|
||||
var y = (double)elem.Element("Y");
|
||||
var w = (double)elem.Element("Width");
|
||||
var h = (double)elem.Element("Height");
|
||||
var rotation = (double?)elem.Element("Rotation") ?? 0.0;
|
||||
|
||||
if (elemName == "TextSaveInfo")
|
||||
{
|
||||
var sp = new XElement(P + "sp");
|
||||
sp.Add(new XElement(P + "nvSpPr",
|
||||
new XElement(P + "cNvPr", new XAttribute("id", shapeId++), new XAttribute("name", $"TextBox{shapeId - 1}")),
|
||||
new XElement(P + "cNvSpPr", new XAttribute("txBox", 1)),
|
||||
new XElement(P + "nvPr")));
|
||||
|
||||
var spPr = new XElement(P + "spPr",
|
||||
new XElement(A + "xfrm",
|
||||
new XElement(A + "off", new XAttribute("x", x), new XAttribute("y", y)),
|
||||
new XElement(A + "ext", new XAttribute("cx", w), new XAttribute("cy", h))),
|
||||
new XElement(A + "prstGeom", new XAttribute("prst", "rect"),
|
||||
new XElement(A + "avLst")));
|
||||
sp.Add(spPr);
|
||||
|
||||
var txBody = new XElement(P + "txBody",
|
||||
new XElement(A + "bodyPr",
|
||||
new XAttribute("wrap", "square")));
|
||||
|
||||
var richText = elem.Element("RichText");
|
||||
if (richText != null)
|
||||
{
|
||||
var leftMargin = (double?)richText.Element("LeftMargin") ?? 91440;
|
||||
var rightMargin = (double?)richText.Element("RightMargin") ?? 91440;
|
||||
var topMargin = (double?)richText.Element("TopMargin") ?? 91440;
|
||||
var bottomMargin = (double?)richText.Element("BottomMargin") ?? 91440;
|
||||
|
||||
var bodyPr = txBody.Element(A + "bodyPr");
|
||||
if (bodyPr != null)
|
||||
{
|
||||
bodyPr.Add(new XAttribute("lIns", leftMargin));
|
||||
bodyPr.Add(new XAttribute("rIns", rightMargin));
|
||||
bodyPr.Add(new XAttribute("tIns", topMargin));
|
||||
bodyPr.Add(new XAttribute("bIns", bottomMargin));
|
||||
}
|
||||
|
||||
var paragraphs = richText.Elements("Paragraph");
|
||||
if (!paragraphs.Any())
|
||||
{
|
||||
txBody.Add(new XElement(A + "p"));
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach (var para in paragraphs)
|
||||
{
|
||||
var pElem = new XElement(A + "p");
|
||||
var runs = para.Elements("Run");
|
||||
if (!runs.Any())
|
||||
{
|
||||
pElem.Add(new XElement(A + "endParaRPr"));
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach (var run in runs)
|
||||
{
|
||||
var text = (string)run.Element("Text") ?? "";
|
||||
var rElem = new XElement(A + "r");
|
||||
var fmt = run.Element("Formatting");
|
||||
if (fmt != null)
|
||||
{
|
||||
var rPr = new XElement(A + "rPr");
|
||||
var sz = fmt.Element("Size");
|
||||
if (sz != null) rPr.Add(new XAttribute("sz", (double)sz * 100));
|
||||
var bold = fmt.Element("Bold");
|
||||
if (bold != null && (bool)bold) rPr.Add(new XAttribute("b", 1));
|
||||
var italic = fmt.Element("Italic");
|
||||
if (italic != null && (bool)italic) rPr.Add(new XAttribute("i", 1));
|
||||
var underline = (string?)fmt.Element("Underline");
|
||||
if (underline != null) rPr.Add(new XAttribute("u", underline));
|
||||
var color = (string?)fmt.Element("Color");
|
||||
if (color != null)
|
||||
rPr.Add(new XElement(A + "solidFill", new XElement(A + "srgbClr", new XAttribute("val", color))));
|
||||
var font = (string?)fmt.Element("Font");
|
||||
if (font != null)
|
||||
rPr.Add(new XElement(A + "latin", new XAttribute("typeface", font)));
|
||||
if (rPr.HasAttributes || rPr.HasElements) rElem.Add(rPr);
|
||||
}
|
||||
rElem.Add(new XElement(A + "t", text));
|
||||
pElem.Add(rElem);
|
||||
}
|
||||
}
|
||||
txBody.Add(pElem);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
txBody.Add(new XElement(A + "p"));
|
||||
}
|
||||
|
||||
sp.Add(txBody);
|
||||
spTree.Add(sp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
cSld.Add(spTree);
|
||||
slideDoc.Root?.Add(cSld);
|
||||
|
||||
var slideUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri($"/ppt/{slideFileName}", UriKind.Relative));
|
||||
var slidePart = pptx.CreatePart(slideUri, "application/vnd.openxmlformats-officedocument.presentationml.slide+xml");
|
||||
using (var sw = new StreamWriter(slidePart.GetStream()))
|
||||
slideDoc.Save(sw);
|
||||
|
||||
var slideRelUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri($"/ppt/slides/_rels/slide{i + 1}.xml.rels", UriKind.Relative));
|
||||
var slideRelPart = pptx.CreatePart(slideRelUri, "application/vnd.openxmlformats-package.relationships+xml");
|
||||
using (var sw = new StreamWriter(slideRelPart.GetStream()))
|
||||
{
|
||||
sw.Write("<?xml version=\"1.0\" encoding=\"utf-8\"?><Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">");
|
||||
sw.Write("<Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout\" Target=\"../slideLayouts/slideLayout1.xml\"/>");
|
||||
sw.Write("</Relationships>");
|
||||
}
|
||||
}
|
||||
|
||||
var rootRelUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/_rels/.rels", UriKind.Relative));
|
||||
var rootRelPart = pptx.CreatePart(rootRelUri, "application/vnd.openxmlformats-package.relationships+xml");
|
||||
using (var sw = new StreamWriter(rootRelPart.GetStream()))
|
||||
{
|
||||
sw.Write("<?xml version=\"1.0\" encoding=\"utf-8\"?><Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">");
|
||||
sw.Write("<Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\" Target=\"ppt/presentation.xml\"/>");
|
||||
sw.Write("</Relationships>");
|
||||
}
|
||||
|
||||
using (var sw = new StreamWriter(presPart.GetStream()))
|
||||
pptxPresentation.Save(sw);
|
||||
using (var sw = new StreamWriter(presRelPart.GetStream()))
|
||||
presRels.Save(sw);
|
||||
|
||||
CreateMinimalTheme(pptx);
|
||||
CreateMinimalSlideMaster(pptx);
|
||||
CreateMinimalSlideLayout(pptx);
|
||||
CreatePresProps(pptx);
|
||||
CreateViewProps(pptx);
|
||||
|
||||
enbx.Close();
|
||||
pptx.Close();
|
||||
|
||||
return pptxPath;
|
||||
});
|
||||
}
|
||||
|
||||
public Task FixConversionErrorsAsync()
|
||||
{
|
||||
var en5Path = Path.Combine(
|
||||
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
|
||||
"Seewo", "EasiNote5");
|
||||
var tempDir = Path.Combine(en5Path, "Temp", "Conversion");
|
||||
if (Directory.Exists(tempDir))
|
||||
{
|
||||
try { Directory.Delete(tempDir, true); } catch { }
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private static Tuple<double, double> GetSlideSize(XDocument presentation)
|
||||
{
|
||||
var sldSz = presentation.Root?.Element(P + "sldSz");
|
||||
if (sldSz == null) return Tuple.Create(12192000.0, 6858000.0);
|
||||
return Tuple.Create(
|
||||
(double)sldSz.Attribute("cx"),
|
||||
(double)sldSz.Attribute("cy"));
|
||||
}
|
||||
|
||||
private static XDocument GetPptxPresentation(System.IO.Packaging.Package pptx)
|
||||
{
|
||||
var relsUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/_rels/.rels", UriKind.Relative));
|
||||
var relsPart = pptx.GetPart(relsUri);
|
||||
var rels = XDocument.Load(relsPart.GetStream());
|
||||
var officeRel = rels.Root?.Elements("Relationship")
|
||||
.FirstOrDefault(r => (string)r.Attribute("Type") ==
|
||||
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument");
|
||||
if (officeRel == null) throw new InvalidDataException("未找到 Office Document 关系");
|
||||
var presUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri((string)officeRel.Attribute("Target"), UriKind.Relative));
|
||||
var presPart = pptx.GetPart(presUri);
|
||||
return XDocument.Load(presPart.GetStream());
|
||||
}
|
||||
|
||||
private static List<Tuple<string, string>> GetPresentationSlideRels(System.IO.Packaging.Package pptx, XDocument presentation)
|
||||
{
|
||||
var relsUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/ppt/_rels/presentation.xml.rels", UriKind.Relative));
|
||||
var relsPart = pptx.GetPart(relsUri);
|
||||
var rels = XDocument.Load(relsPart.GetStream());
|
||||
var slideType = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide";
|
||||
return rels.Root?.Elements("Relationship")
|
||||
.Where(r => (string)r.Attribute("Type") == slideType)
|
||||
.Select(r => Tuple.Create((string)r.Attribute("Id"), (string)r.Attribute("Target")))
|
||||
.ToList() ?? new List<Tuple<string, string>>();
|
||||
}
|
||||
|
||||
private static void CreateMinimalTheme(System.IO.Packaging.Package pptx)
|
||||
{
|
||||
var themeUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/ppt/theme/theme1.xml", UriKind.Relative));
|
||||
var themePart = pptx.CreatePart(themeUri, "application/vnd.openxmlformats-officedocument.theme+xml");
|
||||
using (var sw = new StreamWriter(themePart.GetStream()))
|
||||
{
|
||||
sw.Write("<?xml version=\"1.0\" encoding=\"utf-8\"?><a:theme xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" name=\"Default\">");
|
||||
sw.Write("<a:themeElements>");
|
||||
sw.Write("<a:clrScheme name=\"Default\"><a:dk1><a:srgbClr val=\"000000\"/></a:dk1><a:lt1><a:srgbClr val=\"FFFFFF\"/></a:lt1><a:dk2><a:srgbClr val=\"1F1F1F\"/></a:dk2><a:lt2><a:srgbClr val=\"FFFFFF\"/></a:lt2><a:accent1><a:srgbClr val=\"4472C4\"/></a:accent1><a:accent2><a:srgbClr val=\"ED7D31\"/></a:accent2><a:accent3><a:srgbClr val=\"A5A5A5\"/></a:accent3><a:accent4><a:srgbClr val=\"FFC000\"/></a:accent4><a:accent5><a:srgbClr val=\"5B9BD5\"/></a:accent5><a:accent6><a:srgbClr val=\"70AD47\"/></a:accent6><a:hlink><a:srgbClr val=\"0563C1\"/></a:hlink><a:folHlink><a:srgbClr val=\"954F72\"/></a:folHlink></a:clrScheme>");
|
||||
sw.Write("<a:fontScheme name=\"Default\"><a:majorFont><a:latin typeface=\"Calibri Light\"/></a:majorFont><a:minorFont><a:latin typeface=\"Calibri\"/></a:minorFont></a:fontScheme>");
|
||||
sw.Write("<a:fmtScheme name=\"Default\"/>");
|
||||
sw.Write("</a:themeElements></a:theme>");
|
||||
}
|
||||
}
|
||||
|
||||
private static void CreateMinimalSlideMaster(System.IO.Packaging.Package pptx)
|
||||
{
|
||||
var masterUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/ppt/slideMasters/slideMaster1.xml", UriKind.Relative));
|
||||
var masterPart = pptx.CreatePart(masterUri, "application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml");
|
||||
using (var sw = new StreamWriter(masterPart.GetStream()))
|
||||
{
|
||||
sw.Write("<?xml version=\"1.0\" encoding=\"utf-8\"?><p:sldMaster xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\">");
|
||||
sw.Write("<p:cSld><p:spTree><p:nvGrpSpPr><p:nvPr><p:cNvPr id=\"1\"/><p:cNvGrpSpPr/></p:nvPr></p:nvGrpSpPr><p:grpSpPr><a:xfrm><a:off x=\"0\" y=\"0\"/><a:ext cx=\"0\" cy=\"0\"/><a:chOff x=\"0\" y=\"0\"/><a:chExt cx=\"0\" cy=\"0\"/></a:xfrm></p:grpSpPr></p:spTree></p:cSld>");
|
||||
sw.Write("<p:sldLayoutIdLst><p:sldLayoutId id=\"2147483649\" r:id=\"rId1\"/></p:sldLayoutIdLst></p:sldMaster>");
|
||||
}
|
||||
|
||||
var masterRelUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/ppt/slideMasters/_rels/slideMaster1.xml.rels", UriKind.Relative));
|
||||
var masterRelPart = pptx.CreatePart(masterRelUri, "application/vnd.openxmlformats-package.relationships+xml");
|
||||
using (var sw = new StreamWriter(masterRelPart.GetStream()))
|
||||
{
|
||||
sw.Write("<?xml version=\"1.0\" encoding=\"utf-8\"?><Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">");
|
||||
sw.Write("<Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout\" Target=\"../slideLayouts/slideLayout1.xml\"/>");
|
||||
sw.Write("</Relationships>");
|
||||
}
|
||||
}
|
||||
|
||||
private static void CreateMinimalSlideLayout(System.IO.Packaging.Package pptx)
|
||||
{
|
||||
var layoutUri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/ppt/slideLayouts/slideLayout1.xml", UriKind.Relative));
|
||||
var layoutPart = pptx.CreatePart(layoutUri, "application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml");
|
||||
using (var sw = new StreamWriter(layoutPart.GetStream()))
|
||||
{
|
||||
sw.Write("<?xml version=\"1.0\" encoding=\"utf-8\"?><p:sldLayout xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\" type=\"blank\">");
|
||||
sw.Write("<p:cSld><p:spTree><p:nvGrpSpPr><p:nvPr><p:cNvPr id=\"1\"/><p:cNvGrpSpPr/></p:nvPr></p:nvGrpSpPr><p:grpSpPr><a:xfrm><a:off x=\"0\" y=\"0\"/><a:ext cx=\"0\" cy=\"0\"/><a:chOff x=\"0\" y=\"0\"/><a:chExt cx=\"0\" cy=\"0\"/></a:xfrm></p:grpSpPr></p:spTree></p:cSld></p:sldLayout>");
|
||||
}
|
||||
}
|
||||
|
||||
private static void CreatePresProps(System.IO.Packaging.Package pptx)
|
||||
{
|
||||
var uri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/ppt/presProps.xml", UriKind.Relative));
|
||||
var part = pptx.CreatePart(uri, "application/vnd.openxmlformats-officedocument.presentationml.presProps+xml");
|
||||
using (var sw = new StreamWriter(part.GetStream()))
|
||||
sw.Write("<?xml version=\"1.0\" encoding=\"utf-8\"?><p:presProps xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\"/>");
|
||||
}
|
||||
|
||||
private static void CreateViewProps(System.IO.Packaging.Package pptx)
|
||||
{
|
||||
var uri = System.IO.Packaging.PackUriHelper.CreatePartUri(new Uri("/ppt/viewProps.xml", UriKind.Relative));
|
||||
var part = pptx.CreatePart(uri, "application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml");
|
||||
using (var sw = new StreamWriter(part.GetStream()))
|
||||
sw.Write("<?xml version=\"1.0\" encoding=\"utf-8\"?><p:viewProps xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\"/>");
|
||||
}
|
||||
}
|
||||
}
|
||||
23
Manager/Services/IActivationService.cs
Normal file
23
Manager/Services/IActivationService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BetterSeewo.Manager.Services
|
||||
{
|
||||
public interface IActivationService
|
||||
{
|
||||
Task<bool> CheckActivationStatusAsync();
|
||||
Task<bool> ActivateProfessionalAsync(string licenseKey);
|
||||
Task<bool> EnableIWBForNonTouchAsync();
|
||||
Task<bool> ApplyBoardSupportPatchAsync();
|
||||
Task<bool> LaunchBen5InstallerAsync();
|
||||
ActivationInfo GetCurrentStatus();
|
||||
}
|
||||
|
||||
public class ActivationInfo
|
||||
{
|
||||
public bool IsProfessional { get; set; }
|
||||
public bool IsIWBActive { get; set; }
|
||||
public bool IsNonTouchBoard { get; set; }
|
||||
public string LicenseType { get; set; } = "Community";
|
||||
public string LastActivationDate { get; set; } = "";
|
||||
}
|
||||
}
|
||||
11
Manager/Services/IConversionService.cs
Normal file
11
Manager/Services/IConversionService.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BetterSeewo.Manager.Services
|
||||
{
|
||||
public interface IConversionService
|
||||
{
|
||||
Task<string> ConvertPptxToEnbxAsync(string pptxPath);
|
||||
Task<string> ConvertEnbxToPptxAsync(string enbxPath);
|
||||
Task FixConversionErrorsAsync();
|
||||
}
|
||||
}
|
||||
28
Manager/Services/InkService.cs
Normal file
28
Manager/Services/InkService.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BetterSeewo.Manager.Services
|
||||
{
|
||||
public class InkService
|
||||
{
|
||||
public async Task ExportInkAsync(string filePath)
|
||||
{
|
||||
await Task.Run(() =>
|
||||
{
|
||||
var dir = Path.GetDirectoryName(filePath);
|
||||
if (!string.IsNullOrEmpty(dir) && !Directory.Exists(dir))
|
||||
Directory.CreateDirectory(dir);
|
||||
File.WriteAllText(filePath, "{\"message\":\"ink_export_placeholder\"}");
|
||||
});
|
||||
}
|
||||
|
||||
public async Task ImportInkAsync(string filePath)
|
||||
{
|
||||
await Task.Run(() =>
|
||||
{
|
||||
if (!File.Exists(filePath)) return;
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
44
Manager/Services/InkSettings.cs
Normal file
44
Manager/Services/InkSettings.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System.IO;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace BetterSeewo.Manager.Services
|
||||
{
|
||||
public class InkSettings
|
||||
{
|
||||
private static readonly string SettingsPath = Path.Combine(
|
||||
System.Environment.GetFolderPath(System.Environment.SpecialFolder.LocalApplicationData),
|
||||
"BetterEN5", "ink-settings.json");
|
||||
|
||||
public bool AutoSaveEnabled { get; set; } = false;
|
||||
public int AutoSaveIntervalMinutes { get; set; } = 5;
|
||||
public string SaveDirectory { get; set; } = Path.Combine(
|
||||
System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments),
|
||||
"Better-Seewo", "Ink");
|
||||
|
||||
public static InkSettings Load()
|
||||
{
|
||||
try
|
||||
{
|
||||
if (File.Exists(SettingsPath))
|
||||
{
|
||||
var json = File.ReadAllText(SettingsPath);
|
||||
return JsonSerializer.Deserialize<InkSettings>(json) ?? new InkSettings();
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
return new InkSettings();
|
||||
}
|
||||
|
||||
public void Save()
|
||||
{
|
||||
try
|
||||
{
|
||||
var dir = Path.GetDirectoryName(SettingsPath);
|
||||
if (!string.IsNullOrEmpty(dir) && !Directory.Exists(dir))
|
||||
Directory.CreateDirectory(dir);
|
||||
File.WriteAllText(SettingsPath, JsonSerializer.Serialize(this, new JsonSerializerOptions { WriteIndented = true }));
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
}
|
||||
}
|
||||
202
Manager/Services/PatchService.cs
Normal file
202
Manager/Services/PatchService.cs
Normal file
@@ -0,0 +1,202 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BetterSeewo.Manager.Services
|
||||
{
|
||||
public class PatchService
|
||||
{
|
||||
private readonly string _backupDir;
|
||||
private readonly string _manifestPath;
|
||||
|
||||
public PatchService()
|
||||
{
|
||||
var appData = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
|
||||
_backupDir = Path.Combine(appData, "BetterEN5", "backup");
|
||||
_manifestPath = Path.Combine(_backupDir, "manifest.json");
|
||||
}
|
||||
|
||||
public bool IsInstalled()
|
||||
{
|
||||
return File.Exists(_manifestPath);
|
||||
}
|
||||
|
||||
public PatchManifest GetManifest()
|
||||
{
|
||||
if (!IsInstalled()) return new PatchManifest();
|
||||
try
|
||||
{
|
||||
var json = File.ReadAllText(_manifestPath);
|
||||
return System.Text.Json.JsonSerializer.Deserialize<PatchManifest>(json) ?? new PatchManifest();
|
||||
}
|
||||
catch
|
||||
{
|
||||
return new PatchManifest();
|
||||
}
|
||||
}
|
||||
|
||||
public async Task InstallAsync(IProgress<string> progress = null)
|
||||
{
|
||||
await Task.Run(() =>
|
||||
{
|
||||
progress?.Report("正在备份原始文件...");
|
||||
Directory.CreateDirectory(_backupDir);
|
||||
var manifest = new PatchManifest
|
||||
{
|
||||
InstallTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
|
||||
Version = "1.2.0"
|
||||
};
|
||||
|
||||
BackupFile(manifest,
|
||||
Path.Combine(
|
||||
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
|
||||
"Seewo", "EasiNote5", "Config", "IWBConfig.json"));
|
||||
|
||||
BackupFile(manifest,
|
||||
Path.Combine(
|
||||
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
|
||||
"Seewo", "EasiNote5", "Config", "TouchConfig.ini"));
|
||||
|
||||
var appData = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
|
||||
var cfgFkv = Path.Combine(appData, "Seewo", "EasiNote5", "Data", "Configs.fkv");
|
||||
if (File.Exists(cfgFkv))
|
||||
BackupFile(manifest, cfgFkv);
|
||||
|
||||
var mainDir = Path.Combine(
|
||||
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86),
|
||||
"Seewo", "EasiNote5", "EasiNote5_5.2.4.9855", "Main");
|
||||
var configsJson = Path.Combine(mainDir, "Configs", "configs.json");
|
||||
if (File.Exists(configsJson))
|
||||
BackupFile(manifest, configsJson);
|
||||
|
||||
progress?.Report("正在修补注册表...");
|
||||
manifest.RegistryKeys.Add(@"HKCU\SOFTWARE\Seewo\EasiNote5\ForceIWB");
|
||||
manifest.RegistryKeys.Add(@"HKCU\SOFTWARE\Seewo\EasiNote5\SkipTouchCheck");
|
||||
manifest.RegistryKeys.Add(@"HKCU\SOFTWARE\Seewo\EasiNote5\EnableMultiTouch");
|
||||
|
||||
progress?.Report("正在应用补丁...");
|
||||
var localAppData = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
|
||||
var configDir = Path.Combine(localAppData, "Seewo", "EasiNote5", "Config");
|
||||
Directory.CreateDirectory(configDir);
|
||||
|
||||
var iwbConfig = new
|
||||
{
|
||||
ForceIWB = true,
|
||||
TouchDriverType = "WindowsTouch",
|
||||
SkipTouchCheck = true,
|
||||
EnableMultiTouch = true,
|
||||
LastFixTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
|
||||
};
|
||||
File.WriteAllText(Path.Combine(configDir, "IWBConfig.json"),
|
||||
System.Text.Json.JsonSerializer.Serialize(iwbConfig, new System.Text.Json.JsonSerializerOptions { WriteIndented = true }));
|
||||
|
||||
var touchCfgLines = new[]
|
||||
{
|
||||
"[Touch]", "Enable=1", "Driver=Auto", "ForceEnable=1",
|
||||
"SuppressErrors=1", "SkipDetection=1", "FallbackToMouse=1", "",
|
||||
"[Calibration]", "Enabled=0", "",
|
||||
"[MultiTouch]", "MaxPoints=10", "EnableGesture=1",
|
||||
};
|
||||
File.WriteAllLines(Path.Combine(configDir, "TouchConfig.ini"), touchCfgLines);
|
||||
|
||||
Microsoft.Win32.Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Seewo\EasiNote5", "ForceIWB", 1, Microsoft.Win32.RegistryValueKind.DWord);
|
||||
Microsoft.Win32.Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Seewo\EasiNote5", "SkipTouchCheck", 1, Microsoft.Win32.RegistryValueKind.DWord);
|
||||
Microsoft.Win32.Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Seewo\EasiNote5", "EnableMultiTouch", 1, Microsoft.Win32.RegistryValueKind.DWord);
|
||||
|
||||
File.WriteAllText(_manifestPath,
|
||||
System.Text.Json.JsonSerializer.Serialize(manifest, new System.Text.Json.JsonSerializerOptions { WriteIndented = true }));
|
||||
|
||||
progress?.Report("补丁安装完成");
|
||||
});
|
||||
}
|
||||
|
||||
public async Task UninstallAsync(IProgress<string> progress = null)
|
||||
{
|
||||
await Task.Run(() =>
|
||||
{
|
||||
if (!IsInstalled())
|
||||
{
|
||||
progress?.Report("未检测到补丁,无需卸载");
|
||||
return;
|
||||
}
|
||||
|
||||
var manifest = GetManifest();
|
||||
progress?.Report("正在还原注册表...");
|
||||
foreach (var key in manifest.RegistryKeys)
|
||||
{
|
||||
try
|
||||
{
|
||||
var parts = key.Split('\\');
|
||||
if (parts.Length >= 2)
|
||||
{
|
||||
var hive = parts[0];
|
||||
var subKey = string.Join("\\", parts.Skip(1));
|
||||
if (hive == "HKCU")
|
||||
{
|
||||
using var rk = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(
|
||||
Path.GetDirectoryName(subKey)!.Replace("HKEY_CURRENT_USER\\", ""), true);
|
||||
rk?.DeleteValue(Path.GetFileName(subKey), false);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
||||
progress?.Report("正在还原备份文件...");
|
||||
foreach (var backup in manifest.Backups)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (File.Exists(backup.BackupPath))
|
||||
{
|
||||
File.Copy(backup.BackupPath, backup.OriginalPath, true);
|
||||
File.Delete(backup.BackupPath);
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
if (File.Exists(_manifestPath))
|
||||
File.Delete(_manifestPath);
|
||||
}
|
||||
catch { }
|
||||
|
||||
progress?.Report("卸载完成,建议重启希沃白板");
|
||||
});
|
||||
}
|
||||
|
||||
private void BackupFile(PatchManifest manifest, string filePath)
|
||||
{
|
||||
if (!File.Exists(filePath)) return;
|
||||
var backupPath = filePath + ".bak";
|
||||
try
|
||||
{
|
||||
File.Copy(filePath, backupPath, true);
|
||||
manifest.Backups.Add(new PatchBackupEntry
|
||||
{
|
||||
OriginalPath = filePath,
|
||||
BackupPath = backupPath
|
||||
});
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
}
|
||||
|
||||
public class PatchManifest
|
||||
{
|
||||
public string Version { get; set; } = "";
|
||||
public string InstallTime { get; set; } = "";
|
||||
public List<PatchBackupEntry> Backups { get; set; } = new();
|
||||
public List<string> RegistryKeys { get; set; } = new();
|
||||
}
|
||||
|
||||
public class PatchBackupEntry
|
||||
{
|
||||
public string OriginalPath { get; set; } = "";
|
||||
public string BackupPath { get; set; } = "";
|
||||
}
|
||||
}
|
||||
186
Manager/Services/TouchFixService.cs
Normal file
186
Manager/Services/TouchFixService.cs
Normal file
@@ -0,0 +1,186 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BetterSeewo.Manager.Services
|
||||
{
|
||||
public static class TouchFixService
|
||||
{
|
||||
private static bool _fixApplied = false;
|
||||
|
||||
public static async Task ApplyFixAsync()
|
||||
{
|
||||
if (_fixApplied) return;
|
||||
|
||||
try
|
||||
{
|
||||
await Task.Run(() =>
|
||||
{
|
||||
ForceIWBMode();
|
||||
PatchTouchConfig();
|
||||
SuppressTouchErrors();
|
||||
|
||||
_fixApplied = true;
|
||||
});
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Debug.WriteLine($"[Better-EN5] TouchFix failed: {ex.Message}");
|
||||
}
|
||||
}
|
||||
|
||||
public static bool IsTouchWorkingCorrectly()
|
||||
{
|
||||
try
|
||||
{
|
||||
return TryDetectIWB();
|
||||
}
|
||||
catch
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static async Task<bool> ForceTouchEnableAsync()
|
||||
{
|
||||
return await Task.Run(() =>
|
||||
{
|
||||
try
|
||||
{
|
||||
ForceIWBMode();
|
||||
return true;
|
||||
}
|
||||
catch
|
||||
{
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private static bool TryDetectIWB()
|
||||
{
|
||||
try
|
||||
{
|
||||
using var key = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Seewo\EasiNote5");
|
||||
if (key != null)
|
||||
{
|
||||
var val = key.GetValue("ForceIWB");
|
||||
if (val != null && val.ToString() == "1")
|
||||
return true;
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
|
||||
try
|
||||
{
|
||||
var localAppData = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
|
||||
var configFile = Path.Combine(localAppData, "Seewo", "EasiNote5", "Config", "IWBConfig.json");
|
||||
if (File.Exists(configFile))
|
||||
{
|
||||
var json = File.ReadAllText(configFile);
|
||||
if (json.Contains("\"ForceIWB\": true") || json.Contains("\"ForceIWB\":true"))
|
||||
return true;
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
private static void ForceIWBMode()
|
||||
{
|
||||
try
|
||||
{
|
||||
var localAppData = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
|
||||
var configDir = Path.Combine(localAppData, "Seewo", "EasiNote5", "Config");
|
||||
var configFile = Path.Combine(configDir, "IWBConfig.json");
|
||||
|
||||
if (!Directory.Exists(configDir))
|
||||
Directory.CreateDirectory(configDir);
|
||||
|
||||
var config = new
|
||||
{
|
||||
ForceIWB = true,
|
||||
TouchDriverType = "WindowsTouch",
|
||||
SkipTouchCheck = true,
|
||||
EnableMultiTouch = true,
|
||||
LastFixTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")
|
||||
};
|
||||
|
||||
var json = System.Text.Json.JsonSerializer.Serialize(config, new System.Text.Json.JsonSerializerOptions
|
||||
{
|
||||
WriteIndented = true
|
||||
});
|
||||
|
||||
File.WriteAllText(configFile, json);
|
||||
|
||||
Microsoft.Win32.Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Seewo\EasiNote5", "ForceIWB", 1, Microsoft.Win32.RegistryValueKind.DWord);
|
||||
Microsoft.Win32.Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Seewo\EasiNote5", "SkipTouchCheck", 1, Microsoft.Win32.RegistryValueKind.DWord);
|
||||
Microsoft.Win32.Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Seewo\EasiNote5", "EnableMultiTouch", 1, Microsoft.Win32.RegistryValueKind.DWord);
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
||||
private static void PatchTouchConfig()
|
||||
{
|
||||
try
|
||||
{
|
||||
var configDir = Path.Combine(
|
||||
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
|
||||
"Seewo", "EasiNote5", "Config");
|
||||
|
||||
var cfgFile = Path.Combine(configDir, "TouchConfig.ini");
|
||||
if (!Directory.Exists(configDir))
|
||||
Directory.CreateDirectory(configDir);
|
||||
|
||||
var lines = new[]
|
||||
{
|
||||
"[Touch]",
|
||||
"Enable=1",
|
||||
"Driver=Auto",
|
||||
"ForceEnable=1",
|
||||
"SuppressErrors=1",
|
||||
"SkipDetection=1",
|
||||
"FallbackToMouse=1",
|
||||
"",
|
||||
"[Calibration]",
|
||||
"Enabled=0",
|
||||
"",
|
||||
"[MultiTouch]",
|
||||
"MaxPoints=10",
|
||||
"EnableGesture=1",
|
||||
};
|
||||
|
||||
File.WriteAllLines(cfgFile, lines);
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
||||
private static void SuppressTouchErrors()
|
||||
{
|
||||
try
|
||||
{
|
||||
var localAppData = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
|
||||
var logDir = Path.Combine(localAppData, "Seewo", "EasiNote5", "Logs", "Touch");
|
||||
|
||||
if (Directory.Exists(logDir))
|
||||
{
|
||||
foreach (var logFile in Directory.GetFiles(logDir, "*.log"))
|
||||
{
|
||||
try { File.Delete(logFile); } catch { }
|
||||
}
|
||||
}
|
||||
|
||||
var seewoRegPath = @"HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Seewo\EasiNote5";
|
||||
try
|
||||
{
|
||||
Microsoft.Win32.Registry.SetValue(seewoRegPath, "SkipTouchCheck", "1");
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user