- Provider 추상화(IConverterProvider + ProviderCapability) — Available/RequiresExternal/ComingSoon 1급 시민 - 변환 구현: Magick(이미지·RAW·GIF·TIFF), HEIC/HEIF(libheif decode→Magick encode), PDF(PDFium), DOCX(Word COM 또는 LibreOffice 자동 감지) - ComingSoon 스텁: HTML, HWP/HWPX (UI 노출, 컨텍스트 메뉴 등록 자동 제외) - WPF + WPF-UI 4.3 Fluent 2 UI: 메인 창(드래그&드롭, Provider 카드), 변환 창(썸네일·옵션·진행률), 빠른 변환 진행 창, 진단 창 - 단일 EXE에 verb 라우팅: quick / dialog / register / unregister / diagnose / help - HKCU SystemFileAssociations 기반 컨텍스트 메뉴 등록 (Win11 "추가 옵션 표시"에 노출) - README, packaging/ Phase 2 placeholder 포함 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
59 lines
3.1 KiB
XML
59 lines
3.1 KiB
XML
<Application x:Class="EverythingToJpeg.App.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
|
xmlns:local="clr-namespace:EverythingToJpeg.App"
|
|
ShutdownMode="OnExplicitShutdown">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ui:ThemesDictionary Theme="Dark"/>
|
|
<ui:ControlsDictionary/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<!-- Spacing tokens (Fluent 8pt grid) -->
|
|
<Thickness x:Key="SpacingXS">4</Thickness>
|
|
<Thickness x:Key="SpacingS">8</Thickness>
|
|
<Thickness x:Key="SpacingM">16</Thickness>
|
|
<Thickness x:Key="SpacingL">24</Thickness>
|
|
<Thickness x:Key="SpacingXL">32</Thickness>
|
|
|
|
<!-- Typography (Fluent 2 type ramp, Segoe UI Variable) -->
|
|
<Style x:Key="TextTitleLarge" TargetType="TextBlock">
|
|
<Setter Property="FontFamily" Value="Segoe UI Variable Display, Segoe UI"/>
|
|
<Setter Property="FontSize" Value="28"/>
|
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
|
</Style>
|
|
<Style x:Key="TextTitle" TargetType="TextBlock">
|
|
<Setter Property="FontFamily" Value="Segoe UI Variable Display, Segoe UI"/>
|
|
<Setter Property="FontSize" Value="20"/>
|
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
|
</Style>
|
|
<Style x:Key="TextSubtitle" TargetType="TextBlock">
|
|
<Setter Property="FontFamily" Value="Segoe UI Variable Text, Segoe UI"/>
|
|
<Setter Property="FontSize" Value="16"/>
|
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
|
</Style>
|
|
<Style x:Key="TextBodyStrong" TargetType="TextBlock">
|
|
<Setter Property="FontFamily" Value="Segoe UI Variable Text, Segoe UI"/>
|
|
<Setter Property="FontSize" Value="14"/>
|
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
|
</Style>
|
|
<Style x:Key="TextBody" TargetType="TextBlock">
|
|
<Setter Property="FontFamily" Value="Segoe UI Variable Text, Segoe UI"/>
|
|
<Setter Property="FontSize" Value="14"/>
|
|
</Style>
|
|
<Style x:Key="TextCaption" TargetType="TextBlock">
|
|
<Setter Property="FontFamily" Value="Segoe UI Variable Small, Segoe UI"/>
|
|
<Setter Property="FontSize" Value="12"/>
|
|
<Setter Property="Foreground" Value="{DynamicResource TextFillColorSecondaryBrush}"/>
|
|
</Style>
|
|
|
|
<!-- Status badge brushes -->
|
|
<SolidColorBrush x:Key="BadgeReadyBrush" Color="#10B981"/>
|
|
<SolidColorBrush x:Key="BadgeWarnBrush" Color="#F59E0B"/>
|
|
<SolidColorBrush x:Key="BadgeInfoBrush" Color="#3B82F6"/>
|
|
<SolidColorBrush x:Key="BadgeMutedBrush" Color="#6B7280"/>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|