123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- using ComPDFKit.PDFPage;
- using ComPDFKit.PDFPage.Edit;
- using ComPDFKitViewer;
- using ComPDFKitViewer.PdfViewer;
- using System;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Controls.Primitives;
- using System.Windows.Media;
- namespace Compdfkit_Tools.Edit
- {
- public partial class PDFTextEditControl : UserControl
- {
- public CPDFViewer PDFView { get;private set; }
- public PDFEditEvent EditEvent { get; set; }
- public PDFTextEditControl()
- {
- InitializeComponent();
- Loaded += PDFTextEditControl_Loaded;
- }
- public void InitWithPDFViewer(CPDFViewer newPDFView)
- {
- PDFView = newPDFView;
- }
- public void SetPDFTextEditData(PDFEditEvent newEvent)
- {
- EditEvent = null;
- if (newEvent!=null && newEvent.EditType==CPDFEditType.EditText)
- {
- if (newEvent.SystemFontNameList.Contains(newEvent.FontName) == false && string.IsNullOrEmpty(newEvent.FontName)==false)
- {
- newEvent.SystemFontNameList.Add(newEvent.FontName);
- }
- TextStyleUI.SetFontNames(newEvent.SystemFontNameList);
- TextStyleUI.SelectFontName(newEvent.FontName);
- TextStyleUI.SetFontStyle(newEvent.IsBold,newEvent.IsItalic);
- TextStyleUI.SetFontSize(newEvent.FontSize);
- OpacityTextBox.Text = string.Format("{0}%", (int)(Math.Ceiling(newEvent.Transparency * 100/255D)));
- TextAlignUI.SetFontAlign(newEvent.TextAlign);
- FontColorUI.SetCheckedForColor(newEvent.FontColor);
- }
- EditEvent = newEvent;
- }
- private void Slider_DragCompleted(object sender, DragCompletedEventArgs e)
- {
- Slider slider = sender as Slider;
- if (slider != null)
- {
- slider.Tag = "true";
- }
- if (EditEvent != null)
- {
- EditEvent.FontSize = slider.Value;
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- private void SliderOpacity_DragCompleted(object sender, DragCompletedEventArgs e)
- {
- Slider slider = sender as Slider;
- if (slider != null)
- {
- slider.Tag = "true";
- }
- if (EditEvent != null)
- {
- EditEvent.Transparency = (int)(FontOpacitySlider.Value * 255);
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- private void SliderOpacity_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
- {
- Slider slider = sender as Slider;
- if(OpacityTextBox!=null && FontOpacitySlider!=null)
- {
- OpacityTextBox.Text = string.Format("{0}%", (int)(FontOpacitySlider.Value * 100));
- }
-
- if (slider != null && slider.Tag != null && slider.Tag.ToString() == "false")
- {
- return;
- }
- if (EditEvent != null)
- {
- EditEvent.Transparency = (int)(FontOpacitySlider.Value * 255);
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- private void Slider_DragStarted(object sender, DragStartedEventArgs e)
- {
- Slider slider = sender as Slider;
- if (slider != null)
- {
- slider.Tag = "false";
- }
- }
- private void Slider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
- {
- Slider slider = sender as Slider;
- if (slider != null && slider.Tag != null && slider.Tag.ToString() == "false")
- {
- return;
- }
- if (EditEvent != null)
- {
- EditEvent.FontSize = slider.Value;
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- private void PDFTextEditControl_Loaded(object sender, RoutedEventArgs e)
- {
- TextStyleUI.TextFontChanged += TextStyleUI_TextFontChanged;
- TextStyleUI.TextBoldChanged += TextStyleUI_TextBoldChanged;
- TextStyleUI.TextItalicChanged += TextStyleUI_TextItalicChanged;
- TextStyleUI.TextSizeChanged += TextStyleUI_TextSizeChanged;
- TextAlignUI.TextAlignChanged += TextAlignUI_TextAlignChanged;
- FontColorUI.ColorChanged += FontColorUI_ColorChanged;
- }
- private void TextStyleUI_TextSizeChanged(object sender, double e)
- {
- if (EditEvent != null)
- {
- EditEvent.FontSize = e;
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- private void FontColorUI_ColorChanged(object sender, EventArgs e)
- {
- if (EditEvent != null)
- {
- SolidColorBrush newBrush = FontColorUI.Brush as SolidColorBrush;
- if (newBrush != null)
- {
- EditEvent.FontColor = newBrush.Color;
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- }
- private void TextAlignUI_TextAlignChanged(object sender,TextAlignType e)
- {
- if (EditEvent != null)
- {
- EditEvent.TextAlign = e;
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- private void TextStyleUI_TextItalicChanged(object sender, bool e)
- {
- if(EditEvent!=null)
- {
- EditEvent.IsItalic = e;
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- private void TextStyleUI_TextBoldChanged(object sender, bool e)
- {
- if (EditEvent != null)
- {
- EditEvent.IsBold = e;
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- private void TextStyleUI_TextFontChanged(object sender, string e)
- {
- if (EditEvent != null)
- {
- EditEvent.FontName = e;
- EditEvent.UpdatePDFEditByEventArgs();
- }
- }
- private void OpacityComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
- {
- ComboBoxItem selectItem = OpacityComboBox.SelectedItem as ComboBoxItem;
- if (selectItem != null && selectItem.Content != null)
- {
- if (double.TryParse(selectItem.Content.ToString().TrimEnd('%'), out double newOpacity))
- {
- OpacityTextBox.Text = selectItem.Content.ToString();
- FontOpacitySlider.Value = newOpacity/100.0;
- }
- }
- }
- }
- }
|