-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathDockerUI.xaml.cs
107 lines (95 loc) · 3.37 KB
/
DockerUI.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using corel = Corel.Interop.VGCore;
namespace Latex4CorelDraw
{
public partial class DockerUI : UserControl
{
private LatexDialog m_dialog;
private corel.Application corelApp;
public corel::Application CorelApp
{
get { return corelApp; }
}
static private DockerUI m_current;
static public DockerUI Current
{
get { return m_current; }
}
public DockerUI(corel.Application app)
{
this.corelApp = app;
m_current = this;
InitializeComponent();
AddinUtilities.initFonts();
AddinUtilities.copyLatexTemplate("LatexTemplate.txt", Properties.Resources.LatexTemplate);
m_dialog = new LatexDialog();
SettingsManager mgr = SettingsManager.getCurrent();
}
private void btn_addEquation_Click(object sender, RoutedEventArgs e)
{
string template = "\\begin{equation*}\r\n\t<Enter latex code>\r\n\\end{equation*}\r\n";
createLatexObject(template, "Create latex equation");
}
public void createLatexObject(string template, string title)
{
List<string> args = new List<string>();
bool useTemplate = template != null;
m_dialog.init(template, useTemplate, title);
m_dialog.ShowDialog();
}
public bool editLatexObject(Corel.Interop.VGCore.Shape s)
{
LatexEquation eq = ShapeTags.getLatexEquation(s);
if (eq != null)
{
m_dialog.init(eq, "Edit latex object");
m_dialog.ShowDialog();
if (m_dialog.Result == System.Windows.Forms.DialogResult.OK)
{
Corel.Interop.VGCore.Shape latexObj = m_dialog.LatexEquation.m_shape;
if (latexObj != null)
{
latexObj.TransformationMatrix = s.TransformationMatrix;
s.Delete();
}
}
return true;
}
return false;
}
private void btn_editLatex_Click(object sender, RoutedEventArgs e)
{
Corel.Interop.VGCore.ShapeRange sel = corelApp.ActiveDocument.SelectionRange;
bool found = false;
foreach (Corel.Interop.VGCore.Shape s in sel)
{
if (editLatexObject(s))
found = true;
}
if (!found)
createLatexObject(null, "Create latex object");
}
private void btn_addLatex_Click(object sender, RoutedEventArgs e)
{
createLatexObject(null, "Create latex object");
}
private void btn_addEqnarray_Click(object sender, RoutedEventArgs e)
{
string template = "\\begin{eqnarray*}\r\n\t<Enter latex code>\r\n\\end{eqnarray*}\r\n";
createLatexObject(template, "Create latex equation array");
}
}
}