1
|
using KCOM.Common;
|
2
|
using KCOM.Events;
|
3
|
using MarkupToPDF.Common;
|
4
|
using MarkupToPDF.Controls.Parsing;
|
5
|
using Svg2Xaml;
|
6
|
using System;
|
7
|
using System.Collections.Generic;
|
8
|
using System.ComponentModel;
|
9
|
using System.Linq;
|
10
|
using System.Text;
|
11
|
using System.Windows;
|
12
|
using System.Windows.Controls;
|
13
|
using System.Windows.Input;
|
14
|
using System.Windows.Media;
|
15
|
using System.Windows.Media.Imaging;
|
16
|
using Telerik.Windows.Controls;
|
17
|
//using static KCOM.Views.MainMenu;
|
18
|
|
19
|
namespace KCOM
|
20
|
{
|
21
|
public partial class MainWindow : Window
|
22
|
{
|
23
|
public double CumulativeWheel = 0;
|
24
|
|
25
|
public MarkupToPDF.Common.Undo_data UndoData;
|
26
|
|
27
|
//20181108
|
28
|
//강인구 추가
|
29
|
//KCOM.Views.MainMenu mainMenu = new Views.MainMenu();
|
30
|
|
31
|
MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn markupReturn = new MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn();
|
32
|
|
33
|
public void KeyEventDownAction(object sender, KeyEventArgs e)
|
34
|
{
|
35
|
switch (e.Key)
|
36
|
{
|
37
|
//강인구 추가
|
38
|
#region Ctrl
|
39
|
case Key.LeftCtrl:
|
40
|
{
|
41
|
if (!ViewerDataModel.Instance.IsPressCtrl)
|
42
|
{
|
43
|
ViewerDataModel.Instance.IsPressCtrl = true;
|
44
|
}
|
45
|
}
|
46
|
break;
|
47
|
case Key.RightCtrl:
|
48
|
{
|
49
|
|
50
|
}
|
51
|
break;
|
52
|
#endregion
|
53
|
|
54
|
#region Shift
|
55
|
case Key.RightShift:
|
56
|
{
|
57
|
|
58
|
}
|
59
|
break;
|
60
|
case Key.LeftShift:
|
61
|
{
|
62
|
if (!ViewerDataModel.Instance.IsPressShift)
|
63
|
{
|
64
|
ViewerDataModel.Instance.IsPressShift = true;
|
65
|
}
|
66
|
//if (dzMain.deepZoomObject._MouseHelper.isMouseOver && !dzMain.DeepLayer.Drawing)
|
67
|
//{
|
68
|
// dzMain.deepZoomObject._MouseHelper.isPressShift = true;
|
69
|
// CumulativeWheel += dzMain.deepZoomObject._MouseHelper.wheelDelta;
|
70
|
// dzMain.deepZoomObject._MouseHelper.wheelDelta = 0;
|
71
|
// System.Diagnostics.Debug.WriteLine(CumulativeWheel);
|
72
|
// if (CumulativeWheel == 3 && CumulativeWheel >= 0)
|
73
|
// {
|
74
|
// this.dzMain.pageNavigator.pagebeforetMove();
|
75
|
// CumulativeWheel = 0;
|
76
|
// }
|
77
|
// else if (CumulativeWheel == -3 && CumulativeWheel <= 0)
|
78
|
// {
|
79
|
// this.dzMain.pageNavigator.pageNextMove();
|
80
|
// CumulativeWheel = 0;
|
81
|
// }
|
82
|
//}
|
83
|
|
84
|
}
|
85
|
break;
|
86
|
#endregion
|
87
|
|
88
|
//강인구 추가
|
89
|
#region 단축키 선택
|
90
|
|
91
|
#region 전체 선택(Ctrl + A)
|
92
|
case Key.A:
|
93
|
{
|
94
|
if (ViewerDataModel.Instance.IsPressCtrl && (App.ViewInfo.CreateFinalPDFPermission || App.ViewInfo.NewCommentPermission))
|
95
|
{
|
96
|
this.dzMainMenu.InkControl_Convert();
|
97
|
|
98
|
if (Common.ViewerDataModel.Instance.MarkupControls_USER.Count > 0)
|
99
|
{
|
100
|
//전체 선택 시 선택된 토글 해제
|
101
|
var TogList = this.dzTopMenu.Parent.ChildrenOfType<RadToggleButton>();
|
102
|
this.dzMainMenu.controlType = MarkupToPDF.Controls.Common.ControlType.None;
|
103
|
this.dzMainMenu.mouseHandlingMode = IKCOM.MouseHandlingMode.None;
|
104
|
|
105
|
//컨트롤을 그리는 도중일 경우 컨트롤 삭제
|
106
|
ViewerDataModel.Instance.MarkupControls_USER.Remove(this.dzMainMenu.currentControl);
|
107
|
this.dzMainMenu.currentControl = null;
|
108
|
|
109
|
foreach (var tog in TogList)
|
110
|
{
|
111
|
tog.IsChecked = false;
|
112
|
}
|
113
|
|
114
|
//선택된 어도너가 있을 시 취소하고 전체 선택
|
115
|
SelectionSet.Instance.UnSelect(this.dzMainMenu);
|
116
|
|
117
|
UndoData = new Undo_data()
|
118
|
{
|
119
|
IsUndo = false,
|
120
|
Event = Event_Type.Select,
|
121
|
EventTime = DateTime.Now,
|
122
|
Markup_List = new List<Multi_Undo_data>()
|
123
|
};
|
124
|
|
125
|
List<MarkupToPDF.Common.CommentUserInfo> adornerSet = new List<MarkupToPDF.Common.CommentUserInfo>();
|
126
|
var control = ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.GetType().Name != ""
|
127
|
&& data.Visibility != Visibility.Hidden).ToList();
|
128
|
Multi_Undo_data multi_Undo_Data = new Multi_Undo_data();
|
129
|
|
130
|
foreach (var item in control)
|
131
|
{
|
132
|
adornerSet.Add(item);
|
133
|
//multi_Undo_Data.Markup = item;
|
134
|
multi_Undo_Data = this.dzMainMenu.Control_Style(item);
|
135
|
UndoData.Markup_List.Add(multi_Undo_Data);
|
136
|
|
137
|
multi_Undo_Data = new Multi_Undo_data();
|
138
|
ViewerDataModel.Instance.MarkupControls_USER.Remove(item);
|
139
|
|
140
|
}
|
141
|
|
142
|
if (adornerSet.Count > 0)
|
143
|
{
|
144
|
Controls.AdornerFinal final = new Controls.AdornerFinal(adornerSet);
|
145
|
this.dzMainMenu.SelectLayer.Children.Add(final);
|
146
|
}
|
147
|
|
148
|
ViewerDataModel.Instance.UndoDataList.Where(data => data.IsUndo == true).ToList().ForEach(i =>
|
149
|
{
|
150
|
ViewerDataModel.Instance.UndoDataList.Remove(i);
|
151
|
});
|
152
|
|
153
|
|
154
|
ViewerDataModel.Instance.UndoDataList.Add(UndoData);
|
155
|
}
|
156
|
}
|
157
|
}
|
158
|
break;
|
159
|
#endregion
|
160
|
|
161
|
|
162
|
|
163
|
#region 복사하기(Ctrl + C)
|
164
|
case Key.C:
|
165
|
{
|
166
|
if (ViewerDataModel.Instance.IsPressCtrl)
|
167
|
{
|
168
|
if (this.dzMainMenu.SelectLayer.Children.Count > 0)
|
169
|
{
|
170
|
string MarkupData = "";
|
171
|
|
172
|
foreach (var item in this.dzMainMenu.SelectLayer.Children)
|
173
|
{
|
174
|
string id = "";
|
175
|
if (item.GetType().Name == "AdornerFinal")
|
176
|
{
|
177
|
foreach (var InnerItem in (item as Controls.AdornerFinal).Members.Cast<Controls.AdornerMember>())
|
178
|
{
|
179
|
if (!ViewerDataModel.Instance.MarkupControls.Contains(InnerItem.DrawingData))
|
180
|
{
|
181
|
markupReturn = MarkupParser.MarkupToString(InnerItem.DrawingData as MarkupToPDF.Common.CommentUserInfo, App.ViewInfo.UserID);
|
182
|
|
183
|
var Item_ = ViewerDataModel.Instance.MyMarkupList.Where(d => d.ID == (InnerItem.DrawingData as MarkupToPDF.Common.CommentUserInfo).CommentID).FirstOrDefault();
|
184
|
|
185
|
if (Item_ != null)
|
186
|
{
|
187
|
id = "|SymbolID|" + ViewerDataModel.Instance.MyMarkupList.Where
|
188
|
(d => d.ID == (InnerItem.DrawingData as MarkupToPDF.Common.CommentUserInfo).CommentID).FirstOrDefault().Symbol_ID;
|
189
|
}
|
190
|
else
|
191
|
{
|
192
|
if (InnerItem.Symbol_ID != null)
|
193
|
{
|
194
|
id = "|SymbolID|" + InnerItem.Symbol_ID;
|
195
|
|
196
|
}
|
197
|
else
|
198
|
{
|
199
|
id = "";
|
200
|
}
|
201
|
}
|
202
|
MarkupData += "|OR|" + markupReturn.ConvertData + id;
|
203
|
}
|
204
|
}
|
205
|
Clipboard.SetText(MarkupData);
|
206
|
}
|
207
|
}
|
208
|
}
|
209
|
}
|
210
|
}
|
211
|
break;
|
212
|
#endregion
|
213
|
|
214
|
#region 잘라내기(Ctrl + X)
|
215
|
case Key.X:
|
216
|
{
|
217
|
if (ViewerDataModel.Instance.IsPressCtrl)
|
218
|
{
|
219
|
if (this.dzMainMenu.SelectLayer.Children.Count > 0)
|
220
|
{
|
221
|
foreach (var item in this.dzMainMenu.SelectLayer.Children)
|
222
|
{
|
223
|
string MarkupData = "";
|
224
|
|
225
|
if (item.GetType().Name == "AdornerFinal")
|
226
|
{
|
227
|
foreach (var InnerItem in (item as Controls.AdornerFinal).Members.Cast<Controls.AdornerMember>())
|
228
|
{
|
229
|
if (!ViewerDataModel.Instance.MarkupControls.Contains(InnerItem.DrawingData))
|
230
|
{
|
231
|
markupReturn = MarkupParser.MarkupToString(InnerItem.DrawingData as MarkupToPDF.Common.CommentUserInfo, App.ViewInfo.UserID);
|
232
|
MarkupData += "|OR|" + markupReturn.ConvertData;
|
233
|
}
|
234
|
}
|
235
|
Clipboard.SetText(MarkupData);
|
236
|
}
|
237
|
}
|
238
|
this.dzMainMenu.SelectLayer.Children.Clear();
|
239
|
}
|
240
|
}
|
241
|
|
242
|
}
|
243
|
break;
|
244
|
#endregion
|
245
|
|
246
|
#region 붙여넣기(Ctrl + V)
|
247
|
case Key.V:
|
248
|
{
|
249
|
if (ViewerDataModel.Instance.IsPressCtrl && (App.ViewInfo.CreateFinalPDFPermission || App.ViewInfo.NewCommentPermission))
|
250
|
{
|
251
|
//마크업 붙여넣기
|
252
|
//if (Clipboard.GetText().Contains("|DZ|"))
|
253
|
if (Clipboard.GetText().Contains("|OR||DZ|"))
|
254
|
{
|
255
|
List<MarkupToPDF.Common.CommentUserInfo> adornerSet = new List<MarkupToPDF.Common.CommentUserInfo>();
|
256
|
|
257
|
string[] delimiterChars = { "|OR|" };
|
258
|
string[] delimiterChars2 = { "|OR|", "|SymbolID|" };
|
259
|
string[] data = Clipboard.GetText().Split(delimiterChars, StringSplitOptions.RemoveEmptyEntries);
|
260
|
|
261
|
SelectionSet.Instance.UnSelect(this.dzMainMenu);
|
262
|
|
263
|
Multi_Undo_data multi_Undo_Data = new Multi_Undo_data();
|
264
|
|
265
|
//강인구 Undo/Redo 보류
|
266
|
UndoData = new Undo_data()
|
267
|
{
|
268
|
IsUndo = false,
|
269
|
Event = Event_Type.Create,
|
270
|
EventTime = DateTime.Now,
|
271
|
Markup_List = new List<Multi_Undo_data>()
|
272
|
};
|
273
|
|
274
|
ViewerDataModel.Instance.UndoDataList.Where(data1 => data1.IsUndo == true).ToList().ForEach(i =>
|
275
|
{
|
276
|
ViewerDataModel.Instance.UndoDataList.Remove(i);
|
277
|
});
|
278
|
|
279
|
foreach (string parse in data)
|
280
|
{
|
281
|
if(parse != "")
|
282
|
{
|
283
|
string[] data2 = new string[2];
|
284
|
data2 = parse.Split(delimiterChars2, StringSplitOptions.RemoveEmptyEntries);
|
285
|
|
286
|
System.Windows.Controls.Control item = MarkupParser.ParseEx(App.ViewInfo.ProjectNO, data2[0], ViewerDataModel.Instance.MarkupControls_USER, string.Empty, string.Empty);
|
287
|
(item as MarkupToPDF.Common.CommentUserInfo).CommentID = Commons.shortGuid();
|
288
|
if(data2.Length >= 2)
|
289
|
{
|
290
|
(item as MarkupToPDF.Common.CommentUserInfo).SymbolID = data2[1];
|
291
|
}
|
292
|
ViewerDataModel.Instance.MarkupControls.Remove(item as MarkupToPDF.Common.CommentUserInfo);
|
293
|
ViewerDataModel.Instance.MarkupControls_USER.Remove(item as MarkupToPDF.Common.CommentUserInfo);
|
294
|
|
295
|
adornerSet.Add(item as MarkupToPDF.Common.CommentUserInfo);
|
296
|
|
297
|
//Controls.AdornerFinal final = new Controls.AdornerFinal(item as MarkupToPDF.Common.CommentUserInfo);
|
298
|
//this.dzMainMenu.SelectLayer.Children.Add(final);
|
299
|
|
300
|
multi_Undo_Data = dzMainMenu.Control_Style(item as MarkupToPDF.Common.CommentUserInfo);
|
301
|
|
302
|
UndoData.Markup_List.Add(multi_Undo_Data);
|
303
|
ViewerDataModel.Instance.UndoDataList.Add(UndoData);
|
304
|
}
|
305
|
}
|
306
|
Controls.AdornerFinal final = new Controls.AdornerFinal(adornerSet);
|
307
|
|
308
|
double realPointX = this.dzMainMenu.getCurrentPoint.X - final.BorderSize.X - (final.BorderSize.Width / 2);
|
309
|
double realPointY = this.dzMainMenu.getCurrentPoint.Y - final.BorderSize.Y - (final.BorderSize.Height / 2);
|
310
|
final.MoveAdorner(new System.Windows.Controls.Primitives.DragDeltaEventArgs(realPointX, realPointY));
|
311
|
|
312
|
if (final.Members.Where(type => type.Drawingtype == MarkupToPDF.Controls.Common.ControlType.TextControl).FirstOrDefault() != null)
|
313
|
{
|
314
|
final.MoveAdorner(new System.Windows.Controls.Primitives.DragDeltaEventArgs(0.001, 0.001)); //dummy
|
315
|
}
|
316
|
|
317
|
this.dzMainMenu.SelectLayer.Children.Add(final);
|
318
|
}
|
319
|
//외부 이미지 붙여넣기
|
320
|
else if (Clipboard.GetImage() != null)
|
321
|
{
|
322
|
try
|
323
|
{
|
324
|
Multi_Undo_data multi_Undo_Data = new Multi_Undo_data();
|
325
|
|
326
|
//강인구 Undo/Redo 보류
|
327
|
UndoData = new Undo_data()
|
328
|
{
|
329
|
IsUndo = false,
|
330
|
Event = Event_Type.Create,
|
331
|
EventTime = DateTime.Now,
|
332
|
Markup_List = new List<Multi_Undo_data>()
|
333
|
};
|
334
|
|
335
|
string temppath = System.IO.Path.GetTempPath();
|
336
|
//string filename = KCOM.Events.Save.shortCommentKey();
|
337
|
string filename = Commons.shortFileKey();
|
338
|
|
339
|
System.Drawing.Image clipboardImage = System.Windows.Forms.Clipboard.GetImage();
|
340
|
clipboardImage.Save(temppath + "\\" + filename);
|
341
|
|
342
|
System.IO.FileInfo fileInfo = new System.IO.FileInfo(temppath + "\\" + filename);
|
343
|
String strFile = System.IO.Path.GetFileName(fileInfo.FullName);
|
344
|
long numByte = fileInfo.Length;
|
345
|
double dLen = Convert.ToDouble(fileInfo.Length / 1000000);
|
346
|
kr.co.devdoftech.cloud.FileUpload fileUploader = new kr.co.devdoftech.cloud.FileUpload();
|
347
|
|
348
|
if (dLen < 4)
|
349
|
{
|
350
|
System.IO.FileStream fStream = new System.IO.FileStream(fileInfo.FullName,
|
351
|
System.IO.FileMode.Open, System.IO.FileAccess.Read);
|
352
|
System.IO.BinaryReader br = new System.IO.BinaryReader(fStream);
|
353
|
byte[] data = br.ReadBytes((int)numByte);
|
354
|
|
355
|
filename = fileUploader.Run(App.ViewInfo.ProjectNO, this.dzMainMenu._DocItem.DOCUMENT_NO, App.ViewInfo.UserID, strFile + ".png", data);
|
356
|
|
357
|
Check_Uri.UriCheck(filename);
|
358
|
|
359
|
br.Close();
|
360
|
fStream.Close();
|
361
|
fStream.Dispose();
|
362
|
}
|
363
|
else
|
364
|
{
|
365
|
dzMainMenu.DialogMessage_Alert("Available Memory less than 4 mega byte", "Alert");
|
366
|
return;
|
367
|
}
|
368
|
|
369
|
fileInfo.Delete();
|
370
|
|
371
|
//System.Drawing.Image clipboardImage = System.Windows.Forms.Clipboard.GetImage();
|
372
|
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(clipboardImage);
|
373
|
IntPtr hBitmap = bmp.GetHbitmap();
|
374
|
System.Windows.Media.ImageSource WpfBitmap = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(hBitmap, IntPtr.Zero, Int32Rect.Empty, System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());
|
375
|
Image img = new Image();
|
376
|
//img.Source = new System.Windows.Media.Imaging.BitmapImage(new Uri(filename));
|
377
|
if (filename.Contains(".svg"))
|
378
|
{
|
379
|
byte[] imageData = null;
|
380
|
DrawingImage image = null;
|
381
|
using (System.Net.WebClient web = new System.Net.WebClient())
|
382
|
{
|
383
|
imageData = web.DownloadData(new Uri(filename));
|
384
|
System.IO.Stream stream = new System.IO.MemoryStream(imageData);
|
385
|
image = SvgReader.Load(stream);
|
386
|
}
|
387
|
img.Source = image;
|
388
|
}
|
389
|
else
|
390
|
{
|
391
|
img.Source = new BitmapImage(new Uri(filename));
|
392
|
}
|
393
|
var currentControl = new MarkupToPDF.Controls.Etc.ImgControl
|
394
|
{
|
395
|
PointSet = new List<Point>(),
|
396
|
//FilePath = img.Source.ToString(),
|
397
|
FilePath = filename,
|
398
|
ImageData = img.Source,
|
399
|
StartPoint = new Point(100, 100),
|
400
|
EndPoint = new Point(200, 200),
|
401
|
TopRightPoint = new Point(100, 200),
|
402
|
LeftBottomPoint = new Point(200, 100)
|
403
|
};
|
404
|
|
405
|
currentControl.TopRightPoint = new Point(currentControl.StartPoint.X + clipboardImage.Width, currentControl.StartPoint.Y);
|
406
|
currentControl.LeftBottomPoint = new Point(currentControl.StartPoint.X, currentControl.StartPoint.Y + clipboardImage.Height);
|
407
|
currentControl.EndPoint = new Point(currentControl.StartPoint.X + clipboardImage.Width, currentControl.StartPoint.Y + clipboardImage.Height);
|
408
|
|
409
|
currentControl.PointSet = new List<Point>
|
410
|
{
|
411
|
currentControl.StartPoint,
|
412
|
currentControl.LeftBottomPoint,
|
413
|
currentControl.EndPoint,
|
414
|
currentControl.TopRightPoint,
|
415
|
};
|
416
|
|
417
|
multi_Undo_Data = dzMainMenu.Control_Style(currentControl as MarkupToPDF.Common.CommentUserInfo);
|
418
|
UndoData.Markup_List.Add(multi_Undo_Data);
|
419
|
ViewerDataModel.Instance.UndoDataList.Add(UndoData);
|
420
|
|
421
|
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl as MarkupToPDF.Common.CommentUserInfo);
|
422
|
currentControl.CommentID = Commons.shortGuid();
|
423
|
|
424
|
currentControl.ApplyTemplate();
|
425
|
currentControl.SetImage();
|
426
|
|
427
|
ViewerDataModel.Instance.MarkupControls_USER.Remove(currentControl as MarkupToPDF.Common.CommentUserInfo);
|
428
|
Controls.AdornerFinal final = new Controls.AdornerFinal(currentControl as MarkupToPDF.Common.CommentUserInfo);
|
429
|
this.dzMainMenu.SelectLayer.Children.Add(final);
|
430
|
|
431
|
double realPointX = this.dzMainMenu.getCurrentPoint.X - final.BorderSize.X - (final.BorderSize.Width / 2);
|
432
|
double realPointY = this.dzMainMenu.getCurrentPoint.Y - final.BorderSize.Y - (final.BorderSize.Height / 2);
|
433
|
final.MoveAdorner(new System.Windows.Controls.Primitives.DragDeltaEventArgs(realPointX, realPointY));
|
434
|
|
435
|
#region 주석
|
436
|
|
437
|
//주석
|
438
|
//ViewerDataModel.Instance.MarkupControls_USER.Remove(currentControl as MarkupToPDF.Common.CommentUserInfo);
|
439
|
//Controls.AdornerFinal final = new Controls.AdornerFinal(currentControl as MarkupToPDF.Common.CommentUserInfo);
|
440
|
//this.dzMainMenu.SelectLayer.Children.Add(final);
|
441
|
|
442
|
//string MarkupData = "";
|
443
|
|
444
|
//if (!ViewerDataModel.Instance.MarkupControls.Contains(currentControl))
|
445
|
//{
|
446
|
// markupReturn = layer.MarkupToString(currentControl, App.ViewInfo.UserID);
|
447
|
// MarkupData += "|OR|" + markupReturn.ConvertData;
|
448
|
//}
|
449
|
//Clipboard.SetText(MarkupData);
|
450
|
//this.dzMainMenu.SelectLayer.Children.Clear();
|
451
|
|
452
|
//List<MarkupToPDF.Common.CommentUserInfo> adornerSet = new List<MarkupToPDF.Common.CommentUserInfo>();
|
453
|
|
454
|
//string[] delimiterChars = { "|OR|" };
|
455
|
//string[] data1 = Clipboard.GetText().Split(delimiterChars, StringSplitOptions.RemoveEmptyEntries);
|
456
|
|
457
|
//this.dzMainMenu.ReleaseAdorner();
|
458
|
|
459
|
//foreach (string parse in data1)
|
460
|
//{
|
461
|
// if (parse != "")
|
462
|
// {
|
463
|
// System.Windows.Controls.Control item = layer.markupParse_Paste(parse, ViewerDataModel.Instance.MarkupControls_USER);
|
464
|
// (item as MarkupToPDF.Common.CommentUserInfo).CommentID = Commons.shortGuid();
|
465
|
|
466
|
// ViewerDataModel.Instance.MarkupControls.Remove(item as MarkupToPDF.Common.CommentUserInfo);
|
467
|
// ViewerDataModel.Instance.MarkupControls_USER.Remove(item as MarkupToPDF.Common.CommentUserInfo);
|
468
|
|
469
|
// adornerSet.Add(item as MarkupToPDF.Common.CommentUserInfo);
|
470
|
|
471
|
// //Controls.AdornerFinal final = new Controls.AdornerFinal(item as MarkupToPDF.Common.CommentUserInfo);
|
472
|
// //this.dzMainMenu.SelectLayer.Children.Add(final);
|
473
|
// }
|
474
|
//}
|
475
|
//Controls.AdornerFinal final = new Controls.AdornerFinal(adornerSet);
|
476
|
|
477
|
//double realPointX = this.dzMainMenu.getCurrentPoint.X - final.BorderSize.X - (final.BorderSize.Width / 2);
|
478
|
//double realPointY = this.dzMainMenu.getCurrentPoint.Y - final.BorderSize.Y - (final.BorderSize.Height / 2);
|
479
|
//final.MoveAdorner(new System.Windows.Controls.Primitives.DragDeltaEventArgs(realPointX, realPointY));
|
480
|
|
481
|
//if (final.MemberSet.Where(type => type.Drawingtype == MarkupToPDF.Controls.Common.ControlType.TextControl).FirstOrDefault() != null)
|
482
|
//{
|
483
|
// final.MoveAdorner(new System.Windows.Controls.Primitives.DragDeltaEventArgs(0.001, 0.001)); //dummy
|
484
|
//}
|
485
|
|
486
|
//this.dzMainMenu.SelectLayer.Children.Add(final);
|
487
|
#endregion
|
488
|
|
489
|
}
|
490
|
catch(Exception ex)
|
491
|
{
|
492
|
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.DialogMessage_Alert("" + ex, "Alert");
|
493
|
}
|
494
|
}
|
495
|
}
|
496
|
}
|
497
|
break;
|
498
|
#endregion
|
499
|
|
500
|
#region 저장하기(Ctrl + S)
|
501
|
case Key.S:
|
502
|
{
|
503
|
if (ViewerDataModel.Instance.IsPressCtrl && (App.ViewInfo.CreateFinalPDFPermission || App.ViewInfo.NewCommentPermission))
|
504
|
{
|
505
|
//컨트롤을 그리는 도중일 경우 컨트롤 삭제
|
506
|
ViewerDataModel.Instance.MarkupControls_USER.Remove(this.dzMainMenu.currentControl);
|
507
|
this.dzMainMenu.currentControl = null;
|
508
|
|
509
|
//this.dzTopMenu.SaveEvent(null, null);
|
510
|
if (App.ViewInfo.CreateFinalPDFPermission || App.ViewInfo.NewCommentPermission)
|
511
|
{
|
512
|
this.dzTopMenu.SaveEvent(new object(), null);
|
513
|
}
|
514
|
|
515
|
//저장완료후 임시파일 삭제
|
516
|
TempFile.Remove();
|
517
|
}
|
518
|
}
|
519
|
break;
|
520
|
#endregion
|
521
|
|
522
|
#region 프린트하기(Ctrl + P)
|
523
|
case Key.P:
|
524
|
{
|
525
|
if (ViewerDataModel.Instance.IsPressCtrl)
|
526
|
{
|
527
|
this.dzTopMenu.Print_Start("Print");
|
528
|
}
|
529
|
}
|
530
|
break;
|
531
|
#endregion
|
532
|
|
533
|
#region Undo(Ctrl + Z)
|
534
|
case Key.Z:
|
535
|
{
|
536
|
if (ViewerDataModel.Instance.IsPressCtrl) UndoCommand.Instance.Execute();
|
537
|
}
|
538
|
break;
|
539
|
#endregion
|
540
|
|
541
|
#region Redo(Ctrl + Y)
|
542
|
case Key.Y:
|
543
|
{
|
544
|
if (ViewerDataModel.Instance.IsPressCtrl) RedoCommand.Instance.Execute();
|
545
|
}
|
546
|
break;
|
547
|
#endregion
|
548
|
|
549
|
#region 삭제하기(Delete)
|
550
|
case Key.Delete:
|
551
|
{
|
552
|
DeleteCommand.Instance.Execute(SelectionSet.Instance.SelectedItems);
|
553
|
this.dzMainMenu.SelectLayer.Children.Clear();
|
554
|
}
|
555
|
break;
|
556
|
#endregion
|
557
|
|
558
|
#region 선택된 컨트롤 모두 해제 하기(ESC)
|
559
|
case Key.Escape:
|
560
|
{
|
561
|
//캡쳐모드 일 경우 초기화
|
562
|
if(this.dzMainMenu.mouseHandlingMode == IKCOM.MouseHandlingMode.Capture)
|
563
|
{
|
564
|
//dzMainMenu.PN_Navi.IsEnabled = true;
|
565
|
this.dzMainMenu.mouseHandlingMode = IKCOM.MouseHandlingMode.None;
|
566
|
ViewerDataModel.Instance.Capture_Opacity = 0;
|
567
|
}
|
568
|
|
569
|
if(Common.ViewerDataModel.Instance.SelectedControl == "Batch")
|
570
|
{
|
571
|
this.dzMainMenu.controlType = MarkupToPDF.Controls.Common.ControlType.None;
|
572
|
this.dzMainMenu.txtBatch.Visibility = Visibility.Collapsed;
|
573
|
this.dzMainMenu.mouseHandlingMode = IKCOM.MouseHandlingMode.None;
|
574
|
var TogList = this.dzTopMenu.Parent.ChildrenOfType<RadToggleButton>();
|
575
|
foreach (var tog in TogList)
|
576
|
{
|
577
|
tog.IsChecked = false;
|
578
|
}
|
579
|
}
|
580
|
|
581
|
SelectionSet.Instance.UnSelect(this.dzMainMenu);
|
582
|
|
583
|
//코멘트 그리는 도중일 경우 코멘트 삭제 및 초기화
|
584
|
if (this.dzMainMenu.currentControl != null)
|
585
|
{
|
586
|
ViewerDataModel.Instance.MarkupControls_USER.Remove(this.dzMainMenu.currentControl);
|
587
|
this.dzMainMenu.currentControl = null;
|
588
|
}
|
589
|
|
590
|
//모든 컨트롤 초기화 하고 Selection모드로 변경
|
591
|
dzMainMenu.mouseHandlingMode = IKCOM.MouseHandlingMode.Selecting;
|
592
|
dzMainMenu.controlType = MarkupToPDF.Controls.Common.ControlType.None;
|
593
|
|
594
|
var toggleList = this.ChildrenOfType<RadToggleButton>();
|
595
|
var toggleList2 = this.ChildrenOfType<RadRibbonToggleButton>();
|
596
|
|
597
|
foreach (var item in toggleList)
|
598
|
{
|
599
|
if (item.Name == "btnSelection")
|
600
|
{
|
601
|
item.IsChecked = true;
|
602
|
}
|
603
|
else
|
604
|
{
|
605
|
item.IsChecked = false;
|
606
|
}
|
607
|
}
|
608
|
dzMainMenu.isLeftMouseButtonDownOnWindow = false;
|
609
|
//foreach (var item in toggleList2)
|
610
|
//{
|
611
|
// item.IsChecked = false;
|
612
|
//}
|
613
|
}
|
614
|
break;
|
615
|
#endregion
|
616
|
|
617
|
#region FIND(Ctrl + F)
|
618
|
case Key.F:
|
619
|
{
|
620
|
if (ViewerDataModel.Instance.IsPressCtrl)
|
621
|
{
|
622
|
if (!this.dzMainMenu.searchPane.IsPinned)
|
623
|
{
|
624
|
this.dzMainMenu.searchPane.IsPinned = true;
|
625
|
if (ViewerDataModel.Instance.searchPDF != null)
|
626
|
{
|
627
|
this.dzMainMenu.searchPanel_Instance.tbSearch.Focus();
|
628
|
}
|
629
|
else
|
630
|
{
|
631
|
this.dzMainMenu.searchPanel_Instance.btnSearch.Focus();
|
632
|
}
|
633
|
}
|
634
|
else
|
635
|
{
|
636
|
this.dzMainMenu.searchPane.IsPinned = false;
|
637
|
this.dzMainMenu.searchPane.IsActive = false;
|
638
|
//this.dzMainMenu.searchPane.IsHidden = true;
|
639
|
}
|
640
|
}
|
641
|
}
|
642
|
break;
|
643
|
#endregion
|
644
|
|
645
|
#endregion
|
646
|
|
647
|
//강인구 추가
|
648
|
#region Control Move
|
649
|
case Key.NumPad4:
|
650
|
case Key.NumPad5:
|
651
|
case Key.NumPad6:
|
652
|
case Key.NumPad8:
|
653
|
{
|
654
|
if(ViewerDataModel.Instance.IsPressShift)
|
655
|
{
|
656
|
if (this.dzMainMenu.SelectLayer.Children.Count > 0)
|
657
|
{
|
658
|
Point control = new Point(0, 0);
|
659
|
double resultAngle = this.dzMainMenu.rotate.Angle;
|
660
|
|
661
|
switch (e.Key)
|
662
|
{
|
663
|
case Key.NumPad5:
|
664
|
if (resultAngle == 0) control = new Point(control.X, control.Y + 5);
|
665
|
if (resultAngle == 90) control = new Point(control.X + 5, control.Y);
|
666
|
if (resultAngle == 180) control = new Point(control.X, control.Y - 5);
|
667
|
if (resultAngle == 270) control = new Point(control.X - 5, control.Y);
|
668
|
break;
|
669
|
case Key.NumPad8:
|
670
|
if (resultAngle == 0) control = new Point(control.X, control.Y - 5);
|
671
|
if (resultAngle == 90) control = new Point(control.X - 5, control.Y);
|
672
|
if (resultAngle == 180) control = new Point(control.X, control.Y + 5);
|
673
|
if (resultAngle == 270) control = new Point(control.X + 5, control.Y);
|
674
|
break;
|
675
|
case Key.NumPad4:
|
676
|
if (resultAngle == 0) control = new Point(control.X - 5, control.Y);
|
677
|
if (resultAngle == 90) control = new Point(control.X, control.Y + 5);
|
678
|
if (resultAngle == 180) control = new Point(control.X + 5, control.Y);
|
679
|
if (resultAngle == 270) control = new Point(control.X, control.Y - 5);
|
680
|
break;
|
681
|
case Key.NumPad6:
|
682
|
if (resultAngle == 0) control = new Point(control.X + 5, control.Y);
|
683
|
if (resultAngle == 90) control = new Point(control.X, control.Y - 5);
|
684
|
if (resultAngle == 180) control = new Point(control.X - 5, control.Y);
|
685
|
if (resultAngle == 270) control = new Point(control.X, control.Y + 5);
|
686
|
break;
|
687
|
default:
|
688
|
break;
|
689
|
}
|
690
|
|
691
|
|
692
|
foreach (var item in this.dzMainMenu.SelectLayer.Children)
|
693
|
{
|
694
|
if (item.GetType().Name == "AdornerFinal")
|
695
|
{
|
696
|
if ((Keyboard.Modifiers & ModifierKeys.Control) == ModifierKeys.Control)
|
697
|
{
|
698
|
(item as Controls.AdornerFinal).MoveRotate(new System.Windows.Controls.Primitives.DragDeltaEventArgs(control.X * 2, control.Y * 2));
|
699
|
}
|
700
|
else
|
701
|
{
|
702
|
(item as Controls.AdornerFinal).MoveAdorner(new System.Windows.Controls.Primitives.DragDeltaEventArgs(control.X, control.Y));
|
703
|
}
|
704
|
|
705
|
}
|
706
|
}
|
707
|
}
|
708
|
}
|
709
|
}
|
710
|
break;
|
711
|
#endregion
|
712
|
case Key.PageUp:
|
713
|
this.dzMainMenu.pageNavigator.GotoPage(Convert.ToInt32(Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber) - 1);
|
714
|
break;
|
715
|
case Key.PageDown:
|
716
|
this.dzMainMenu.pageNavigator.GotoPage(Convert.ToInt32(Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber) + 1);
|
717
|
break;
|
718
|
}
|
719
|
}
|
720
|
|
721
|
public void KeyEventUpAction(object sender, KeyEventArgs e)
|
722
|
{
|
723
|
switch (e.Key)
|
724
|
{
|
725
|
//강인구 추가
|
726
|
#region Ctrl
|
727
|
case Key.LeftCtrl:
|
728
|
{
|
729
|
if (ViewerDataModel.Instance.IsPressCtrl)
|
730
|
{
|
731
|
ViewerDataModel.Instance.IsPressCtrl = false;
|
732
|
}
|
733
|
}
|
734
|
break;
|
735
|
case Key.RightCtrl:
|
736
|
{
|
737
|
|
738
|
}
|
739
|
break;
|
740
|
#endregion
|
741
|
|
742
|
#region Shift
|
743
|
case Key.RightShift:
|
744
|
case Key.LeftShift:
|
745
|
{
|
746
|
ViewerDataModel.Instance.IsPressShift = false;
|
747
|
}
|
748
|
break;
|
749
|
#endregion
|
750
|
}
|
751
|
}
|
752
|
}
|
753
|
}
|