markus / KCOM / Views / MainMenu.xaml.cs @ 74abcf6f
이력 | 보기 | 이력해설 | 다운로드 (276 KB)
1 |
using IKCOM; |
---|---|
2 |
using KCOM.Common; |
3 |
using KCOM.Controls; |
4 |
using KCOM.Events; |
5 |
using KCOMDataModel.DataModel; |
6 |
using MarkupToPDF.Common; |
7 |
using MarkupToPDF.Controls.Cad; |
8 |
using MarkupToPDF.Controls.Common; |
9 |
using MarkupToPDF.Controls.Etc; |
10 |
using MarkupToPDF.Controls.Line; |
11 |
using MarkupToPDF.Controls.Parsing; |
12 |
using MarkupToPDF.Controls.Polygon; |
13 |
using MarkupToPDF.Controls.Shape; |
14 |
using MarkupToPDF.Controls.Text; |
15 |
using Svg2Xaml; |
16 |
using System; |
17 |
using System.Collections.Generic; |
18 |
using System.Diagnostics; |
19 |
using System.Linq; |
20 |
using System.Reflection; |
21 |
using System.Runtime.InteropServices; |
22 |
using System.Text; |
23 |
using System.Threading; |
24 |
using System.Threading.Tasks; |
25 |
using System.Web; |
26 |
using System.Windows; |
27 |
using System.Windows.Controls; |
28 |
using System.Windows.Ink; |
29 |
using System.Windows.Input; |
30 |
using System.Windows.Media; |
31 |
using System.Windows.Media.Imaging; |
32 |
using System.Windows.Shapes; |
33 |
using System.Windows.Threading; |
34 |
using Telerik.Windows.Controls; |
35 |
using Telerik.Windows.Data; |
36 |
using static KCOM.TempFile; |
37 |
|
38 |
namespace KCOM.Views |
39 |
{ |
40 |
public static class ControlExtensions |
41 |
{ |
42 |
public static T Clone<T>(this T controlToClone) |
43 |
where T : System.Windows.Controls.Control |
44 |
{ |
45 |
System.Reflection.PropertyInfo[] controlProperties = typeof(T).GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance); |
46 |
|
47 |
T instance = Activator.CreateInstance<T>(); |
48 |
|
49 |
foreach (PropertyInfo propInfo in controlProperties) |
50 |
{ |
51 |
if (propInfo.CanWrite) |
52 |
{ |
53 |
if (propInfo.Name != "WindowTarget") |
54 |
propInfo.SetValue(instance, propInfo.GetValue(controlToClone, null), null); |
55 |
} |
56 |
} |
57 |
return instance; |
58 |
} |
59 |
} |
60 |
|
61 |
public class MyConsole |
62 |
{ |
63 |
private readonly System.Threading.ManualResetEvent _readLineSignal; |
64 |
private string _lastLine; |
65 |
|
66 |
public MyConsole() |
67 |
{ |
68 |
_readLineSignal = new System.Threading.ManualResetEvent(false); |
69 |
Gui = new TextBox(); |
70 |
Gui.AcceptsReturn = true; |
71 |
Gui.KeyUp += OnKeyUp; |
72 |
} |
73 |
|
74 |
private void OnKeyUp(object sender, KeyEventArgs e) |
75 |
{ |
76 |
// this is always fired on UI thread |
77 |
if (e.Key == Key.Enter) |
78 |
{ |
79 |
// quick and dirty, but that is not relevant to your question |
80 |
_lastLine = Gui.Text.Split(new string[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries).Last(); |
81 |
// now, when you detected that user typed a line, set signal |
82 |
_readLineSignal.Set(); |
83 |
} |
84 |
} |
85 |
|
86 |
public TextBox Gui { get; private set; } |
87 |
|
88 |
public string ReadLine() |
89 |
{ |
90 |
// that should always be called from non-ui thread |
91 |
if (Gui.Dispatcher.CheckAccess()) |
92 |
throw new Exception("Cannot be called on UI thread"); |
93 |
// reset signal |
94 |
_readLineSignal.Reset(); |
95 |
// wait until signal is set. This call is blocking, but since we are on non-ui thread - there is no problem with that |
96 |
_readLineSignal.WaitOne(); |
97 |
// we got signalled - return line user typed. |
98 |
return _lastLine; |
99 |
} |
100 |
|
101 |
public void WriteLine(string line) |
102 |
{ |
103 |
if (!Gui.Dispatcher.CheckAccess()) |
104 |
{ |
105 |
Gui.Dispatcher.Invoke(new Action(() => WriteLine(line))); |
106 |
return; |
107 |
} |
108 |
|
109 |
Gui.Text += line + Environment.NewLine; |
110 |
} |
111 |
} |
112 |
|
113 |
/// <summary> |
114 |
/// MainMenu.xaml에 대한 상호 작용 논리 |
115 |
/// </summary> |
116 |
public partial class MainMenu : UserControl |
117 |
{ |
118 |
#region 프로퍼티 |
119 |
|
120 |
public CommentUserInfo currentControl { get; set; } |
121 |
public ControlType controlType { get; set; } |
122 |
private Move move = new Move(); |
123 |
private double[] rotateValue = { 0, 90, 180, 270 }; |
124 |
public MouseHandlingMode mouseHandlingMode = MouseHandlingMode.None; |
125 |
private static readonly double DragThreshold = 5; |
126 |
private System.Windows.Input.Cursor cursor { get; set; } |
127 |
|
128 |
/// <summary> |
129 |
/// 문서의 마우스 위치 |
130 |
/// </summary> |
131 |
public Point CanvasDrawingMouseDownPoint; |
132 |
|
133 |
public string filename { get; set; } |
134 |
private Point canvasZoomPanningMouseDownPoint; |
135 |
public Point getCurrentPoint; |
136 |
private Point canvasZoommovingMouseDownPoint; |
137 |
private List<object> ControlList = new List<object>(); |
138 |
private ListBox listBox = new ListBox(); |
139 |
private Dictionary<Geometry, string> selected_item = new Dictionary<Geometry, string>(); |
140 |
private bool isDraggingSelectionRect = false; |
141 |
private DrawingAttributes inkDA = new DrawingAttributes(); |
142 |
private VPRevision CurrentRev { get; set; } |
143 |
public RadRibbonButton btnConsolidate { get; set; } |
144 |
public RadRibbonButton btnFinalPDF { get; set; } |
145 |
public RadRibbonButton btnTeamConsolidate { get; set; } |
146 |
public RadRibbonButton btnConsolidateFinalPDF { get; set; } |
147 |
|
148 |
public string Filename_ { get; set; } |
149 |
public double L_Size = 0; |
150 |
public AdornerFinal adorner_; |
151 |
public Multi_Undo_data multi_Undo_Data; |
152 |
public string Symbol_ID = ""; |
153 |
|
154 |
/// <summary> |
155 |
/// Set to 'true' when the left mouse-button is down. |
156 |
/// </summary> |
157 |
public bool isLeftMouseButtonDownOnWindow = false; |
158 |
|
159 |
public InkPresenter _InkBoard = null; |
160 |
private Stroke stroke; |
161 |
private Boolean IsDrawing = false; |
162 |
private StylusPointCollection strokePoints; |
163 |
|
164 |
//StylusPointCollection erasePoints; |
165 |
private RenderTargetBitmap canvasImage; |
166 |
|
167 |
private Point Sync_Offset_Point; |
168 |
|
169 |
//강인구 테스트 |
170 |
private Path _SelectionPath { get; set; } |
171 |
|
172 |
public Path SelectionPath |
173 |
{ |
174 |
get |
175 |
{ |
176 |
return _SelectionPath; |
177 |
} |
178 |
set |
179 |
{ |
180 |
if (_SelectionPath != value) |
181 |
{ |
182 |
_SelectionPath = value; |
183 |
RaisePropertyChanged("SelectionPath"); |
184 |
} |
185 |
} |
186 |
} |
187 |
|
188 |
private System.Windows.Controls.Image _imageViewer { get; set; } |
189 |
|
190 |
public System.Windows.Controls.Image imageViewer |
191 |
{ |
192 |
get |
193 |
{ |
194 |
if (_imageViewer == null) |
195 |
{ |
196 |
_imageViewer = new System.Windows.Controls.Image(); |
197 |
return _imageViewer; |
198 |
} |
199 |
else |
200 |
{ |
201 |
return _imageViewer; |
202 |
} |
203 |
} |
204 |
set |
205 |
{ |
206 |
if (_imageViewer != value) |
207 |
{ |
208 |
_imageViewer = value; |
209 |
} |
210 |
} |
211 |
} |
212 |
|
213 |
public bool IsSyncPDFMode { get; set; } |
214 |
|
215 |
private System.Windows.Controls.Image _imageViewer_Compare { get; set; } |
216 |
|
217 |
public System.Windows.Controls.Image imageViewer_Compare |
218 |
{ |
219 |
get |
220 |
{ |
221 |
if (_imageViewer_Compare == null) |
222 |
{ |
223 |
_imageViewer_Compare = new System.Windows.Controls.Image(); |
224 |
return _imageViewer_Compare; |
225 |
} |
226 |
else |
227 |
{ |
228 |
return _imageViewer_Compare; |
229 |
} |
230 |
} |
231 |
set |
232 |
{ |
233 |
if (_imageViewer_Compare != value) |
234 |
{ |
235 |
_imageViewer_Compare = value; |
236 |
} |
237 |
} |
238 |
} |
239 |
|
240 |
#endregion 프로퍼티 |
241 |
|
242 |
public MainMenu() |
243 |
{ |
244 |
//App.splashString(ISplashMessage.MAINMENU_0); |
245 |
InitializeComponent(); |
246 |
|
247 |
//List<testItem> testItems = new List<testItem> |
248 |
//{ |
249 |
// new testItem{Title = "test1"}, |
250 |
// new testItem{Title = "test2"}, |
251 |
// new testItem{Title = "test3"}, |
252 |
// new testItem{Title = "test4"}, |
253 |
//}; |
254 |
|
255 |
//lstSymbolPrivate.ItemsSource = testItems; |
256 |
|
257 |
this.Loaded += MainMenu_Loaded; |
258 |
} |
259 |
|
260 |
public class TempDt |
261 |
{ |
262 |
public int PageNumber { get; set; } |
263 |
public string CommentID { get; set; } |
264 |
public string ConvertData { get; set; } |
265 |
public int DATA_TYPE { get; set; } |
266 |
public string MarkupInfoID { get; set; } |
267 |
public int IsUpdate { get; set; } |
268 |
} |
269 |
|
270 |
private List<TempDt> tempDtList = new List<TempDt>(); |
271 |
|
272 |
private void SetCursor() |
273 |
{ |
274 |
this.Cursor = cursor; |
275 |
} |
276 |
|
277 |
/// <summary> |
278 |
/// get image url |
279 |
/// </summary> |
280 |
/// <author>humkyung</author> |
281 |
/// <param name="sDocumentID"></param> |
282 |
/// <returns></returns> |
283 |
public string GetImageURL(string sDocumentID, int iPageNo) |
284 |
{ |
285 |
string uri = string.Empty; |
286 |
|
287 |
string sFolder = sDocumentID.All(char.IsDigit) ? (Convert.ToUInt32(sDocumentID) / 100).ToString() : (sDocumentID.Length >= 5 ? sDocumentID.Substring(0, 5) : sDocumentID); |
288 |
if (userData.COMPANY != "EXT") |
289 |
{ |
290 |
uri = String.Format(CommonLib.Common.GetConfigString("mainServerImageWebPath", "URL", "", App.isExternal), _ViewInfo.ProjectNO, sFolder, sDocumentID, iPageNo); |
291 |
} |
292 |
else |
293 |
{ |
294 |
uri = String.Format(CommonLib.Common.GetConfigString("subServerImageWebPath", "URL", "", App.isExternal), _ViewInfo.ProjectNO, sDocumentID, iPageNo); |
295 |
} |
296 |
|
297 |
return uri; |
298 |
} |
299 |
|
300 |
/// <summary> |
301 |
/// 외부망에서의 Original PDF Download 를 위한 리소스 web path 경로로 치환 |
302 |
/// </summary> |
303 |
/// <returns></returns> |
304 |
public string GetOriginalPDFURL() |
305 |
{ |
306 |
string uri = string.Empty; |
307 |
string sDocumentID = this._DocItem.DOCUMENT_ID; |
308 |
string filename = string.Empty; |
309 |
if (this._DocInfo.ORIGINAL_FILE.Contains("fileName")) |
310 |
{ |
311 |
filename = HttpUtility.ParseQueryString(this._DocInfo.ORIGINAL_FILE).Get("fileName"); |
312 |
} |
313 |
else |
314 |
{ |
315 |
filename = System.IO.Path.GetFileName(this._DocInfo.ORIGINAL_FILE); |
316 |
} |
317 |
|
318 |
string sFolder = sDocumentID.All(char.IsDigit) ? (Convert.ToUInt32(sDocumentID) / 100).ToString() : (sDocumentID.Length >= 5 ? sDocumentID.Substring(0, 5) : sDocumentID); |
319 |
if (userData.COMPANY != "EXT") |
320 |
{ |
321 |
uri = String.Format(CommonLib.Common.GetConfigString("mainServerImageWebPath", "URL", "", App.isExternal), _ViewInfo.ProjectNO, sFolder, sDocumentID, filename); |
322 |
} |
323 |
else |
324 |
{ |
325 |
uri = String.Format(CommonLib.Common.GetConfigString("subServerImageWebPath", "URL", "", App.isExternal), _ViewInfo.ProjectNO, sDocumentID, filename); |
326 |
} |
327 |
uri = uri.Replace(".png", ""); |
328 |
return uri; |
329 |
} |
330 |
|
331 |
private bool IsDrawingEnable(Point _canvasZoomPanningMouseDownPoint) |
332 |
{ |
333 |
if ((_canvasZoomPanningMouseDownPoint.X > 0 && |
334 |
zoomAndPanCanvas.ActualWidth > _canvasZoomPanningMouseDownPoint.X) && |
335 |
(_canvasZoomPanningMouseDownPoint.Y > 0 && |
336 |
zoomAndPanCanvas.ActualHeight > _canvasZoomPanningMouseDownPoint.Y)) |
337 |
{ |
338 |
return true; |
339 |
} |
340 |
|
341 |
return false; |
342 |
} |
343 |
|
344 |
private bool IsRotationDrawingEnable(Point _canvasZoomPanningMouseDownPoint) |
345 |
{ |
346 |
if (rotate.Angle == 90 || rotate.Angle == 270) |
347 |
{ |
348 |
if ((_canvasZoomPanningMouseDownPoint.X > 0 && |
349 |
zoomAndPanCanvas.ActualHeight > _canvasZoomPanningMouseDownPoint.X) && |
350 |
(_canvasZoomPanningMouseDownPoint.Y > 0 && |
351 |
zoomAndPanCanvas.ActualWidth > _canvasZoomPanningMouseDownPoint.Y)) |
352 |
{ |
353 |
return true; |
354 |
} |
355 |
} |
356 |
else |
357 |
{ |
358 |
if ((_canvasZoomPanningMouseDownPoint.X > 0 && |
359 |
zoomAndPanCanvas.ActualWidth > _canvasZoomPanningMouseDownPoint.X) && |
360 |
(_canvasZoomPanningMouseDownPoint.Y > 0 && |
361 |
zoomAndPanCanvas.ActualHeight > _canvasZoomPanningMouseDownPoint.Y)) |
362 |
{ |
363 |
return true; |
364 |
} |
365 |
} |
366 |
|
367 |
return false; |
368 |
} |
369 |
|
370 |
public void DeleteItem(MarkupInfoItem item) |
371 |
{ |
372 |
if (PreviewUserMarkupInfoItem != null && item.Consolidate == 1 && item.AvoidConsolidate == 0) |
373 |
{ |
374 |
App.Custom_ViewInfoId = PreviewUserMarkupInfoItem.MarkupInfoID; |
375 |
} |
376 |
|
377 |
ViewerDataModel.Instance._markupInfoList.Remove(item); |
378 |
|
379 |
ViewerDataModel.Instance.MarkupControls.Where(data => data.MarkupInfoID == item.MarkupInfoID).ToList().ForEach(a => |
380 |
{ |
381 |
ViewerDataModel.Instance.MarkupControls.Remove(a); |
382 |
}); |
383 |
|
384 |
ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.MarkupInfoID == item.MarkupInfoID).ToList().ForEach(a => |
385 |
{ |
386 |
ViewerDataModel.Instance.MarkupControls_USER.Remove(a); |
387 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.MarkupListUpdate( |
388 |
null, Event_Type.Delete, a.CommentID, null); |
389 |
}); |
390 |
|
391 |
ViewerDataModel.Instance.MyMarkupList.Where(data => data.MarkupInfoID == item.MarkupInfoID).ToList().ForEach(a => |
392 |
{ |
393 |
ViewerDataModel.Instance.MyMarkupList.Remove(a); |
394 |
//임시파일에서도 삭제 |
395 |
TempFile.DelTemp(a.ID, this.ParentOfType<MainWindow>().dzMainMenu.pageNavigator.CurrentPage.PageNumber.ToString()); |
396 |
}); |
397 |
|
398 |
gridViewMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoList; |
399 |
|
400 |
if (PreviewUserMarkupInfoItem == null && gridViewMarkup.SelectedItems.Where(d => (d as MarkupInfoItem).UserID == App.ViewInfo.UserID).FirstOrDefault() == null) |
401 |
{ |
402 |
if (gridViewMarkup.Items.Cast<MarkupInfoItem>().ToList().Where(d => d.UserID == App.ViewInfo.UserID).Count() == 0) |
403 |
{ |
404 |
var infoId = Commons.shortGuid(); |
405 |
PreviewUserMarkupInfoItem = new MarkupInfoItem |
406 |
{ |
407 |
CreateTime = DateTime.Now, |
408 |
Depatment = userData.DEPARTMENT, |
409 |
UpdateTime = DateTime.Now, |
410 |
DisplayColor = "#FFFF0000", |
411 |
UserID = userData.ID, |
412 |
UserName = userData.NAME, |
413 |
PageCount = 1, |
414 |
Description = "", |
415 |
MarkupInfoID = infoId, |
416 |
MarkupList = null, |
417 |
MarkupVersionID = Commons.shortGuid(), |
418 |
Consolidate = 0, |
419 |
PartConsolidate = 0, |
420 |
userDelete = true, |
421 |
AvoidConsolidate = 0, |
422 |
IsPreviewUser = true |
423 |
}; |
424 |
App.Custom_ViewInfoId = infoId; |
425 |
} |
426 |
} |
427 |
//Logger.sendReqLog("DeleteMarkupAsync", App.ViewInfo.ProjectNO + "," + item.MarkupInfoID, 1); |
428 |
BaseClient.DeleteMarkupAsync(App.ViewInfo.ProjectNO, item.MarkupInfoID); |
429 |
} |
430 |
|
431 |
/// <summary> |
432 |
/// delete selected comments |
433 |
/// </summary> |
434 |
/// <param name="sender"></param> |
435 |
/// <param name="e"></param> |
436 |
public void DeleteCommentEvent(object sender, RoutedEventArgs e) |
437 |
{ |
438 |
//정말 삭제 하시겠습니까? |
439 |
DialogParameters parameters = new DialogParameters() |
440 |
{ |
441 |
Owner = Application.Current.MainWindow, |
442 |
Content = new TextBlock() |
443 |
{ |
444 |
MinWidth = 400, |
445 |
FontSize = 11, |
446 |
Text = "Are you sure you want to delete?", |
447 |
TextWrapping = System.Windows.TextWrapping.Wrap |
448 |
}, |
449 |
Header = "Confirm", |
450 |
Theme = new VisualStudio2013Theme(), |
451 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
452 |
OkButtonContent = "Yes", |
453 |
CancelButtonContent = "No", |
454 |
Closed = delegate (object windowSender, WindowClosedEventArgs wc) |
455 |
{ |
456 |
if (wc.DialogResult == true) |
457 |
{ |
458 |
//선택된 어도너가 있을시 삭제가 되지 않음 |
459 |
SelectionSet.Instance.UnSelect(this); |
460 |
|
461 |
Button content = (sender as Button); |
462 |
MarkupInfoItem item = content.CommandParameter as MarkupInfoItem; |
463 |
|
464 |
DeleteItem(item); |
465 |
} |
466 |
} |
467 |
}; |
468 |
RadWindow.Confirm(parameters); |
469 |
} |
470 |
|
471 |
private System.Windows.Media.Animation.DoubleAnimation da = new System.Windows.Media.Animation.DoubleAnimation(); |
472 |
|
473 |
private static Timer timer; |
474 |
private int InitInterval = KCOM.Properties.Settings.Default.InitInterval; |
475 |
|
476 |
private void MainMenu_Loaded(object sender, RoutedEventArgs e) |
477 |
{ |
478 |
//InitializeComponent(); |
479 |
//System.Diagnostics.Debug.WriteLine("MainMenu() : " + sw.ElapsedMilliseconds.ToString() + "ms"); |
480 |
|
481 |
if (App.ParameterMode) |
482 |
{ |
483 |
|
484 |
App.splashString(ISplashMessage.MAINMENU_1); |
485 |
this.pageNavigator.ThumbInitialized += pageNavigator_ThumbInitialized; |
486 |
this.pageNavigator.PageChanging += pageNavigator_PageChanging; |
487 |
this.pageNavigator.PageChanged += PageNavigator_PageChanged; |
488 |
|
489 |
imageViewer_Compare = new Image(); |
490 |
ViewerDataModel.Instance.Capture_Opacity = 0; |
491 |
da.From = 0.8; |
492 |
da.To = 0; |
493 |
da.Duration = new Duration(TimeSpan.FromSeconds(1)); |
494 |
da.AutoReverse = true; |
495 |
da.RepeatBehavior = System.Windows.Media.Animation.RepeatBehavior.Forever; |
496 |
|
497 |
if (!App.ViewInfo.CreateFinalPDFPermission && !App.ViewInfo.NewCommentPermission) |
498 |
{ |
499 |
this.SymbolPane.Visibility = Visibility.Collapsed; |
500 |
this.FavoritePane.Visibility = Visibility.Collapsed; |
501 |
this.drawingRotateCanvas.IsHitTestVisible = false; |
502 |
} |
503 |
thumbnailPanel.Width = Convert.ToInt32(CommonLib.Common.GetConfigString("SetThumbnail", "WIDTH", "250")); |
504 |
} |
505 |
|
506 |
//timer = new Timer(timercallback, null, 0, InitInterval * 60000); |
507 |
} |
508 |
|
509 |
private void DownloadOriginalFile() |
510 |
{ |
511 |
#region 임시파일 다운로드 |
512 |
instnaceFile = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "MARKUS", System.IO.Path.GetRandomFileName().Split('.')[0] + ".pdf"); |
513 |
downloadurl = GetOriginalPDFURL(); |
514 |
|
515 |
ViewerDataModel.Instance.OriginalTempFile = instnaceFile; |
516 |
|
517 |
string endpoint = Common.Commons.shortGuid() + "file"; |
518 |
IIpc.WcfServer wcfServer = new IIpc.WcfServer(endpoint); |
519 |
wcfServer.IpcFileDownloadReceived += WcfServer_IpcFileDownloadReceived; |
520 |
wcfServer.Start(); |
521 |
|
522 |
DownloadProcess.FileDownloader(endpoint, ViewerDataModel.Instance.IsAdmin, downloadurl, instnaceFile); |
523 |
#endregion |
524 |
} |
525 |
|
526 |
string instnaceFile; |
527 |
string downloadurl; |
528 |
|
529 |
private void WcfServer_IpcFileDownloadReceived(object sender, IIpc.IpcDownloadStatusArgs e) |
530 |
{ |
531 |
Dispatcher.BeginInvoke((Action)delegate () { ViewerDataModel.Instance.DownloadFileProgress = (int)e.Progress; }); |
532 |
|
533 |
if (e.IsFinish) |
534 |
{ |
535 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.searchPanel_Instance.SetSerachPDFFile(instnaceFile); |
536 |
ViewerDataModel.Instance.IsDownloadOriginal = true; |
537 |
|
538 |
} |
539 |
} |
540 |
|
541 |
private void timercallback(Object o) |
542 |
{ |
543 |
Stopwatch sw = new Stopwatch(); |
544 |
sw.Start(); |
545 |
TempFile.TempFileAdd(); |
546 |
sw.Stop(); |
547 |
|
548 |
Dispatcher.InvokeAsync(new Action(delegate |
549 |
{ |
550 |
if (this.ParentOfType<MainWindow>().dzTopMenu.cbAutoSave.IsChecked == true) //Auto Save Checked? |
551 |
{ |
552 |
timer.Change(((int)this.ParentOfType<MainWindow>().dzTopMenu.cbSaveInterval.Value * 60000) / 2, sw.ElapsedMilliseconds); //Timer Setting |
553 |
} |
554 |
})); |
555 |
|
556 |
////GC.Collect(); |
557 |
} |
558 |
|
559 |
/// <summary> |
560 |
/// update my markuplist |
561 |
/// - update existing markup data if already exist |
562 |
/// - add new markup data if control is new |
563 |
/// </summary> |
564 |
public void UpdateMyMarkupList() |
565 |
{ |
566 |
Logger.sendCheckLog("pageNavigator_PageChanging_ChangeCommentReact", 1); |
567 |
|
568 |
/// add or update markup list |
569 |
foreach (var control in ViewerDataModel.Instance.MarkupControls_USER) |
570 |
{ |
571 |
var root = MarkupParser.MarkupToString(control, App.ViewInfo.UserID); |
572 |
|
573 |
var exist = ViewerDataModel.Instance.MyMarkupList.Where(data => data.ID == root.CommentID).FirstOrDefault(); |
574 |
if (exist != null) //신규 추가 된 코멘트 |
575 |
{ |
576 |
if (exist.Data != root.ConvertData) //코멘트가 같은지 |
577 |
{ |
578 |
exist.Data = root.ConvertData; |
579 |
exist.IsUpdate = true; |
580 |
} |
581 |
} |
582 |
else if (root.CommentID != null) |
583 |
{ |
584 |
ViewerDataModel.Instance.MyMarkupList.Add(new MarkupItemEx |
585 |
{ |
586 |
ID = control.CommentID, |
587 |
Data = root.ConvertData, |
588 |
Data_Type = root.DATA_TYPE, |
589 |
MarkupInfoID = App.Custom_ViewInfoId, |
590 |
PageNumber = this.pageNavigator.CurrentPage.PageNumber, |
591 |
Symbol_ID = control.SymbolID, |
592 |
//Group_ID = control.GroupID, |
593 |
}); |
594 |
} |
595 |
} |
596 |
|
597 |
//if (this.pageNavigator.CurrentPage != null) |
598 |
//{ |
599 |
// /// delete markup list |
600 |
// int iPageNo = this.pageNavigator.CurrentPage.PageNumber; |
601 |
|
602 |
// var deleted = (from markup in ViewerDataModel.Instance.MyMarkupList |
603 |
// where (markup.PageNumber == iPageNo) |
604 |
// && (null == ViewerDataModel.Instance.MarkupControls_USER.Where(control => control.CommentID == markup.ID).FirstOrDefault()) |
605 |
// select markup).ToList(); |
606 |
|
607 |
// foreach (var markup in deleted) |
608 |
// { |
609 |
// ViewerDataModel.Instance.MyMarkupList.Remove(markup); |
610 |
// } |
611 |
//} |
612 |
//else |
613 |
//{ |
614 |
// System.Diagnostics.Debug.WriteLine("UpdateMyMarkupList : this.pageNavigator.CurrentPage null "); |
615 |
//} |
616 |
|
617 |
/// up to here |
618 |
|
619 |
//if (modified) |
620 |
//{ |
621 |
// if (ViewerDataModel.Instance._markupInfoList.Where(info => info.UserID == PreviewUserMarkupInfoItem.UserID).FirstOrDefault() == null) |
622 |
// { |
623 |
// ComingNewBieEnd = true; |
624 |
// ViewerDataModel.Instance._markupInfoList.Insert(0, PreviewUserMarkupInfoItem); |
625 |
// PreviewUserMarkupInfoItem.IsPreviewUser = false; |
626 |
// gridViewMarkup.ItemsSource = null; |
627 |
// gridViewMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoList; |
628 |
// gridViewMarkup.SelectedItem = PreviewUserMarkupInfoItem; |
629 |
|
630 |
// GroupDescriptor descriptor = new GroupDescriptor(); |
631 |
// descriptor.Member = "Depatment"; |
632 |
// descriptor.DisplayContent = "DEPT"; |
633 |
// descriptor.SortDirection = ListSortDirection.Ascending; |
634 |
// gridViewMarkup.GroupDescriptors.Add(descriptor); |
635 |
// } |
636 |
//} |
637 |
} |
638 |
|
639 |
/// <summary> |
640 |
/// start page changing |
641 |
/// - save controls if page is modified |
642 |
/// - starting download page image |
643 |
/// </summary> |
644 |
/// <param name="sender"></param> |
645 |
/// <param name="e"></param> |
646 |
private async void pageNavigator_PageChanging(object sender, Controls.Sample.PageChangeEventArgs e) |
647 |
{ |
648 |
//await Task.Delay(10); |
649 |
|
650 |
// 마크업 로드 |
651 |
//await this.Dispatcher.InvokeAsync(()=>MarkupLoad(e.PageNumber)); |
652 |
|
653 |
ViewerDataModel.Instance.PageAngle = e.CurrentPage.PAGE_ANGLE; |
654 |
|
655 |
var token = ViewerDataModel.Instance.NewCancellationToken(); |
656 |
|
657 |
await MarkupLoadAsync(e.PageNumber, ViewerDataModel.Instance.PageAngle, token); |
658 |
|
659 |
// 페이지 이미지 변경 |
660 |
await PageChangingAsync(e.CurrentPage, e.PageNumber, token); |
661 |
} |
662 |
|
663 |
private async Task PageChangingAsync(DOCPAGE currentPage, int changePageNumber,CancellationToken token) |
664 |
{ |
665 |
var BalancePoint = ViewerDataModel.Instance.PageBalanceMode == true ? changePageNumber + ViewerDataModel.Instance.PageBalanceNumber : changePageNumber; |
666 |
|
667 |
#region 페이지가 벗어난 경우 |
668 |
|
669 |
if (BalancePoint < 1) |
670 |
{ |
671 |
BalancePoint = 1; |
672 |
ViewerDataModel.Instance.PageBalanceNumber = 0; |
673 |
} |
674 |
|
675 |
if (pageNavigator.PageCount < BalancePoint) |
676 |
{ |
677 |
BalancePoint = pageNavigator.PageCount; |
678 |
ViewerDataModel.Instance.PageBalanceNumber = 0; |
679 |
} |
680 |
|
681 |
#endregion 페이지가 벗어난 경우 |
682 |
|
683 |
ViewerDataModel.Instance.SyncPageNumber = BalancePoint; |
684 |
|
685 |
var pageWidth = Convert.ToDouble(currentPage.PAGE_WIDTH); |
686 |
var pageHeight = Convert.ToDouble(currentPage.PAGE_HEIGHT); |
687 |
var contentScale = zoomAndPanControl.ContentScale; |
688 |
|
689 |
#region 페이지 이미지 로딩 수정 |
690 |
|
691 |
ViewerDataModel.Instance.ImageViewPath = await App.PageStorage.GetPageImageAsync(token,changePageNumber); |
692 |
|
693 |
ScaleImage(pageWidth, pageHeight); |
694 |
|
695 |
ViewerDataModel.Instance.ImageViewWidth = pageWidth; |
696 |
ViewerDataModel.Instance.ImageViewHeight = pageHeight; |
697 |
|
698 |
zoomAndPanCanvas.Width = pageWidth; |
699 |
zoomAndPanCanvas.Height = pageHeight; |
700 |
|
701 |
Common.ViewerDataModel.Instance.ContentWidth = pageWidth; |
702 |
Common.ViewerDataModel.Instance.ContentHeight = pageHeight; |
703 |
|
704 |
inkBoard.Width = pageWidth; |
705 |
inkBoard.Height = pageHeight; |
706 |
|
707 |
#endregion 페이지 이미지 로딩 수정 |
708 |
|
709 |
if (!testPanel2.IsHidden) |
710 |
{ |
711 |
Logger.sendCheckLog("pageNavigator_PageChanging_!testPanel2.IsHidden 일 때", 1); |
712 |
//PDF모드일때 잠시 대기(강인구) |
713 |
if (IsSyncPDFMode) |
714 |
{ |
715 |
Get_FinalImage.Get_PdfImage get_PdfImage = new Get_FinalImage.Get_PdfImage(); |
716 |
var pdfpath = new BitmapImage(new Uri(get_PdfImage.Run(CurrentRev.TO_VENDOR, App.ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber))); |
717 |
|
718 |
Logger.sendCheckLog("pageNavigator_PageChanging_pdfpath Image Downloading", 1); |
719 |
if (pdfpath.IsDownloading) |
720 |
{ |
721 |
pdfpath.DownloadCompleted += (ex, arg) => |
722 |
{ |
723 |
Logger.sendCheckLog("pageNavigator_PageChanging_pdfpath Image DownloadCompleted", 1); |
724 |
ViewerDataModel.Instance.ImageViewPath_C = pdfpath; |
725 |
ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth; |
726 |
ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight; |
727 |
zoomAndPanCanvas2.Width = pdfpath.PixelWidth; |
728 |
zoomAndPanCanvas2.Height = pdfpath.PixelHeight; |
729 |
}; |
730 |
} |
731 |
else |
732 |
{ |
733 |
Logger.sendCheckLog("pageNavigator_PageChanging_pdfpath Image Page Setting", 1); |
734 |
ViewerDataModel.Instance.ImageViewPath_C = pdfpath; |
735 |
ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth; |
736 |
ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight; |
737 |
|
738 |
zoomAndPanCanvas2.Width = pdfpath.PixelWidth; |
739 |
zoomAndPanCanvas2.Height = pdfpath.PixelHeight; |
740 |
} |
741 |
} |
742 |
else |
743 |
{ |
744 |
Logger.sendCheckLog("Compare Image Download", 1); |
745 |
string compareImageUri = this.GetImageURL(CurrentRev.DOCUMENT_ID, BalancePoint); |
746 |
ComparePageLoad(compareImageUri,false); |
747 |
} |
748 |
|
749 |
tlSyncPageNum.Text = String.Format("Current Page : {0}", BalancePoint); |
750 |
} |
751 |
|
752 |
SearchFocusBorder.Visibility = Visibility.Collapsed; |
753 |
|
754 |
this.pageNavigator.ChangePage(changePageNumber); |
755 |
} |
756 |
|
757 |
private void ComparePageLoad(string pageUri, bool IsOriginalSize) |
758 |
{ |
759 |
/// 현재 보고 있는 VP와 같은 크기로 로딩 |
760 |
ViewerDataModel.Instance.ImageViewPath_C = null; |
761 |
|
762 |
if (IsOriginalSize && OriginalSizeMode.IsChecked) |
763 |
{ |
764 |
ViewerDataModel.Instance.ImageViewPath_C = ImageSourceHelper.GetDownloadImage(pageUri); |
765 |
} |
766 |
else |
767 |
{ |
768 |
var imageSize = new Size(ViewerDataModel.Instance.ImageViewWidth, ViewerDataModel.Instance.ImageViewHeight); |
769 |
ViewerDataModel.Instance.ImageViewPath_C = ImageSourceHelper.GetDownloadImage(pageUri, imageSize); |
770 |
} |
771 |
|
772 |
if (ViewerDataModel.Instance.ImageViewPath_C != null) |
773 |
{ |
774 |
ViewerDataModel.Instance.ImageViewWidth_C = ViewerDataModel.Instance.ImageViewPath_C.PixelWidth; |
775 |
ViewerDataModel.Instance.ImageViewHeight_C = ViewerDataModel.Instance.ImageViewPath_C.PixelHeight; |
776 |
zoomAndPanCanvas2.Width = ViewerDataModel.Instance.ImageViewPath_C.PixelWidth; |
777 |
zoomAndPanCanvas2.Height = ViewerDataModel.Instance.ImageViewPath_C.PixelHeight; |
778 |
|
779 |
zoomAndPanControl.ZoomTo(new Rect |
780 |
{ |
781 |
X = 0, |
782 |
Y = 0, |
783 |
Width = Math.Max(zoomAndPanCanvas.Width, zoomAndPanCanvas2.Width), |
784 |
Height = Math.Max(zoomAndPanCanvas.Height, zoomAndPanCanvas2.Height), |
785 |
}); |
786 |
|
787 |
if (Sync.IsChecked) |
788 |
{ |
789 |
Sync_Click(null, new RoutedEventArgs()); |
790 |
} |
791 |
|
792 |
if (CompareMode.IsChecked) |
793 |
{ |
794 |
SyncCompare_Click(null, new RoutedEventArgs()); |
795 |
} |
796 |
} |
797 |
} |
798 |
|
799 |
/// <summary> |
800 |
/// called after page is changed |
801 |
/// </summary> |
802 |
/// <param name="sender"></param> |
803 |
/// <param name="e"></param> |
804 |
private async void PageNavigator_PageChanged(object sender, Sample.PageChangeEventArgs e) |
805 |
{ |
806 |
//if (zoomAndPanCanvas.Width.IsNaN()) |
807 |
//{ |
808 |
//await zoomAndPanControl.Dispatcher.InvokeAsync(() => |
809 |
// zoomAndPanControl.ZoomTo(new Rect { X = 0, Y = 0, Width = zoomAndPanCanvas.Width, Height = zoomAndPanCanvas.Height }) |
810 |
// ); |
811 |
//} |
812 |
|
813 |
var instanceMain = ViewerDataModel.Instance.SystemMain; |
814 |
|
815 |
instanceMain.dzMainMenu.CanvasDrawingMouseDownPoint = new Point(ViewerDataModel.Instance.ImageViewWidth / 2, ViewerDataModel.Instance.ImageViewHeight / 2); |
816 |
|
817 |
instanceMain.dzTopMenu.tlcurrentPage.Text = e.CurrentPage.PAGE_NUMBER.ToString(); |
818 |
instanceMain.dzTopMenu.tlcurrentPage_readonly.Text = e.CurrentPage.PAGE_NUMBER.ToString(); |
819 |
|
820 |
instanceMain.dzTopMenu.rotateOffSet = 0; |
821 |
var pageinfo = this.CurrentDoc.docInfo.DOCPAGE.Where(p => p.PAGE_NUMBER == e.CurrentPage.PAGE_NUMBER).FirstOrDefault(); |
822 |
drawingPannelRotate(pageinfo.PAGE_ANGLE); |
823 |
|
824 |
/// 페이지의 모든 마크업을 로드한 후 호출 |
825 |
/// 좌측 마크업 list의 아이템을 클릭하는 경우 MarkupControls_USER가 0으로 나와서 추가함. |
826 |
ViewerDataModel.Instance.LoadPageMarkupFinish(new Rect { X = 0, Y = 0, Width = zoomAndPanCanvas.Width, Height = zoomAndPanCanvas.Height }); |
827 |
|
828 |
//Point startPoint = new Point(15, 15); |
829 |
|
830 |
//var markupinfo = ViewerDataModel.Instance._markupInfoList.Where(x => x.UserID == App.ViewInfo.UserID).First(); |
831 |
|
832 |
////var rect = GetRectControl(Convert.ToDouble(pageinfo.PAGE_WIDTH), Convert.ToDouble(pageinfo.PAGE_HEIGHT), markupinfo.UserID, markupinfo.MarkupInfoID, startPoint); |
833 |
|
834 |
////var txtApproved = GetTextControl(Convert.ToDouble(pageinfo.PAGE_WIDTH), Convert.ToDouble(pageinfo.PAGE_HEIGHT), markupinfo.UserID, markupinfo.MarkupInfoID, |
835 |
//// "APPROVED",30, FontWeights.Bold, TextAlignment.Center, rect.ItemRect, 15); |
836 |
|
837 |
////var txtCreator = GetTextControl(Convert.ToDouble(pageinfo.PAGE_WIDTH), Convert.ToDouble(pageinfo.PAGE_HEIGHT), markupinfo.UserID, markupinfo.MarkupInfoID |
838 |
//// , "By HYOSUNG", 18, FontWeights.Bold, TextAlignment.Center, rect.ItemRect, txtApproved.StartPoint.Y + txtApproved.BoxHeight + 3); |
839 |
|
840 |
//var symCtrl = GetSymNControl(Convert.ToDouble(pageinfo.PAGE_WIDTH), Convert.ToDouble(pageinfo.PAGE_HEIGHT), markupinfo.UserID, markupinfo.MarkupInfoID, startPoint); |
841 |
|
842 |
//var bottom = Rect.Offset(symCtrl.ItemRect, new Vector(0, symCtrl.ItemRect.Height)); |
843 |
|
844 |
//var txtOriginator = GetTextControl(Convert.ToDouble(pageinfo.PAGE_WIDTH), Convert.ToDouble(pageinfo.PAGE_HEIGHT), markupinfo.UserID, markupinfo.MarkupInfoID |
845 |
// , App.ViewInfo.UserID, 18, FontWeights.Bold, TextAlignment.Left, bottom, bottom.Top + 3); |
846 |
|
847 |
//var dtfi = new System.Globalization.DateTimeFormatInfo { DateSeparator = "-", ShortDatePattern = @"yyyy/MM/dd" }; |
848 |
|
849 |
//var txtDate = GetTextControl(Convert.ToDouble(pageinfo.PAGE_WIDTH), Convert.ToDouble(pageinfo.PAGE_HEIGHT), markupinfo.UserID, markupinfo.MarkupInfoID |
850 |
// , DateTime.Now.ToString("d", dtfi), 18, FontWeights.Bold, TextAlignment.Left, bottom, txtOriginator.StartPoint.Y + txtOriginator.BoxHeight + 2); |
851 |
|
852 |
//ViewerDataModel.Instance.MarkupControls_USER.Add(symCtrl); |
853 |
////ViewerDataModel.Instance.MarkupControls_USER.Add(txtApproved); |
854 |
////ViewerDataModel.Instance.MarkupControls_USER.Add(txtCreator); |
855 |
//ViewerDataModel.Instance.MarkupControls_USER.Add(txtOriginator); |
856 |
//ViewerDataModel.Instance.MarkupControls_USER.Add(txtDate); |
857 |
|
858 |
//symCtrl.ApplyTemplate(); |
859 |
////txtApproved.ApplyTemplate(); |
860 |
////txtCreator.ApplyTemplate(); |
861 |
//txtOriginator.ApplyTemplate(); |
862 |
//txtDate.ApplyTemplate(); |
863 |
|
864 |
////SetTextControl(txtApproved); |
865 |
////SetTextControl(txtCreator); |
866 |
//SetTextControl(txtOriginator); |
867 |
//SetTextControl(txtDate); |
868 |
|
869 |
//multi_Undo_Data = new Multi_Undo_data(); |
870 |
|
871 |
//MarkupToPDF.Common.Undo_data UndoData = new Undo_data() |
872 |
//{ |
873 |
// IsUndo = false, |
874 |
// Event = Event_Type.Create, |
875 |
// EventTime = DateTime.Now, |
876 |
// Markup_List = new List<Multi_Undo_data>() |
877 |
//}; |
878 |
|
879 |
//multi_Undo_Data = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.Control_Style(symCtrl as MarkupToPDF.Common.CommentUserInfo); |
880 |
//UndoData.Markup_List.Add(multi_Undo_Data); |
881 |
|
882 |
////multi_Undo_Data = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.Control_Style(txtApproved as MarkupToPDF.Common.CommentUserInfo); |
883 |
////UndoData.Markup_List.Add(multi_Undo_Data); |
884 |
|
885 |
////multi_Undo_Data = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.Control_Style(txtCreator as MarkupToPDF.Common.CommentUserInfo); |
886 |
////UndoData.Markup_List.Add(multi_Undo_Data); |
887 |
|
888 |
//multi_Undo_Data = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.Control_Style(txtOriginator as MarkupToPDF.Common.CommentUserInfo); |
889 |
//UndoData.Markup_List.Add(multi_Undo_Data); |
890 |
|
891 |
//multi_Undo_Data = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.Control_Style(txtDate as MarkupToPDF.Common.CommentUserInfo); |
892 |
//UndoData.Markup_List.Add(multi_Undo_Data); |
893 |
|
894 |
//ViewerDataModel.Instance.UndoDataList.Add(UndoData); |
895 |
|
896 |
//System.Diagnostics.Debug.WriteLine(symCtrl.GetMarkupData(App.ViewInfo.UserID, 1, markupinfo.MarkupVersionID).DATA); |
897 |
////System.Diagnostics.Debug.WriteLine(txtApproved.GetMarkupData(App.ViewInfo.UserID, 1, markupinfo.MarkupVersionID).DATA); |
898 |
////System.Diagnostics.Debug.WriteLine(txtCreator.GetMarkupData(App.ViewInfo.UserID, 1, markupinfo.MarkupVersionID).DATA); |
899 |
//System.Diagnostics.Debug.WriteLine(txtOriginator.GetMarkupData(App.ViewInfo.UserID, 1, markupinfo.MarkupVersionID).DATA); |
900 |
//System.Diagnostics.Debug.WriteLine(txtDate.GetMarkupData(App.ViewInfo.UserID, 1, markupinfo.MarkupVersionID).DATA); |
901 |
} |
902 |
|
903 |
private void SetTextControl(TextControl textControl) |
904 |
{ |
905 |
textControl.Base_TextBlock.Margin = new Thickness(0, 0, 10, 0); |
906 |
textControl.Base_TextBox.Visibility = Visibility.Collapsed; |
907 |
textControl.Base_TextBlock.Visibility = Visibility.Visible; |
908 |
} |
909 |
|
910 |
private SymControlN GetSymNControl(double PageWidth, double PageHeight, string userId, string markupInfoId, Point startPosition) |
911 |
{ |
912 |
SymControlN result = null; |
913 |
|
914 |
try |
915 |
{ |
916 |
double height = 80; |
917 |
double itemWidth = 180; |
918 |
|
919 |
System.Windows.Point startPoint = new System.Windows.Point(startPosition.X, startPosition.Y); |
920 |
System.Windows.Point endPoint = new System.Windows.Point(startPosition.X + itemWidth, startPosition.Y + height); |
921 |
System.Windows.Point leftBottomPoint = new System.Windows.Point(startPosition.X, startPosition.Y + height); |
922 |
System.Windows.Point topRightPoint = new System.Windows.Point(startPosition.X + itemWidth, startPosition.Y); |
923 |
|
924 |
result = new SymControlN |
925 |
{ |
926 |
CommentID = Commons.shortGuid(), |
927 |
MarkupInfoID = markupInfoId, |
928 |
UserID = userId, |
929 |
PointSet = new List<Point> { startPoint, leftBottomPoint, endPoint, topRightPoint }, |
930 |
StartPoint = startPoint, |
931 |
EndPoint = endPoint, |
932 |
CommentAngle = 0, |
933 |
LeftBottomPoint = leftBottomPoint, |
934 |
TopRightPoint = topRightPoint, |
935 |
Opacity = 1, |
936 |
PathXathData = "eJy1Ul1PwjAU/SvN9c3EdY5g1FAShyIxRgygxsemu7AbupZ0Vae/3g42/Azxxfuw9Z7Tnpx72t6lo4zdyAIFyHUBqwptSgG596tTzkuVYyHLqCDlbGnnPlK24C9k5hVP4viIV7LQfOWwROOlJ2ug36tVo1Sq5cLZJ5P1e1OrKRtYbV3qnsqcrZcC9oZNARuvpCL/KiCODoHxfo//EJmg8tIsNLKpd+hVLmBIWkPd2iU2cnGoFprlpJYGyzBOt8WuyeCVJSNgUstCM/1WHNgDZT5oJ3E4M0Ja5F7A8QmwgTTPIYlrnAfgIIm6W2hmVy3CN9M3GUzsyznOyVAdTBlG+NxvxffXx37nOlF3Fx3vppNd5P6nnL8bnWHlU23VktUrAWe3t5Px/cU5sKE1/qFRuKi8k6nV2Qae0ltIshPXncPNtX25lZF19BY2Sn2maWGK8GQEDMIXHbB7dJ7Ur1RrUcDmbXx3l76y0eN4endz+Qd/yX/663xk2v7eAQ==", |
937 |
Memo = null |
938 |
}; |
939 |
} |
940 |
catch (Exception ex) |
941 |
{ |
942 |
System.Diagnostics.Debug.WriteLine(ex.ToString()); |
943 |
} |
944 |
|
945 |
return result; |
946 |
} |
947 |
|
948 |
private RectangleControl GetRectControl(double PageWidth, double PageHeight, string userId, string markupInfoId, Point startPosition) |
949 |
{ |
950 |
RectangleControl result = null; |
951 |
|
952 |
try |
953 |
{ |
954 |
double height = 80; |
955 |
double itemWidth = 180; |
956 |
|
957 |
System.Windows.Point startPoint = new System.Windows.Point(startPosition.X, startPosition.Y); |
958 |
System.Windows.Point endPoint = new System.Windows.Point(startPosition.X + itemWidth, startPosition.Y + height); |
959 |
System.Windows.Point leftBottomPoint = new System.Windows.Point(startPosition.X, startPosition.Y + height); |
960 |
System.Windows.Point topRightPoint = new System.Windows.Point(startPosition.X + itemWidth, startPosition.Y); |
961 |
|
962 |
result = new RectangleControl |
963 |
{ |
964 |
CommentID = Commons.shortGuid(), |
965 |
MarkupInfoID = markupInfoId, |
966 |
LineSize = 5, |
967 |
Paint = MarkupToPDF.Controls.Common.PaintSet.None, |
968 |
StartPoint = startPoint, |
969 |
EndPoint = endPoint, |
970 |
CommentAngle = 0, |
971 |
StrokeColor = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(255, 255, 0x0, 0x0)), |
972 |
//StrokeColor = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(255, 64, 224, 208)), |
973 |
FillColor = null, |
974 |
DashSize = new System.Windows.Media.DoubleCollection(new[] { 999999.0 }), |
975 |
Opacity = 1, |
976 |
LeftBottomPoint = leftBottomPoint, |
977 |
TopRightPoint = topRightPoint, |
978 |
PointSet = new List<Point> { startPoint, leftBottomPoint, endPoint, topRightPoint }, |
979 |
UserID = userId, |
980 |
Memo = null |
981 |
}; |
982 |
} |
983 |
catch (Exception ex) |
984 |
{ |
985 |
System.Diagnostics.Debug.WriteLine(ex.ToString()); |
986 |
} |
987 |
|
988 |
return result; |
989 |
} |
990 |
|
991 |
private TextControl GetTextControl(double PageWidth, double PageHeight, string userId, string markupInfoId, string Text, double fontSize, FontWeight fontWeight, TextAlignment textAlignment, Rect parentRect, double positionY) |
992 |
{ |
993 |
TextControl result = null; |
994 |
|
995 |
try |
996 |
{ |
997 |
var txtSize = ShapeMeasure(new TextBlock { Text = Text, FontSize = fontSize, FontWeight = fontWeight, FontFamily = new FontFamily("Tahoma") }); |
998 |
|
999 |
double startPositionX = parentRect.X; |
1000 |
|
1001 |
switch (textAlignment) |
1002 |
{ |
1003 |
case TextAlignment.Right: |
1004 |
startPositionX = parentRect.X + parentRect.Width - txtSize.Width; |
1005 |
break; |
1006 |
|
1007 |
case TextAlignment.Center: |
1008 |
startPositionX = parentRect.X + parentRect.Width / 2 - txtSize.Width / 2 - 3; |
1009 |
break; |
1010 |
} |
1011 |
|
1012 |
Point startPosition = new Point |
1013 |
{ |
1014 |
X = startPositionX, |
1015 |
Y = positionY |
1016 |
}; |
1017 |
|
1018 |
System.Windows.Point startPoint = new System.Windows.Point(startPosition.X, startPosition.Y); |
1019 |
System.Windows.Point endPoint = new System.Windows.Point(startPosition.X + txtSize.Width, startPosition.Y + txtSize.Height); |
1020 |
System.Windows.Point leftBottomPoint = new System.Windows.Point(startPosition.X, startPosition.Y + txtSize.Height); |
1021 |
System.Windows.Point topRightPoint = new System.Windows.Point(startPosition.X + txtSize.Width, startPosition.Y); |
1022 |
|
1023 |
result = new TextControl |
1024 |
{ |
1025 |
CommentID = Commons.shortGuid(), |
1026 |
MarkupInfoID = markupInfoId, |
1027 |
Text = Text, |
1028 |
StartPoint = startPoint, |
1029 |
EndPoint = endPoint, |
1030 |
CanvasX = startPosition.X, |
1031 |
CanvasY = startPosition.Y, |
1032 |
BoxWidth = txtSize.Width, |
1033 |
BoxHeight = txtSize.Height, |
1034 |
ControlType_No = 0, |
1035 |
LineSize = new Thickness(5), |
1036 |
TextSize = fontSize, |
1037 |
Foreground = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(255, 255, 0, 0)), |
1038 |
FontSize = 10, |
1039 |
UserID = userId, |
1040 |
IsHighLight = false, |
1041 |
CommentAngle = 0, |
1042 |
PointSet = new List<Point>(), |
1043 |
Opacity = 1, |
1044 |
IsSelected = false, |
1045 |
TextFamily = new FontFamily("Tahoma"), |
1046 |
TextStyle = FontStyles.Normal, |
1047 |
TextWeight = FontWeights.Bold |
1048 |
}; |
1049 |
} |
1050 |
catch (Exception ex) |
1051 |
{ |
1052 |
} |
1053 |
|
1054 |
return result; |
1055 |
} |
1056 |
|
1057 |
public static Size ShapeMeasure(UIElement e) |
1058 |
{ |
1059 |
// Measured Size is bounded to be less than maxSize |
1060 |
Size maxSize = new Size( |
1061 |
double.PositiveInfinity, |
1062 |
double.PositiveInfinity); |
1063 |
e.Measure(maxSize); |
1064 |
return e.DesiredSize; |
1065 |
} |
1066 |
|
1067 |
private async Task MarkupLoadAsync(int pageNumber,Double PageAngle, CancellationToken cts) |
1068 |
{ |
1069 |
System.Diagnostics.Stopwatch stopwatch = new Stopwatch(); |
1070 |
stopwatch.Start(); |
1071 |
|
1072 |
/// 컨트롤을 새로 생성한다. |
1073 |
Common.ViewerDataModel.Instance.MarkupControls_USER.Clear(); //전체 제거 |
1074 |
Common.ViewerDataModel.Instance.MarkupControls.Clear(); //전체 제거 |
1075 |
|
1076 |
System.Diagnostics.Debug.WriteLine("MarkupLoad - Clear " + new TimeSpan(stopwatch.ElapsedTicks).ToString()); |
1077 |
|
1078 |
foreach (var markup in ViewerDataModel.Instance.MyMarkupList.Where(param => param.PageNumber == pageNumber)) |
1079 |
{ |
1080 |
if (cts.IsCancellationRequested) |
1081 |
{ |
1082 |
return; |
1083 |
} |
1084 |
|
1085 |
var info = ViewerDataModel.Instance._markupInfoList.Where(param => param.MarkupInfoID == markup.MarkupInfoID).FirstOrDefault(); |
1086 |
if (info != null) |
1087 |
{ |
1088 |
string sColor = (info.UserID == App.ViewInfo.UserID) ? "#FFFF0000" : info.DisplayColor; |
1089 |
if (info.UserID == App.ViewInfo.UserID) |
1090 |
{ |
1091 |
var control = await MarkupParser.ParseExAsync(App.BaseAddress, cts, App.ViewInfo.ProjectNO, markup.Data, Common.ViewerDataModel.Instance.MarkupControls_USER, PageAngle, sColor, "", |
1092 |
markup.MarkupInfoID, markup.ID); |
1093 |
control.Visibility = Visibility.Hidden; |
1094 |
} |
1095 |
else |
1096 |
{ |
1097 |
var control = await MarkupParser.ParseExAsync(App.BaseAddress, cts, App.ViewInfo.ProjectNO, markup.Data, Common.ViewerDataModel.Instance.MarkupControls, PageAngle, sColor, "", |
1098 |
markup.MarkupInfoID, markup.ID); |
1099 |
control.Visibility = Visibility.Hidden; |
1100 |
} |
1101 |
} |
1102 |
|
1103 |
}; |
1104 |
/// up to here |
1105 |
|
1106 |
System.Diagnostics.Debug.WriteLine("MarkupLoad - MarkupParser " + new TimeSpan(stopwatch.ElapsedTicks).ToString()); |
1107 |
|
1108 |
/// fire selection event |
1109 |
List<MarkupInfoItem> gridSelectionItem = gridViewMarkup.SelectedItems.Cast<MarkupInfoItem>().ToList(); //선택 된 마크업 |
1110 |
this.gridViewMarkup.UnselectAll(); |
1111 |
this.gridViewMarkup.Select(gridSelectionItem); |
1112 |
|
1113 |
if (!testPanel2.IsHidden) |
1114 |
{ |
1115 |
ViewerDataModel.Instance.Sync_ContentOffsetX = zoomAndPanControl.ContentOffsetX; |
1116 |
ViewerDataModel.Instance.Sync_ContentOffsetY = zoomAndPanControl.ContentOffsetY; |
1117 |
ViewerDataModel.Instance.Sync_ContentScale = zoomAndPanControl.ContentScale; |
1118 |
|
1119 |
Common.ViewerDataModel.Instance.MarkupControls_Sync.Clear(); |
1120 |
List<MarkupInfoItem> gridSelectionRevItem = gridViewRevMarkup.SelectedItems.Cast<MarkupInfoItem>().ToList(); |
1121 |
|
1122 |
foreach (var item in gridSelectionRevItem) |
1123 |
{ |
1124 |
var markupitems = item.MarkupList.Where(pageItem => pageItem.PageNumber == pageNumber).ToList(); |
1125 |
|
1126 |
foreach (var markupitem in markupitems) |
1127 |
{ |
1128 |
await MarkupParser.ParseExAsync(App.BaseAddress, ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls_Sync,PageAngle, item.DisplayColor, "", item.MarkupInfoID); |
1129 |
|
1130 |
if (cts.IsCancellationRequested) |
1131 |
{ |
1132 |
return; |
1133 |
} |
1134 |
} |
1135 |
} |
1136 |
} |
1137 |
|
1138 |
SetCommentPages(cts); |
1139 |
} |
1140 |
|
1141 |
public void SetCommentPages(CancellationToken? cts) |
1142 |
{ |
1143 |
Logger.sendCheckLog("pageNavigator_PageChanging_SetCommentPages Setting", 1); |
1144 |
List<UsersCommentPagesMember> _pages = new List<UsersCommentPagesMember>(); |
1145 |
foreach (var item in ViewerDataModel.Instance._markupInfoList) |
1146 |
{ |
1147 |
//Comment 가 존재할 경우에만 Thumbnail 에 추가 |
1148 |
if (item.MarkupList != null) |
1149 |
{ |
1150 |
UsersCommentPagesMember instance = new UsersCommentPagesMember(); |
1151 |
instance.UserName = item.UserName; |
1152 |
instance.Depart = item.Depatment; |
1153 |
instance.MarkupInfoID = item.MarkupInfoID; |
1154 |
instance.IsSelected = true; |
1155 |
instance.isConSolidation = item.Consolidate; |
1156 |
instance.SetColor = item.DisplayColor; |
1157 |
if (item.UserID == App.ViewInfo.UserID && item.MarkupInfoID == item.MarkupInfoID) |
1158 |
{ |
1159 |
instance.PageNumber = ViewerDataModel.Instance.MyMarkupList.Select(d => d.PageNumber).ToList(); |
1160 |
} |
1161 |
else |
1162 |
{ |
1163 |
instance.PageNumber = ViewerDataModel.Instance.MarkupList_Pre.Where(data => data.MarkupInfoID == item.MarkupInfoID).Select(d => d.PageNumber).ToList(); |
1164 |
} |
1165 |
_pages.Add(instance); |
1166 |
} |
1167 |
|
1168 |
if (cts != null) |
1169 |
{ |
1170 |
if (cts.Value.IsCancellationRequested) |
1171 |
return; |
1172 |
} |
1173 |
} |
1174 |
|
1175 |
this.pageNavigator.SetCommentList(_pages.ToList(),cts); |
1176 |
} |
1177 |
|
1178 |
public void MarkupitemViewUpdate(string markupinfo_id) |
1179 |
{ |
1180 |
//db에 업데이트 한 list 를 view 에 업데이트 |
1181 |
string sDocID = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu._DocInfo.ID; |
1182 |
List<MarkupInfoItem> results = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetMarkupInfoItems(App.ViewInfo.ProjectNO, sDocID); |
1183 |
MarkupInfoItem dbinfo = results.Where(x => x.MarkupInfoID == markupinfo_id).FirstOrDefault(); |
1184 |
MarkupInfoItem viewinfo = Common.ViewerDataModel.Instance._markupInfoList.Where(x => x.MarkupInfoID == markupinfo_id).FirstOrDefault(); |
1185 |
if (dbinfo.MarkupList.Count > 0) |
1186 |
{ |
1187 |
if (viewinfo.MarkupList != null) |
1188 |
{ |
1189 |
viewinfo.MarkupList.Clear(); |
1190 |
viewinfo.MarkupList = null; |
1191 |
} |
1192 |
viewinfo.MarkupList = new List<MarkupItem>(); |
1193 |
foreach (var item in dbinfo.MarkupList) |
1194 |
{ |
1195 |
viewinfo.MarkupList.Add(item); |
1196 |
} |
1197 |
} |
1198 |
} |
1199 |
|
1200 |
private async void zoomAndPanControl_MouseWheel(object sender, MouseWheelEventArgs e) |
1201 |
{ |
1202 |
var instance = ViewerDataModel.Instance; |
1203 |
|
1204 |
if (instance.IsWheelPageChanage) |
1205 |
{ |
1206 |
return; |
1207 |
} |
1208 |
|
1209 |
if (instance.IsPressCtrl) // && !instance.IsWheelPageChanage) |
1210 |
{ |
1211 |
int changePage = 0; |
1212 |
|
1213 |
if (e.Delta > 0) |
1214 |
{ |
1215 |
if (0 < instance.ContentOffsetY) |
1216 |
{ |
1217 |
Vector dragOffset = new Vector(0, e.Delta); |
1218 |
MoveZoomAndPanControl(dragOffset); |
1219 |
} |
1220 |
//else |
1221 |
//{ |
1222 |
// if (instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber > 1) |
1223 |
// { |
1224 |
// instance.IsWheelPageChanage = true; |
1225 |
// changePage -= 1; |
1226 |
// } |
1227 |
//} |
1228 |
} |
1229 |
else if (e.Delta < 0) |
1230 |
{ |
1231 |
if (instance.ContentHeight > instance.ContentOffsetY + instance.ContentViewportHeight) |
1232 |
{ |
1233 |
Vector dragOffset = new Vector(0, e.Delta); |
1234 |
MoveZoomAndPanControl(dragOffset); |
1235 |
} |
1236 |
//else |
1237 |
//{ |
1238 |
// if (instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber < instance.SystemMain.dzMainMenu.pageNavigator.PageCount) |
1239 |
// { |
1240 |
// instance.IsWheelPageChanage = true; |
1241 |
// changePage += 1; |
1242 |
// } |
1243 |
//} |
1244 |
} |
1245 |
|
1246 |
//if (changePage != 0) |
1247 |
//{ |
1248 |
// await Task.Factory.StartNew(() => |
1249 |
// { |
1250 |
// double beforeScale = instance.ContentScale; |
1251 |
|
1252 |
// EventHandler<Sample.PageChangeEventArgs> handler = null; |
1253 |
|
1254 |
// handler = (snd, evt) => |
1255 |
// { |
1256 |
// /// 최상단으로 이전 zoomScale로 위치한다 |
1257 |
// //Point currentContentMousePoint = e.GetPosition(zoomAndPanCanvas); |
1258 |
// //zoomAndPanControl.ZoomAboutPoint(beforeScale, new Point(currentContentMousePoint.X, 0)); |
1259 |
// instance.IsWheelPageChanage = false; |
1260 |
// pageNavigator.PageChanged -= handler; |
1261 |
// }; |
1262 |
|
1263 |
// pageNavigator.PageChanged += handler; |
1264 |
|
1265 |
// pageNavigator.GotoPage(Convert.ToInt32(instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber) + changePage); |
1266 |
// }); |
1267 |
|
1268 |
//} |
1269 |
} |
1270 |
else |
1271 |
{ |
1272 |
e.Handled = true; |
1273 |
if (e.Delta > 0) |
1274 |
{ |
1275 |
Point currentContentMousePoint = e.GetPosition(zoomAndPanCanvas); |
1276 |
ZoomIn(currentContentMousePoint); |
1277 |
} |
1278 |
else |
1279 |
{ |
1280 |
Point currentContentMousePoint = e.GetPosition(zoomAndPanCanvas); |
1281 |
ZoomOut(currentContentMousePoint); |
1282 |
} |
1283 |
} |
1284 |
} |
1285 |
|
1286 |
private void zoomAndPanControl2_MouseWheel(object sender, MouseWheelEventArgs e) |
1287 |
{ |
1288 |
e.Handled = true; |
1289 |
if (e.Delta > 0) |
1290 |
{ |
1291 |
Point currentContentMousePoint = e.GetPosition(zoomAndPanCanvas2); |
1292 |
ZoomIn_Sync(currentContentMousePoint); |
1293 |
} |
1294 |
else |
1295 |
{ |
1296 |
Point currentContentMousePoint = e.GetPosition(zoomAndPanCanvas2); |
1297 |
ZoomOut_Sync(currentContentMousePoint); |
1298 |
} |
1299 |
} |
1300 |
|
1301 |
#region ZoomIn & ZoomOut |
1302 |
|
1303 |
private void ZoomOut_Executed(object sender, ExecutedRoutedEventArgs e) |
1304 |
{ |
1305 |
ZoomOut(new Point(zoomAndPanControl.ContentZoomFocusX, |
1306 |
zoomAndPanControl.ContentZoomFocusY)); |
1307 |
} |
1308 |
|
1309 |
private void ZoomIn_Executed(object sender, ExecutedRoutedEventArgs e) |
1310 |
{ |
1311 |
ZoomIn(new Point(zoomAndPanControl.ContentZoomFocusX, |
1312 |
zoomAndPanControl.ContentZoomFocusY)); |
1313 |
} |
1314 |
|
1315 |
//강인구 추가 (줌 인아웃 수치 변경) |
1316 |
//큰해상도의 문서일 경우 줌 인 아웃시 사이즈 변동이 큼 |
1317 |
private void ZoomOut(Point contentZoomCenter) |
1318 |
{ |
1319 |
if (zoomAndPanControl.ContentScale > 0.39) |
1320 |
{ |
1321 |
zoomAndPanControl.ZoomAboutPoint(zoomAndPanControl.ContentScale - 0.2, contentZoomCenter); |
1322 |
} |
1323 |
else |
1324 |
{ |
1325 |
zoomAndPanControl.ZoomAboutPoint(zoomAndPanControl.ContentScale / 2, contentZoomCenter); |
1326 |
} |
1327 |
|
1328 |
if (zoomAndPanControl2 != null && Sync.IsChecked) |
1329 |
{ |
1330 |
zoomAndPanControl2.ZoomAboutPoint(zoomAndPanControl.ContentScale, contentZoomCenter); |
1331 |
} |
1332 |
} |
1333 |
|
1334 |
private void ZoomIn(Point contentZoomCenter) |
1335 |
{ |
1336 |
if (zoomAndPanControl.ContentScale > 0.19) |
1337 |
{ |
1338 |
zoomAndPanControl.ZoomAboutPoint(zoomAndPanControl.ContentScale + 0.2, contentZoomCenter); |
1339 |
} |
1340 |
else |
1341 |
{ |
1342 |
zoomAndPanControl.ZoomAboutPoint(zoomAndPanControl.ContentScale * 2, contentZoomCenter); |
1343 |
} |
1344 |
|
1345 |
if (zoomAndPanControl2 != null && Sync.IsChecked) |
1346 |
{ |
1347 |
zoomAndPanControl2.ZoomAboutPoint(zoomAndPanControl.ContentScale, contentZoomCenter); |
1348 |
} |
1349 |
} |
1350 |
|
1351 |
private void ZoomOut_Sync(Point contentZoomCenter) |
1352 |
{ |
1353 |
if (zoomAndPanControl2.ContentScale > 0.39) |
1354 |
{ |
1355 |
zoomAndPanControl2.ZoomAboutPoint(zoomAndPanControl2.ContentScale - 0.2, contentZoomCenter); |
1356 |
} |
1357 |
else |
1358 |
{ |
1359 |
zoomAndPanControl2.ZoomAboutPoint(zoomAndPanControl2.ContentScale / 2, contentZoomCenter); |
1360 |
} |
1361 |
|
1362 |
if (Sync.IsChecked) |
1363 |
{ |
1364 |
zoomAndPanControl.ZoomAboutPoint(zoomAndPanControl2.ContentScale, contentZoomCenter); |
1365 |
} |
1366 |
} |
1367 |
|
1368 |
private void ZoomIn_Sync(Point contentZoomCenter) |
1369 |
{ |
1370 |
if (zoomAndPanControl2.ContentScale > 0.19) |
1371 |
{ |
1372 |
zoomAndPanControl2.ZoomAboutPoint(zoomAndPanControl2.ContentScale + 0.2, contentZoomCenter); |
1373 |
} |
1374 |
else |
1375 |
{ |
1376 |
zoomAndPanControl2.ZoomAboutPoint(zoomAndPanControl2.ContentScale * 2, contentZoomCenter); |
1377 |
} |
1378 |
|
1379 |
if (Sync.IsChecked) |
1380 |
{ |
1381 |
zoomAndPanControl.ZoomAboutPoint(zoomAndPanControl2.ContentScale, contentZoomCenter); |
1382 |
} |
1383 |
} |
1384 |
|
1385 |
private void ZoomOut() |
1386 |
{ |
1387 |
zoomAndPanControl.ContentScale -= 0.1; |
1388 |
//if (zoomAndPanControl2 != null) |
1389 |
//{ |
1390 |
// zoomAndPanControl2.ContentScale -= 0.1; |
1391 |
//} |
1392 |
} |
1393 |
|
1394 |
private void ZoomIn() |
1395 |
{ |
1396 |
zoomAndPanControl.ContentScale += 0.1; |
1397 |
//if (zoomAndPanControl2 != null) |
1398 |
//{ |
1399 |
// zoomAndPanControl2.ContentScale += 0.1; |
1400 |
//} |
1401 |
} |
1402 |
|
1403 |
#endregion ZoomIn & ZoomOut |
1404 |
|
1405 |
private void init() |
1406 |
{ |
1407 |
foreach (var item in ViewerDataModel.Instance.MarkupControls) |
1408 |
{ |
1409 |
ControlList.Clear(); |
1410 |
listBox.Items.Clear(); |
1411 |
selected_item.Clear(); |
1412 |
|
1413 |
(item as IMarkupCommonData).IsSelected = false; |
1414 |
} |
1415 |
} |
1416 |
|
1417 |
private HitTestResultBehavior MyCallback(HitTestResult result) |
1418 |
{ |
1419 |
//this.cursor = Cursors.UpArrow; |
1420 |
var element = result.VisualHit; |
1421 |
while (element != null && !(element is CommentUserInfo)) |
1422 |
element = VisualTreeHelper.GetParent(element); |
1423 |
|
1424 |
if (element == null) |
1425 |
{ |
1426 |
return HitTestResultBehavior.Stop; |
1427 |
} |
1428 |
else |
1429 |
{ |
1430 |
if (element is CommentUserInfo) |
1431 |
{ |
1432 |
if (!hitList.Contains(element)) |
1433 |
{ |
1434 |
hitList.Add((CommentUserInfo)element); |
1435 |
} |
1436 |
else |
1437 |
{ |
1438 |
return HitTestResultBehavior.Stop; |
1439 |
} |
1440 |
} |
1441 |
} |
1442 |
return HitTestResultBehavior.Continue; |
1443 |
} |
1444 |
|
1445 |
public void ReleaseSelectPath() |
1446 |
{ |
1447 |
if (SelectionPath == null) |
1448 |
{ |
1449 |
SelectionPath = new Path(); |
1450 |
SelectionPath.Name = ""; |
1451 |
} |
1452 |
if (SelectionPath.Name != "") |
1453 |
{ |
1454 |
SelectionPath.Name = "None"; |
1455 |
} |
1456 |
SelectionPath.Opacity = 0.01; |
1457 |
SelectionPath.RenderTransform = null; |
1458 |
SelectionPath.RenderTransformOrigin = new Point(0, 0); |
1459 |
} |
1460 |
|
1461 |
#region 컨트롤 초기화 |
1462 |
|
1463 |
public void Control_Init(object control) |
1464 |
{ |
1465 |
if (L_Size != 0 && (control as IPath) != null) |
1466 |
{ |
1467 |
(control as IPath).LineSize = L_Size; |
1468 |
L_Size = 0; |
1469 |
} |
1470 |
|
1471 |
switch (control.GetType().Name) |
1472 |
{ |
1473 |
case "RectangleControl": |
1474 |
{ |
1475 |
(control as RectangleControl).StrokeColor = Brushes.Red; |
1476 |
} |
1477 |
break; |
1478 |
|
1479 |
case "CircleControl": |
1480 |
{ |
1481 |
(control as CircleControl).StrokeColor = Brushes.Red; |
1482 |
} |
1483 |
break; |
1484 |
|
1485 |
case "TriControl": |
1486 |
{ |
1487 |
(control as TriControl).StrokeColor = Brushes.Red; |
1488 |
} |
1489 |
break; |
1490 |
|
1491 |
case "RectCloudControl": |
1492 |
{ |
1493 |
(control as RectCloudControl).StrokeColor = Brushes.Red; |
1494 |
} |
1495 |
break; |
1496 |
|
1497 |
case "CloudControl": |
1498 |
{ |
1499 |
(control as CloudControl).StrokeColor = Brushes.Red; |
1500 |
} |
1501 |
break; |
1502 |
|
1503 |
case "PolygonControl": |
1504 |
{ |
1505 |
(control as PolygonControl).StrokeColor = Brushes.Red; |
1506 |
} |
1507 |
break; |
1508 |
|
1509 |
case "ArcControl": |
1510 |
{ |
1511 |
(control as ArcControl).StrokeColor = Brushes.Red; |
1512 |
} |
1513 |
break; |
1514 |
|
1515 |
case "ArrowArcControl": |
1516 |
{ |
1517 |
(control as ArrowArcControl).StrokeColor = Brushes.Red; |
1518 |
} |
1519 |
break; |
1520 |
|
1521 |
case "LineControl": |
1522 |
{ |
1523 |
(control as LineControl).StrokeColor = Brushes.Red; |
1524 |
} |
1525 |
break; |
1526 |
|
1527 |
case "ArrowControl_Multi": |
1528 |
{ |
1529 |
(control as ArrowControl_Multi).StrokeColor = Brushes.Red; |
1530 |
} |
1531 |
break; |
1532 |
|
1533 |
case "TextControl": |
1534 |
{ |
1535 |
(control as TextControl).BackInnerColor = new SolidColorBrush(Color.FromArgb(Convert.ToByte(255 * 0.6), Colors.White.R, Colors.White.G, Colors.White.B)); |
1536 |
} |
1537 |
break; |
1538 |
|
1539 |
case "ArrowTextControl": |
1540 |
{ |
1541 |
(control as ArrowTextControl).BackInnerColor = new SolidColorBrush(Color.FromArgb(Convert.ToByte(255 * 0.6), Colors.White.R, Colors.White.G, Colors.White.B)); |
1542 |
} |
1543 |
break; |
1544 |
|
1545 |
case "InsideWhiteControl": |
1546 |
{ |
1547 |
(control as InsideWhiteControl).StrokeColor = Brushes.White; |
1548 |
} |
1549 |
break; |
1550 |
|
1551 |
case "OverlapWhiteControl": |
1552 |
{ |
1553 |
(control as OverlapWhiteControl).StrokeColor = Brushes.White; |
1554 |
} |
1555 |
break; |
1556 |
|
1557 |
case "ClipWhiteControl": |
1558 |
{ |
1559 |
(control as ClipWhiteControl).StrokeColor = Brushes.White; |
1560 |
} |
1561 |
break; |
1562 |
|
1563 |
case "CoordinateControl": |
1564 |
{ |
1565 |
(control as CoordinateControl).StrokeColor = Brushes.Black; |
1566 |
} |
1567 |
break; |
1568 |
} |
1569 |
} |
1570 |
|
1571 |
#endregion 컨트롤 초기화 |
1572 |
|
1573 |
public void firstCondition_MouseLeave(object sender, MouseEventArgs e) |
1574 |
{ |
1575 |
//Control_Init(e.Source); |
1576 |
} |
1577 |
|
1578 |
//private Window _dragdropWindow = null; |
1579 |
|
1580 |
[DllImport("user32.dll")] |
1581 |
[return: MarshalAs(UnmanagedType.Bool)] |
1582 |
internal static extern bool GetCursorPos(ref Win32Point pt); |
1583 |
|
1584 |
[StructLayout(LayoutKind.Sequential)] |
1585 |
internal struct Win32Point |
1586 |
{ |
1587 |
public Int32 X; |
1588 |
public Int32 Y; |
1589 |
}; |
1590 |
|
1591 |
/* |
1592 |
public string symbol_id = null; |
1593 |
public long symbol_group_id; |
1594 |
public int symbol_SelectedIndex; |
1595 |
public ImageSource symbol_img; |
1596 |
public string symbol_Data = null; |
1597 |
public void symboldata(string id, long group_id, int SelectedIndex, string Data_, ImageSource img) |
1598 |
{ |
1599 |
PlaceImageSymbol(symbol_id, symbol_group_id, symbol_SelectedIndex, new Point(zoomAndPanCanvas.ActualWidth / 2, |
1600 |
zoomAndPanCanvas.ActualHeight / 2)); |
1601 |
|
1602 |
if (this._dragdropWindow != null) |
1603 |
{ |
1604 |
this._dragdropWindow.Close(); |
1605 |
this._dragdropWindow = null; |
1606 |
} |
1607 |
|
1608 |
symbol_id = id; |
1609 |
symbol_group_id = group_id; |
1610 |
symbol_SelectedIndex = SelectedIndex; |
1611 |
symbol_Data = Data_; |
1612 |
symbol_img = img; |
1613 |
|
1614 |
CreateDragDropWindow2(img); |
1615 |
} |
1616 |
|
1617 |
private void CreateDragDropWindow2(ImageSource image) |
1618 |
{ |
1619 |
this._dragdropWindow = new Window(); |
1620 |
_dragdropWindow.Cursor = new Cursor(App.DefaultArrowCursorStream); |
1621 |
_dragdropWindow.WindowStyle = WindowStyle.None; |
1622 |
_dragdropWindow.AllowsTransparency = true; |
1623 |
_dragdropWindow.AllowDrop = false; |
1624 |
_dragdropWindow.Background = null; |
1625 |
_dragdropWindow.IsHitTestVisible = false; |
1626 |
_dragdropWindow.SizeToContent = SizeToContent.WidthAndHeight; |
1627 |
_dragdropWindow.Topmost = true; |
1628 |
_dragdropWindow.ShowInTaskbar = false; |
1629 |
|
1630 |
Rectangle r = new Rectangle(); |
1631 |
r.Width = image.Width; |
1632 |
r.Height = image.Height; |
1633 |
r.Opacity = 0.5; |
1634 |
r.Fill = new ImageBrush(image); |
1635 |
this._dragdropWindow.Content = r; |
1636 |
|
1637 |
Win32Point w32Mouse = new Win32Point(); |
1638 |
GetCursorPos(ref w32Mouse); |
1639 |
|
1640 |
//w32Mouse.X = getCurrentPoint.X; |
1641 |
this._dragdropWindow.Left = w32Mouse.X - (image.Width / 2); |
1642 |
this._dragdropWindow.Top = w32Mouse.Y - (image.Height / 2); |
1643 |
this._dragdropWindow.Show(); |
1644 |
} |
1645 |
|
1646 |
*/ |
1647 |
|
1648 |
public void MoveZoomAndPanControl(Vector dragOffset) |
1649 |
{ |
1650 |
zoomAndPanControl.ContentOffsetX -= dragOffset.X; |
1651 |
zoomAndPanControl.ContentOffsetY -= dragOffset.Y; |
1652 |
|
1653 |
if (Sync.IsChecked) |
1654 |
{ |
1655 |
ViewerDataModel.Instance.Sync_ContentOffsetX = zoomAndPanControl.ContentOffsetX; |
1656 |
ViewerDataModel.Instance.Sync_ContentOffsetY = zoomAndPanControl.ContentOffsetY; |
1657 |
} |
1658 |
} |
1659 |
|
1660 |
private void zoomAndPanControl_MouseMove(object sender, MouseEventArgs e) |
1661 |
{ |
1662 |
if (Common.ViewerDataModel.Instance.SelectedControl == "Batch" |
1663 |
|| Common.ViewerDataModel.Instance.SelectedControl == "MACRO") |
1664 |
//if(this.txtBatch.Visibility == Visibility.Visible) |
1665 |
{ |
1666 |
if (!floatingTip.IsOpen) { floatingTip.IsOpen = true; } |
1667 |
|
1668 |
Point currentPos = e.GetPosition(rect); |
1669 |
|
1670 |
floatingTip.HorizontalOffset = currentPos.X + 20; |
1671 |
floatingTip.VerticalOffset = currentPos.Y; |
1672 |
} |
1673 |
|
1674 |
getCurrentPoint = e.GetPosition(drawingRotateCanvas); |
1675 |
|
1676 |
if ((e.MiddleButton == MouseButtonState.Pressed) || (e.RightButton == MouseButtonState.Pressed)) |
1677 |
{ |
1678 |
SetCursor(); |
1679 |
Point currentCanvasDrawingMouseMovePoint = e.GetPosition(drawingRotateCanvas); |
1680 |
Point currentCanvasZoomPanningMouseMovePoint = e.GetPosition(zoomAndPanCanvas); |
1681 |
|
1682 |
Vector dragOffset = currentCanvasZoomPanningMouseMovePoint - canvasZoommovingMouseDownPoint; |
1683 |
|
1684 |
MoveZoomAndPanControl(dragOffset); |
1685 |
} |
1686 |
|
1687 |
if (mouseHandlingMode == MouseHandlingMode.Drawing && currentControl != null) |
1688 |
{ |
1689 |
Point currentCanvasDrawingMouseMovePoint = e.GetPosition(drawingRotateCanvas); |
1690 |
Point currentCanvasZoomPanningMouseMovePoint = e.GetPosition(zoomAndPanCanvas); |
1691 |
SetCursor(); |
1692 |
|
1693 |
if (currentControl != null) |
1694 |
{ |
1695 |
double moveX = currentCanvasDrawingMouseMovePoint.X - CanvasDrawingMouseDownPoint.X; |
1696 |
double moveY = currentCanvasDrawingMouseMovePoint.Y - CanvasDrawingMouseDownPoint.Y; |
1697 |
//강인구 추가 |
1698 |
currentControl.Opacity = ViewerDataModel.Instance.ControlOpacity; |
1699 |
|
1700 |
if ((currentControl as IPath) != null) |
1701 |
{ |
1702 |
(currentControl as IPath).LineSize = ViewerDataModel.Instance.LineSize; |
1703 |
} |
1704 |
if ((currentControl as LineControl) != null) |
1705 |
{ |
1706 |
(currentControl as LineControl).Interval = ViewerDataModel.Instance.Interval; |
1707 |
} |
1708 |
|
1709 |
if ((currentControl as IShapeControl) != null) |
1710 |
{ |
1711 |
(currentControl as IShapeControl).Paint = ViewerDataModel.Instance.paintSet; |
1712 |
} |
1713 |
if ((currentControl as TextControl) != null) |
1714 |
{ |
1715 |
if (this.ParentOfType<MainWindow>().dzTopMenu.btnItalic.IsChecked == true) |
1716 |
{ |
1717 |
(currentControl as TextControl).TextStyle = FontStyles.Italic; |
1718 |
} |
1719 |
if (this.ParentOfType<MainWindow>().dzTopMenu.btnBold.IsChecked == true) |
1720 |
{ |
1721 |
(currentControl as TextControl).TextWeight = FontWeights.Bold; |
1722 |
} |
1723 |
if (this.ParentOfType<MainWindow>().dzTopMenu.btnUnderLine.IsChecked == true) |
1724 |
{ |
1725 |
(currentControl as TextControl).UnderLine = TextDecorations.Underline; |
1726 |
} |
1727 |
} |
1728 |
else if ((currentControl as ArrowTextControl) != null) |
1729 |
{ |
1730 |
if (this.ParentOfType<MainWindow>().dzTopMenu.btnItalic.IsChecked == true) |
1731 |
{ |
1732 |
(currentControl as ArrowTextControl).TextStyle = FontStyles.Italic; |
1733 |
} |
1734 |
if (this.ParentOfType<MainWindow>().dzTopMenu.btnBold.IsChecked == true) |
1735 |
{ |
1736 |
(currentControl as ArrowTextControl).TextWeight = FontWeights.Bold; |
1737 |
} |
1738 |
if (this.ParentOfType<MainWindow>().dzTopMenu.btnUnderLine.IsChecked == true) |
1739 |
{ |
1740 |
(currentControl as ArrowTextControl).UnderLine = TextDecorations.Underline; |
1741 |
} |
1742 |
} |
1743 |
else if ((currentControl as RectCloudControl) != null) |
1744 |
{ |
1745 |
(currentControl as RectCloudControl).ArcLength = ViewerDataModel.Instance.ArcLength; |
1746 |
} |
1747 |
else if ((currentControl as CloudControl) != null) |
1748 |
{ |
1749 |
(currentControl as CloudControl).ArcLength = ViewerDataModel.Instance.ArcLength; |
1750 |
} |
1751 |
|
1752 |
#region // 모든 컨트롤의 공통기능 제어 |
1753 |
|
1754 |
if (controlType != ControlType.PenControl) |
1755 |
{ |
1756 |
currentControl.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.IsAxisLock || ViewerDataModel.Instance.IsPressShift); |
1757 |
} |
1758 |
|
1759 |
#endregion // 모든 컨트롤의 공통기능 제어 |
1760 |
|
1761 |
#region // 각 컨트롤의 특별한 기능을 제어한다. |
1762 |
|
1763 |
switch (controlType) |
1764 |
{ |
1765 |
case (ControlType.Coordinate): |
1766 |
{ |
1767 |
var control = currentControl as CoordinateControl; |
1768 |
if (control != null) |
1769 |
{ |
1770 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1771 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1772 |
control.Paint = ViewerDataModel.Instance.paintSet; |
1773 |
} |
1774 |
} |
1775 |
break; |
1776 |
|
1777 |
case (ControlType.InsideWhite): |
1778 |
{ |
1779 |
var control = currentControl as InsideWhiteControl; |
1780 |
if (control != null) |
1781 |
{ |
1782 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1783 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1784 |
control.Paint = ViewerDataModel.Instance.paintSet; |
1785 |
control.Paint = PaintSet.Fill; |
1786 |
} |
1787 |
} |
1788 |
break; |
1789 |
|
1790 |
case ControlType.OverlapWhite: |
1791 |
{ |
1792 |
var control = currentControl as OverlapWhiteControl; |
1793 |
if (control != null) |
1794 |
{ |
1795 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1796 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1797 |
control.Paint = ViewerDataModel.Instance.paintSet; |
1798 |
control.Paint = PaintSet.Fill; |
1799 |
} |
1800 |
} |
1801 |
break; |
1802 |
|
1803 |
case ControlType.ClipWhite: |
1804 |
{ |
1805 |
var control = currentControl as ClipWhiteControl; |
1806 |
if (control != null) |
1807 |
{ |
1808 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1809 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1810 |
control.Paint = ViewerDataModel.Instance.paintSet; |
1811 |
control.Paint = PaintSet.Fill; |
1812 |
} |
1813 |
} |
1814 |
break; |
1815 |
|
1816 |
case ControlType.RectCloud: |
1817 |
{ |
1818 |
var control = currentControl as RectCloudControl; |
1819 |
if (control != null) |
1820 |
{ |
1821 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1822 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1823 |
control.Paint = ViewerDataModel.Instance.paintSet; |
1824 |
} |
1825 |
} |
1826 |
break; |
1827 |
|
1828 |
case ControlType.SingleLine: |
1829 |
case ControlType.CancelLine: |
1830 |
case ControlType.ArrowLine: |
1831 |
case ControlType.TwinLine: |
1832 |
case ControlType.DimLine: |
1833 |
{ |
1834 |
var control = currentControl as LineControl; |
1835 |
if (control != null) |
1836 |
{ |
1837 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1838 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1839 |
} |
1840 |
} |
1841 |
break; |
1842 |
|
1843 |
case ControlType.ArcLine: |
1844 |
{ |
1845 |
var control = currentControl as ArcControl; |
1846 |
if (control != null) |
1847 |
{ |
1848 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1849 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1850 |
} |
1851 |
} |
1852 |
break; |
1853 |
|
1854 |
case ControlType.ArcArrow: |
1855 |
{ |
1856 |
var control = currentControl as ArrowArcControl; |
1857 |
if (control != null) |
1858 |
{ |
1859 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1860 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1861 |
} |
1862 |
} |
1863 |
break; |
1864 |
|
1865 |
case ControlType.ArrowMultiLine: |
1866 |
{ |
1867 |
var control = currentControl as ArrowControl_Multi; |
1868 |
if (control != null) |
1869 |
{ |
1870 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1871 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1872 |
} |
1873 |
} |
1874 |
break; |
1875 |
|
1876 |
case ControlType.Circle: |
1877 |
{ |
1878 |
var control = currentControl as CircleControl; |
1879 |
|
1880 |
if (control != null) |
1881 |
{ |
1882 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1883 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1884 |
control.Paint = ViewerDataModel.Instance.paintSet; |
1885 |
} |
1886 |
} |
1887 |
break; |
1888 |
|
1889 |
case ControlType.PolygonCloud: |
1890 |
{ |
1891 |
var control = currentControl as CloudControl; |
1892 |
if (control != null) |
1893 |
{ |
1894 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1895 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1896 |
control.Paint = ViewerDataModel.Instance.paintSet; |
1897 |
} |
1898 |
} |
1899 |
break; |
1900 |
|
1901 |
case ControlType.Triangle: |
1902 |
{ |
1903 |
var control = currentControl as TriControl; |
1904 |
if (control != null) |
1905 |
{ |
1906 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1907 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1908 |
control.Paint = ViewerDataModel.Instance.paintSet; |
1909 |
} |
1910 |
} |
1911 |
break; |
1912 |
|
1913 |
case ControlType.ImgControl: |
1914 |
{ |
1915 |
var control = currentControl as ImgControl; |
1916 |
if (control != null) |
1917 |
{ |
1918 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1919 |
} |
1920 |
} |
1921 |
break; |
1922 |
|
1923 |
case ControlType.Date: |
1924 |
{ |
1925 |
var control = currentControl as DateControl; |
1926 |
if (control != null) |
1927 |
{ |
1928 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1929 |
} |
1930 |
} |
1931 |
break; |
1932 |
|
1933 |
case ControlType.ArrowTextControl: |
1934 |
case ControlType.ArrowTransTextControl: |
1935 |
case ControlType.ArrowTextBorderControl: |
1936 |
case ControlType.ArrowTransTextBorderControl: |
1937 |
case ControlType.ArrowTextCloudControl: |
1938 |
case ControlType.ArrowTransTextCloudControl: |
1939 |
{ |
1940 |
var control = currentControl as ArrowTextControl; |
1941 |
if (control != null) |
1942 |
{ |
1943 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1944 |
} |
1945 |
} |
1946 |
break; |
1947 |
|
1948 |
case ControlType.PolygonControl: |
1949 |
case ControlType.ChainLine: |
1950 |
{ |
1951 |
var control = currentControl as PolygonControl; |
1952 |
if (control != null) |
1953 |
{ |
1954 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1955 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
1956 |
control.Paint = ViewerDataModel.Instance.paintSet; |
1957 |
} |
1958 |
} |
1959 |
break; |
1960 |
|
1961 |
case ControlType.Sign: |
1962 |
{ |
1963 |
var control = currentControl as SignControl; |
1964 |
if (control != null) |
1965 |
{ |
1966 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1967 |
} |
1968 |
} |
1969 |
break; |
1970 |
|
1971 |
case ControlType.Symbol: |
1972 |
{ |
1973 |
var control = currentControl as SymControl; |
1974 |
if (control != null) |
1975 |
{ |
1976 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1977 |
} |
1978 |
} |
1979 |
break; |
1980 |
|
1981 |
case ControlType.Stamp: |
1982 |
{ |
1983 |
var control = currentControl as SymControlN; |
1984 |
if (control != null) |
1985 |
{ |
1986 |
if (control.STAMP != null) |
1987 |
{ |
1988 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
1989 |
} |
1990 |
else |
1991 |
{ |
1992 |
currentControl = null; |
1993 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
1994 |
DialogMessage_Alert("Approved Stamp 가 등록되어 있지 않습니다. \n관리자에게 문의하세요.", "안내"); |
1995 |
} |
1996 |
} |
1997 |
} |
1998 |
break; |
1999 |
|
2000 |
case ControlType.Rectangle: |
2001 |
case ControlType.Mark: |
2002 |
{ |
2003 |
var control = currentControl as RectangleControl; |
2004 |
if (control != null) |
2005 |
{ |
2006 |
//control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift); |
2007 |
if (control.ControlType == ControlType.Mark) control.Paint = PaintSet.Fill; |
2008 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
2009 |
} |
2010 |
} |
2011 |
break; |
2012 |
|
2013 |
case ControlType.PenControl: |
2014 |
{ |
2015 |
stroke.StylusPoints.Add(new StylusPoint(currentCanvasDrawingMouseMovePoint.X, currentCanvasDrawingMouseMovePoint.Y)); |
2016 |
//inkBoard.Strokes.Add(stroke); |
2017 |
} |
2018 |
break; |
2019 |
|
2020 |
default: |
2021 |
break; |
2022 |
} |
2023 |
|
2024 |
#endregion // 각 컨트롤의 특별한 기능을 제어한다. |
2025 |
|
2026 |
if (ViewerDataModel.Instance.MarkupAngleVisibility == Visibility.Visible) |
2027 |
{ |
2028 |
ViewerDataModel.Instance.MarkupAngle = currentControl.CommentAngle; |
2029 |
} |
2030 |
} |
2031 |
} |
2032 |
else if (mouseHandlingMode == MouseHandlingMode.Drawing && e.LeftButton == MouseButtonState.Pressed) |
2033 |
{ |
2034 |
Point currentCanvasDrawingMouseMovePoint = e.GetPosition(drawingRotateCanvas); |
2035 |
Point currentCanvasZoomPanningMouseMovePoint = e.GetPosition(zoomAndPanCanvas); |
2036 |
SetCursor(); |
2037 |
if (currentControl == null) |
2038 |
{ |
2039 |
switch (controlType) |
2040 |
{ |
2041 |
case ControlType.PenControl: |
2042 |
{ |
2043 |
if (inkBoard.Tag.ToString() == "Ink") |
2044 |
{ |
2045 |
stroke.StylusPoints.Add(new StylusPoint(currentCanvasDrawingMouseMovePoint.X, currentCanvasDrawingMouseMovePoint.Y)); |
2046 |
} |
2047 |
else if (inkBoard.Tag.ToString() == "EraseByPoint") |
2048 |
{ |
2049 |
RemovePointStroke(currentCanvasDrawingMouseMovePoint); |
2050 |
} |
2051 |
else if (inkBoard.Tag.ToString() == "EraseByStroke") |
2052 |
{ |
2053 |
RemoveLineStroke(currentCanvasDrawingMouseMovePoint); |
2054 |
} |
2055 |
|
2056 |
//inkBoard.Strokes.Add(stroke); |
2057 |
} |
2058 |
break; |
2059 |
} |
2060 |
return; |
2061 |
} |
2062 |
} |
2063 |
else if (((e.LeftButton == MouseButtonState.Pressed) && mouseHandlingMode == MouseHandlingMode.Selecting) || |
2064 |
((e.LeftButton == MouseButtonState.Pressed) && mouseHandlingMode == MouseHandlingMode.Capture) || |
2065 |
((e.LeftButton == MouseButtonState.Pressed) && mouseHandlingMode == MouseHandlingMode.DragZoom)) |
2066 |
{ |
2067 |
Point curMouseDownPoint = e.GetPosition(drawingRotateCanvas); |
2068 |
|
2069 |
if (isDraggingSelectionRect) |
2070 |
{ |
2071 |
UpdateDragSelectionRect(CanvasDrawingMouseDownPoint, curMouseDownPoint); |
2072 |
e.Handled = true; |
2073 |
} |
2074 |
else if (isLeftMouseButtonDownOnWindow) |
2075 |
{ |
2076 |
var dragDelta = curMouseDownPoint - CanvasDrawingMouseDownPoint; |
2077 |
double dragDistance = Math.Abs(dragDelta.Length); |
2078 |
|
2079 |
if (dragDistance > DragThreshold) |
2080 |
{ |
2081 |
isDraggingSelectionRect = true; |
2082 |
InitDragSelectionRect(CanvasDrawingMouseDownPoint, curMouseDownPoint); |
2083 |
} |
2084 |
|
2085 |
e.Handled = true; |
2086 |
} |
2087 |
|
2088 |
if (CanvasDrawingMouseDownPoint == curMouseDownPoint) |
2089 |
{ |
2090 |
} |
2091 |
else |
2092 |
{ |
2093 |
e.Handled = true; |
2094 |
} |
2095 |
} |
2096 |
/* |
2097 |
else if ((e.LeftButton == MouseButtonState.Pressed) && mouseHandlingMode == MouseHandlingMode.DragSymbol) |
2098 |
{ //symbol |
2099 |
if(_dragdropWindow != null) |
2100 |
{ |
2101 |
Win32Point w32Mouse = new Win32Point(); |
2102 |
GetCursorPos(ref w32Mouse); |
2103 |
|
2104 |
this._dragdropWindow.Left = w32Mouse.X - (symbol_img.Width / 2); |
2105 |
this._dragdropWindow.Top = w32Mouse.Y - (symbol_img.Height / 2); |
2106 |
} |
2107 |
} |
2108 |
*/ |
2109 |
else if ((e.LeftButton == MouseButtonState.Released) && (e.MiddleButton == MouseButtonState.Released) && |
2110 |
(e.RightButton == MouseButtonState.Released) && ViewerDataModel.Instance.MarkupControls_USER.Count > 0) |
2111 |
{ |
2112 |
var control = ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.IsMouseEnter).FirstOrDefault(); |
2113 |
if (control != null) |
2114 |
{ |
2115 |
this.cursor = Cursors.Hand; |
2116 |
SetCursor(); |
2117 |
} |
2118 |
else |
2119 |
{ |
2120 |
if (this.Cursor != Cursors.None) |
2121 |
{ |
2122 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
2123 |
SetCursor(); |
2124 |
} |
2125 |
} |
2126 |
} |
2127 |
else |
2128 |
{ |
2129 |
} |
2130 |
} |
2131 |
|
2132 |
private void zoomAndPanControl2_MouseMove(object sender, MouseEventArgs e) |
2133 |
{ |
2134 |
if ((e.MiddleButton == MouseButtonState.Pressed) || (e.RightButton == MouseButtonState.Pressed)) |
2135 |
{ |
2136 |
SetCursor(); |
2137 |
Point currentCanvasDrawingMouseMovePoint = e.GetPosition(drawingRotateCanvas2); |
2138 |
Point currentCanvasZoomPanningMouseMovePoint = e.GetPosition(zoomAndPanCanvas2); |
2139 |
|
2140 |
Vector dragOffset = currentCanvasZoomPanningMouseMovePoint - canvasZoommovingMouseDownPoint; |
2141 |
|
2142 |
ViewerDataModel.Instance.Sync_ContentOffsetX -= dragOffset.X; |
2143 |
ViewerDataModel.Instance.Sync_ContentOffsetY -= dragOffset.Y; |
2144 |
|
2145 |
if (Sync.IsChecked) |
2146 |
{ |
2147 |
zoomAndPanControl.ContentOffsetX = ViewerDataModel.Instance.Sync_ContentOffsetX; |
2148 |
zoomAndPanControl.ContentOffsetY = ViewerDataModel.Instance.Sync_ContentOffsetY; |
2149 |
} |
2150 |
} |
2151 |
} |
2152 |
|
2153 |
private List<CommentUserInfo> hitList = new List<CommentUserInfo>(); |
2154 |
|
2155 |
private EllipseGeometry hitArea = new EllipseGeometry(); |
2156 |
|
2157 |
private void zoomAndPanControl_MouseUp(object sender, MouseButtonEventArgs e) |
2158 |
{ |
2159 |
IsDrawing = false; |
2160 |
|
2161 |
if (mouseHandlingMode != MouseHandlingMode.None) |
2162 |
{ |
2163 |
if (mouseHandlingMode == MouseHandlingMode.Drawing) |
2164 |
{ |
2165 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
2166 |
|
2167 |
SetCursor(); |
2168 |
|
2169 |
switch (controlType) |
2170 |
{ |
2171 |
case ControlType.None: |
2172 |
break; |
2173 |
|
2174 |
case ControlType.Rectangle: |
2175 |
{ |
2176 |
} |
2177 |
break; |
2178 |
|
2179 |
case ControlType.PenControl: |
2180 |
{ |
2181 |
} |
2182 |
break; |
2183 |
|
2184 |
default: |
2185 |
break; |
2186 |
} |
2187 |
} |
2188 |
else if (mouseHandlingMode == MouseHandlingMode.Selecting && e.ChangedButton == MouseButton.Left || mouseHandlingMode == MouseHandlingMode.Capture && e.ChangedButton == MouseButton.Left || mouseHandlingMode == MouseHandlingMode.DragZoom && e.ChangedButton == MouseButton.Left) |
2189 |
{ |
2190 |
if (isLeftMouseButtonDownOnWindow) |
2191 |
{ |
2192 |
bool wasDragSelectionApplied = false; |
2193 |
|
2194 |
if (isDraggingSelectionRect) |
2195 |
{ |
2196 |
if (mouseHandlingMode == MouseHandlingMode.Capture && controlType == ControlType.ImgControl) |
2197 |
{ |
2198 |
dragCaptureBorder.Visibility = Visibility.Collapsed; |
2199 |
mouseHandlingMode = MouseHandlingMode.None; |
2200 |
Point endPoint = e.GetPosition(zoomAndPanCanvas); |
2201 |
symbolselectindex = symbolPanel_Instance.RadTab.SelectedIndex; |
2202 |
Set_Symbol_Capture(endPoint); |
2203 |
ViewerDataModel.Instance.ViewVisible = Visibility.Collapsed; |
2204 |
ViewerDataModel.Instance.ViewVisible = Visibility.Visible; |
2205 |
ViewerDataModel.Instance.Capture_Opacity = 0; |
2206 |
} |
2207 |
else if (mouseHandlingMode == MouseHandlingMode.Capture) |
2208 |
{ |
2209 |
dragCaptureBorder.Visibility = Visibility.Collapsed; |
2210 |
mouseHandlingMode = MouseHandlingMode.None; |
2211 |
Set_Capture(); |
2212 |
|
2213 |
ViewerDataModel.Instance.ViewVisible = Visibility.Collapsed; |
2214 |
ViewerDataModel.Instance.ViewVisible = Visibility.Visible; |
2215 |
ViewerDataModel.Instance.Capture_Opacity = 0; |
2216 |
} |
2217 |
else if (mouseHandlingMode == MouseHandlingMode.Selecting) |
2218 |
{ |
2219 |
ApplyDragSelectionRect(); |
2220 |
} |
2221 |
else |
2222 |
{ |
2223 |
double x = Canvas.GetLeft(dragZoomBorder); |
2224 |
double y = Canvas.GetTop(dragZoomBorder); |
2225 |
double width = dragZoomBorder.Width; |
2226 |
double height = dragZoomBorder.Height; |
2227 |
Rect dragRect = new Rect(x, y, width, height); |
2228 |
|
2229 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.zoomAndPanControl.ZoomTo(dragRect); |
2230 |
|
2231 |
dragZoomBorder.Visibility = Visibility.Collapsed; |
2232 |
} |
2233 |
|
2234 |
isDraggingSelectionRect = false; |
2235 |
e.Handled = true; |
2236 |
wasDragSelectionApplied = true; |
2237 |
} |
2238 |
|
2239 |
if (isLeftMouseButtonDownOnWindow) |
2240 |
{ |
2241 |
isLeftMouseButtonDownOnWindow = false; |
2242 |
this.ReleaseMouseCapture(); |
2243 |
e.Handled = true; |
2244 |
} |
2245 |
|
2246 |
if (!wasDragSelectionApplied) |
2247 |
{ |
2248 |
init(); |
2249 |
} |
2250 |
} |
2251 |
} |
2252 |
else if (e.RightButton == MouseButtonState.Pressed) |
2253 |
{ |
2254 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
2255 |
SetCursor(); |
2256 |
} |
2257 |
|
2258 |
zoomAndPanControl.ReleaseMouseCapture(); |
2259 |
|
2260 |
e.Handled = true; |
2261 |
} |
2262 |
else |
2263 |
{ |
2264 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
2265 |
SetCursor(); |
2266 |
} |
2267 |
|
2268 |
///mouseButtonDown = MouseButton.Left; |
2269 |
//controlType = ControlType.SingleLine; |
2270 |
} |
2271 |
|
2272 |
public void Set_Symbol_Capture(Point endPoint) |
2273 |
{ |
2274 |
double x = CanvasDrawingMouseDownPoint.X; |
2275 |
double y = CanvasDrawingMouseDownPoint.Y; |
2276 |
if (x > endPoint.X) |
2277 |
{ |
2278 |
x = endPoint.X; |
2279 |
y = endPoint.Y; |
2280 |
} |
2281 |
|
2282 |
double width = dragCaptureBorder.Width; |
2283 |
double height = dragCaptureBorder.Height; |
2284 |
|
2285 |
canvasImage = ConverterBitmapImage(zoomAndPanCanvas); |
2286 |
|
2287 |
if (x < 0) |
2288 |
{ |
2289 |
width += x; |
2290 |
x = 0; |
2291 |
} |
2292 |
if (y < 0) |
2293 |
{ |
2294 |
height += y; |
2295 |
y = 0; |
2296 |
|
2297 |
width = (int)canvasImage.PixelWidth - x; |
2298 |
} |
2299 |
if (x + width > canvasImage.PixelWidth) |
2300 |
{ |
2301 |
width = (int)canvasImage.PixelWidth - x; |
2302 |
} |
2303 |
if (y + height > canvasImage.PixelHeight) |
2304 |
{ |
2305 |
height = (int)canvasImage.PixelHeight - y; |
2306 |
} |
2307 |
var rect = new Int32Rect((int)x, (int)y, (int)width, (int)height); |
2308 |
|
2309 |
string uri = this.GetImageURL(_ViewInfo.DocumentItemID, Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber); |
2310 |
var defaultBitmapImage = new BitmapImage(); |
2311 |
defaultBitmapImage.BeginInit(); |
2312 |
defaultBitmapImage.CreateOptions = BitmapCreateOptions.IgnoreImageCache; |
2313 |
defaultBitmapImage.CacheOption = BitmapCacheOption.OnLoad; |
2314 |
defaultBitmapImage.UriSource = new Uri(uri); |
2315 |
defaultBitmapImage.EndInit(); |
2316 |
|
2317 |
//GC.Collect(); |
2318 |
|
2319 |
if (defaultBitmapImage.IsDownloading) |
2320 |
{ |
2321 |
defaultBitmapImage.DownloadCompleted += (ex, arg) => |
2322 |
{ |
2323 |
defaultBitmapImage.Freeze(); |
2324 |
//GC.Collect(); |
2325 |
BitmapSource bs = new CroppedBitmap(defaultBitmapImage, rect); |
2326 |
Save_Symbol_Capture(bs, (int)x, (int)y, (int)width, (int)height); |
2327 |
}; |
2328 |
} |
2329 |
} |
2330 |
|
2331 |
private void zoomAndPanControl2_MouseUp(object sender, MouseButtonEventArgs e) |
2332 |
{ |
2333 |
///mouseButtonDown = MouseButton.Left; |
2334 |
} |
2335 |
|
2336 |
private void zoomAndPanControl_MouseLeave(object sender, MouseEventArgs e) |
2337 |
{ |
2338 |
///mouseButtonDown = MouseButton.Left; |
2339 |
//this.cursor = new Cursor(App.DefaultArrowCursorStream); |
2340 |
} |
2341 |
|
2342 |
private void zoomAndPanControl_MouseDoubleClick(object sender, MouseButtonEventArgs e) |
2343 |
{ |
2344 |
} |
2345 |
|
2346 |
/// <summary> |
2347 |
/// select items by dragging |
2348 |
/// </summary> |
2349 |
private void ApplyDragSelectionRect() |
2350 |
{ |
2351 |
dragSelectionBorder.Visibility = Visibility.Collapsed; |
2352 |
|
2353 |
double x = Canvas.GetLeft(dragSelectionBorder); |
2354 |
double y = Canvas.GetTop(dragSelectionBorder); |
2355 |
double width = dragSelectionBorder.Width; |
2356 |
double height = dragSelectionBorder.Height; |
2357 |
Boolean Flag = false; |
2358 |
List<MarkupToPDF.Common.CommentUserInfo> adornerSet = new List<MarkupToPDF.Common.CommentUserInfo>(); |
2359 |
var Items = ViewerDataModel.Instance.MarkupControls_USER.Where(d => d.Visibility != Visibility.Hidden).ToList(); |
2360 |
|
2361 |
Rect dragRect = new Rect(x, y, width, height); |
2362 |
///dragRect.Inflate(width / 10, height / 10); |
2363 |
|
2364 |
foreach (var item in Items) |
2365 |
{ |
2366 |
Flag = SelectionSet.Instance.SelectControl(item, dragRect); |
2367 |
|
2368 |
if (Flag) |
2369 |
{ |
2370 |
adornerSet.Add(item); |
2371 |
ViewerDataModel.Instance.MarkupControls_USER.Remove(item); |
2372 |
Control_Style(item); |
2373 |
} |
2374 |
} |
2375 |
if (adornerSet.Count > 0) |
2376 |
{ |
2377 |
Controls.AdornerFinal final = new Controls.AdornerFinal(adornerSet); |
2378 |
SelectLayer.Children.Add(final); |
2379 |
} |
2380 |
} |
2381 |
|
2382 |
private void InitDragSelectionRect(Point pt1, Point pt2) |
2383 |
{ |
2384 |
//캡쳐 중 |
2385 |
if (mouseHandlingMode == MouseHandlingMode.Capture) |
2386 |
{ |
2387 |
dragCaptureBorder.Visibility = Visibility.Visible; |
2388 |
} |
2389 |
//선택 중 |
2390 |
else if (mouseHandlingMode == MouseHandlingMode.Selecting) |
2391 |
{ |
2392 |
dragSelectionBorder.Visibility = Visibility.Visible; |
2393 |
} |
2394 |
else |
2395 |
{ |
2396 |
dragZoomBorder.Visibility = Visibility.Visible; |
2397 |
} |
2398 |
UpdateDragSelectionRect(pt1, pt2); |
2399 |
} |
2400 |
|
2401 |
/// <summary> |
2402 |
/// Update the position and size of the rectangle used for drag selection. |
2403 |
/// </summary> |
2404 |
private void UpdateDragSelectionRect(Point pt1, Point pt2) |
2405 |
{ |
2406 |
double x, y, width, height; |
2407 |
|
2408 |
// |
2409 |
// Determine x,y,width and height of the rect inverting the points if necessary. |
2410 |
// |
2411 |
|
2412 |
if (pt2.X < pt1.X) |
2413 |
{ |
2414 |
x = pt2.X; |
2415 |
width = pt1.X - pt2.X; |
2416 |
} |
2417 |
else |
2418 |
{ |
2419 |
x = pt1.X; |
2420 |
width = pt2.X - pt1.X; |
2421 |
} |
2422 |
|
2423 |
if (pt2.Y < pt1.Y) |
2424 |
{ |
2425 |
y = pt2.Y; |
2426 |
height = pt1.Y - pt2.Y; |
2427 |
} |
2428 |
else |
2429 |
{ |
2430 |
y = pt1.Y; |
2431 |
height = pt2.Y - pt1.Y; |
2432 |
} |
2433 |
|
2434 |
// |
2435 |
// Update the coordinates of the rectangle used for drag selection. |
2436 |
// |
2437 |
//캡쳐 중 |
2438 |
if (mouseHandlingMode == MouseHandlingMode.Capture) |
2439 |
{ |
2440 |
Canvas.SetLeft(dragCaptureBorder, x); |
2441 |
Canvas.SetTop(dragCaptureBorder, y); |
2442 |
dragCaptureBorder.Width = width; |
2443 |
dragCaptureBorder.Height = height; |
2444 |
} |
2445 |
//선택 중 |
2446 |
else if (mouseHandlingMode == MouseHandlingMode.Selecting) |
2447 |
{ |
2448 |
Canvas.SetLeft(dragSelectionBorder, x); |
2449 |
Canvas.SetTop(dragSelectionBorder, y); |
2450 |
dragSelectionBorder.Width = width; |
2451 |
dragSelectionBorder.Height = height; |
2452 |
} |
2453 |
else |
2454 |
{ |
2455 |
Canvas.SetLeft(dragZoomBorder, x); |
2456 |
Canvas.SetTop(dragZoomBorder, y); |
2457 |
dragZoomBorder.Width = width; |
2458 |
dragZoomBorder.Height = height; |
2459 |
} |
2460 |
} |
2461 |
|
2462 |
private void drawingPannelRotate(double angle) |
2463 |
{ |
2464 |
Logger.sendCheckLog("pageNavigator_PageChanging_drawingPannelRotate Setting", 1); |
2465 |
rotate.Angle = angle; |
2466 |
var rotationNum = Math.Abs((rotate.Angle / 90)); |
2467 |
|
2468 |
if (angle == 90 || angle == 270) |
2469 |
{ |
2470 |
double emptySize = zoomAndPanCanvas.Width; |
2471 |
zoomAndPanCanvas.Width = zoomAndPanCanvas.Height; |
2472 |
zoomAndPanCanvas.Height = emptySize; |
2473 |
} |
2474 |
if (angle == 0) |
2475 |
{ |
2476 |
translate.X = 0; |
2477 |
translate.Y = 0; |
2478 |
} |
2479 |
else if (angle == 90) |
2480 |
{ |
2481 |
translate.X = zoomAndPanCanvas.Width; |
2482 |
translate.Y = 0; |
2483 |
} |
2484 |
else if (angle == 180) |
2485 |
{ |
2486 |
translate.X = zoomAndPanCanvas.Width; |
2487 |
translate.Y = zoomAndPanCanvas.Height; |
2488 |
} |
2489 |
else |
2490 |
{ |
2491 |
translate.X = 0; |
2492 |
translate.Y = zoomAndPanCanvas.Height; |
2493 |
} |
2494 |
|
2495 |
zoomAndPanControl.RotationAngle = rotate.Angle; |
2496 |
|
2497 |
if (!testPanel2.IsHidden) |
2498 |
{ |
2499 |
zoomAndPanControl2.RotationAngle = rotate.Angle; |
2500 |
zoomAndPanCanvas2.Width = zoomAndPanCanvas.Width; |
2501 |
zoomAndPanCanvas2.Height = zoomAndPanCanvas.Height; |
2502 |
} |
2503 |
|
2504 |
ViewerDataModel.Instance.ContentWidth = zoomAndPanCanvas.Width; |
2505 |
ViewerDataModel.Instance.ContentHeight = zoomAndPanCanvas.Height; |
2506 |
ViewerDataModel.Instance.AngleOffsetX = translate.X; |
2507 |
ViewerDataModel.Instance.AngleOffsetY = translate.Y; |
2508 |
ViewerDataModel.Instance.MarkupAngle = rotate.Angle; |
2509 |
} |
2510 |
|
2511 |
private void syncPannelRotate(double angle) |
2512 |
{ |
2513 |
//Logger.sendCheckLog("pageNavigator_PageChanging_drawingPannelRotate Setting", 1); |
2514 |
rotate.Angle = angle; |
2515 |
var rotationNum = Math.Abs((rotate.Angle / 90)); |
2516 |
|
2517 |
if (angle == 90 || angle == 270) |
2518 |
{ |
2519 |
double emptySize = zoomAndPanCanvas2.Width; |
2520 |
zoomAndPanCanvas2.Width = zoomAndPanCanvas2.Height; |
2521 |
zoomAndPanCanvas2.Height = emptySize; |
2522 |
} |
2523 |
if (angle == 0) |
2524 |
{ |
2525 |
translate2.X = 0; |
2526 |
translate2.Y = 0; |
2527 |
} |
2528 |
else if (angle == 90) |
2529 |
{ |
2530 |
translate2.X = zoomAndPanCanvas2.Width; |
2531 |
translate2.Y = 0; |
2532 |
} |
2533 |
else if (angle == 180) |
2534 |
{ |
2535 |
translate2.X = zoomAndPanCanvas2.Width; |
2536 |
translate2.Y = zoomAndPanCanvas2.Height; |
2537 |
} |
2538 |
else |
2539 |
{ |
2540 |
translate2.X = 0; |
2541 |
translate2.Y = zoomAndPanCanvas2.Height; |
2542 |
} |
2543 |
|
2544 |
zoomAndPanControl2.RotationAngle = rotate.Angle; |
2545 |
} |
2546 |
|
2547 |
public void PlaceImageSymbol(string id, long group_id, int SelectedIndex, Point canvasZoomPanningMouseDownPoint) |
2548 |
{ |
2549 |
string Data_ = ""; |
2550 |
|
2551 |
try |
2552 |
{ |
2553 |
//Logger.sendReqLog("GetSymbolImageURL: ", id + "," + SelectedIndex, 1); |
2554 |
Data_ = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetSymbolImageURL(id, SelectedIndex); |
2555 |
if (Data_ != null || Data_ != "") |
2556 |
{ |
2557 |
//Logger.sendResLog("GetSymbolImageURL", "TRUE", 1); |
2558 |
} |
2559 |
else |
2560 |
{ |
2561 |
//Logger.sendResLog("GetSymbolImageURL", "FALSE", 1); |
2562 |
} |
2563 |
|
2564 |
//MARKUP_DATA_GROUP mARKUP_DATA_GROUP = new MARKUP_DATA_GROUP |
2565 |
//{ |
2566 |
// SYMBOL_ID = id,//InnerItem.Symbol_ID |
2567 |
// STATE = 0, |
2568 |
//}; |
2569 |
if (Data_ != null) |
2570 |
{ |
2571 |
Image img = new Image(); |
2572 |
//img.Source = new System.Windows.Media.Imaging.BitmapImage(new Uri(Data_)); |
2573 |
if (Data_.Contains(".svg")) |
2574 |
{ |
2575 |
byte[] imageData = null; |
2576 |
DrawingImage image = null; |
2577 |
using (System.Net.WebClient web = new System.Net.WebClient()) |
2578 |
{ |
2579 |
imageData = web.DownloadData(new Uri(Data_)); |
2580 |
System.IO.Stream stream = new System.IO.MemoryStream(imageData); |
2581 |
image = SvgReader.Load(stream); |
2582 |
} |
2583 |
img.Source = image; |
2584 |
} |
2585 |
else |
2586 |
{ |
2587 |
img.Source = new BitmapImage(new Uri(Data_)); |
2588 |
} |
2589 |
|
2590 |
var currentControl = new MarkupToPDF.Controls.Etc.ImgControl |
2591 |
{ |
2592 |
PointSet = new List<Point>(), |
2593 |
FilePath = Data_, |
2594 |
ImageData = img.Source, |
2595 |
StartPoint = canvasZoomPanningMouseDownPoint, |
2596 |
EndPoint = new Point(canvasZoomPanningMouseDownPoint.X + img.Source.Width, |
2597 |
canvasZoomPanningMouseDownPoint.Y + img.Source.Height), |
2598 |
TopRightPoint = new Point(canvasZoomPanningMouseDownPoint.X + img.Source.Width, |
2599 |
canvasZoomPanningMouseDownPoint.Y), |
2600 |
LeftBottomPoint = new Point(canvasZoomPanningMouseDownPoint.X, |
2601 |
canvasZoomPanningMouseDownPoint.Y + img.Source.Height) |
2602 |
}; |
2603 |
|
2604 |
currentControl.PointSet = new List<Point> |
2605 |
{ |
2606 |
currentControl.StartPoint, |
2607 |
currentControl.LeftBottomPoint, |
2608 |
currentControl.EndPoint, |
2609 |
currentControl.TopRightPoint, |
2610 |
}; |
2611 |
Multi_Undo_data multi_Undo_Data = new Multi_Undo_data(); |
2612 |
UndoData = new Undo_data() |
2613 |
{ |
2614 |
IsUndo = false, |
2615 |
Event = Event_Type.Create, |
2616 |
EventTime = DateTime.Now, |
2617 |
Markup_List = new List<Multi_Undo_data>() |
2618 |
}; |
2619 |
ViewerDataModel.Instance.UndoDataList.Where(data1 => data1.IsUndo == true).ToList().ForEach(i => |
2620 |
{ |
2621 |
ViewerDataModel.Instance.UndoDataList.Remove(i); |
2622 |
}); |
2623 |
|
2624 |
//multi_Undo_Data = dzMainMenu.Control_Style(currentControl as MarkupToPDF.Common.CommentUserInfo); |
2625 |
multi_Undo_Data = Control_Style(currentControl as MarkupToPDF.Common.CommentUserInfo); |
2626 |
UndoData.Markup_List.Add(multi_Undo_Data); |
2627 |
ViewerDataModel.Instance.UndoDataList.Add(UndoData); |
2628 |
|
2629 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl as MarkupToPDF.Common.CommentUserInfo); |
2630 |
currentControl.CommentID = Commons.shortGuid(); |
2631 |
currentControl.SymbolID = id; |
2632 |
currentControl.GroupID = group_id; |
2633 |
currentControl.ApplyTemplate(); |
2634 |
currentControl.SetImage(); |
2635 |
|
2636 |
ViewerDataModel.Instance.MarkupControls_USER.Remove(currentControl as MarkupToPDF.Common.CommentUserInfo); |
2637 |
Controls.AdornerFinal final = new Controls.AdornerFinal(currentControl as MarkupToPDF.Common.CommentUserInfo); |
2638 |
SelectLayer.Children.Add(final); |
2639 |
} |
2640 |
} |
2641 |
catch (Exception ex) |
2642 |
{ |
2643 |
this.ParentOfType<MainWindow>().dzMainMenu.DialogMessage_Alert(ex.Message, "Error"); |
2644 |
} |
2645 |
} |
2646 |
|
2647 |
private async void zoomAndPanControl_MouseDown(object sender, MouseButtonEventArgs e) |
2648 |
{ |
2649 |
var set_option = this.ParentOfType<MainWindow>().dzTopMenu.Parent.ChildrenOfType<RadNumericUpDown>().Where(item => item.IsKeyboardFocusWithin).FirstOrDefault(); |
2650 |
if (set_option != null && !string.IsNullOrEmpty(set_option.ContentText)) |
2651 |
{ |
2652 |
set_option.Value = double.Parse(set_option.ContentText); |
2653 |
//set_option.Focusable = false; |
2654 |
zoomAndPanControl.Focus(); |
2655 |
} |
2656 |
|
2657 |
ConvertInkControlToPolygon(); |
2658 |
|
2659 |
// 텍스트가 없으면 삭제됨 |
2660 |
var text_item = ViewerDataModel.Instance.MarkupControls_USER.Where(data => |
2661 |
(data as TextControl) != null && (data as TextControl).Text == "" || (data as ArrowTextControl) != null && (data as ArrowTextControl).ArrowText == "").FirstOrDefault(); |
2662 |
|
2663 |
if (text_item != null && (currentControl as ArrowTextControl) == null) |
2664 |
{ |
2665 |
DeleteCommand.Instance.Execute(new[] { text_item }); |
2666 |
//ViewerDataModel.Instance.MarkupControls_USER.Remove(text_item); |
2667 |
} |
2668 |
|
2669 |
/// up to here |
2670 |
|
2671 |
foreach (var item in ViewerDataModel.Instance.MarkupControls_USER) |
2672 |
{ |
2673 |
if (item as ArrowTextControl != null) |
2674 |
{ |
2675 |
(item as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
2676 |
} |
2677 |
else if (item as TextControl != null) |
2678 |
{ |
2679 |
(item as TextControl).Base_TextBox.IsHitTestVisible = false; |
2680 |
} |
2681 |
} |
2682 |
|
2683 |
//if (currentControl != null) |
2684 |
{ |
2685 |
var text_item_ = ViewerDataModel.Instance.MarkupControls_USER.Where(data => (data as TextControl) != null && (data as TextControl).IsEditingMode == true).FirstOrDefault(); |
2686 |
if (text_item_ != null) |
2687 |
{ |
2688 |
(text_item_ as TextControl).Base_TextBlock.Visibility = Visibility.Visible; |
2689 |
(text_item_ as TextControl).Base_TextBox.Visibility = Visibility.Collapsed; |
2690 |
(text_item_ as TextControl).IsEditingMode = false; |
2691 |
currentControl = null; |
2692 |
} |
2693 |
|
2694 |
var Arrowtext_item_ = ViewerDataModel.Instance.MarkupControls_USER.Where(data => (data as ArrowTextControl) != null && (data as ArrowTextControl).IsEditingMode == true).FirstOrDefault(); |
2695 |
if (Arrowtext_item_ != null && ((Arrowtext_item_ as ArrowTextControl).IsNew == false)) |
2696 |
{ |
2697 |
(Arrowtext_item_ as ArrowTextControl).IsEditingMode = false; |
2698 |
(Arrowtext_item_ as ArrowTextControl).Base_TextBox.Focusable = false; |
2699 |
currentControl = null; |
2700 |
} |
2701 |
} |
2702 |
|
2703 |
double Ang = 0; |
2704 |
if (rotate.Angle != 0) |
2705 |
{ |
2706 |
Ang = 360 - rotate.Angle; |
2707 |
} |
2708 |
|
2709 |
if (e.OriginalSource is System.Windows.Controls.Image) |
2710 |
{ |
2711 |
(e.OriginalSource as System.Windows.Controls.Image).Focus(); |
2712 |
} |
2713 |
/* |
2714 |
if (mouseHandlingMode == MouseHandlingMode.DragSymbol && e.LeftButton == MouseButtonState.Pressed) |
2715 |
{ |
2716 |
canvasZoomPanningMouseDownPoint = e.GetPosition(zoomAndPanCanvas); |
2717 |
if(symbol_id != null) |
2718 |
{ |
2719 |
PlaceImageSymbol(symbol_id, symbol_group_id, symbol_SelectedIndex, canvasZoomPanningMouseDownPoint); |
2720 |
} |
2721 |
} |
2722 |
|
2723 |
if (mouseHandlingMode == MouseHandlingMode.DragSymbol && e.RightButton == MouseButtonState.Pressed) |
2724 |
{ |
2725 |
if (this._dragdropWindow != null) |
2726 |
{ |
2727 |
this._dragdropWindow.Close(); |
2728 |
this._dragdropWindow = null; |
2729 |
symbol_id = null; |
2730 |
} |
2731 |
} |
2732 |
*/ |
2733 |
|
2734 |
if (e.LeftButton == MouseButtonState.Pressed) |
2735 |
{ |
2736 |
CanvasDrawingMouseDownPoint = e.GetPosition(drawingRotateCanvas); |
2737 |
canvasZoomPanningMouseDownPoint = e.GetPosition(zoomAndPanCanvas); |
2738 |
|
2739 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
2740 |
SetCursor(); |
2741 |
|
2742 |
if (!ViewerDataModel.Instance.IsPressCtrl) |
2743 |
{ |
2744 |
SelectionSet.Instance.UnSelect(this); |
2745 |
} |
2746 |
} |
2747 |
|
2748 |
if (e.MiddleButton == MouseButtonState.Pressed) |
2749 |
{ |
2750 |
canvasZoommovingMouseDownPoint = e.GetPosition(zoomAndPanCanvas); |
2751 |
cursor = Cursors.SizeAll; |
2752 |
SetCursor(); |
2753 |
} |
2754 |
if (e.RightButton == MouseButtonState.Pressed) |
2755 |
{ |
2756 |
canvasZoommovingMouseDownPoint = e.GetPosition(zoomAndPanCanvas); |
2757 |
cursor = Cursors.SizeAll; |
2758 |
SetCursor(); |
2759 |
} |
2760 |
else if (e.XButton1 == MouseButtonState.Pressed) |
2761 |
{ |
2762 |
if (this.pageNavigator.CurrentPage.PageNumber + 1 <= this.pageNavigator.PageCount) |
2763 |
{ |
2764 |
this.pageNavigator.GotoPage(this.pageNavigator.CurrentPage.PageNumber + 1); |
2765 |
} |
2766 |
|
2767 |
//this.pageNavigator.GotoPage(this.pageNavigator._NextPage.PageNumber); |
2768 |
} |
2769 |
else if (e.XButton2 == MouseButtonState.Pressed) |
2770 |
{ |
2771 |
if (this.pageNavigator.CurrentPage.PageNumber > 1) |
2772 |
{ |
2773 |
this.pageNavigator.GotoPage(this.pageNavigator.CurrentPage.PageNumber - 1); |
2774 |
} |
2775 |
} |
2776 |
|
2777 |
bool isArrowTextEdit = false; |
2778 |
|
2779 |
if (currentControl is ArrowTextControl textControl) |
2780 |
{ |
2781 |
if (textControl.IsEditingMode) |
2782 |
isArrowTextEdit = true; |
2783 |
} |
2784 |
|
2785 |
if (e.LeftButton == MouseButtonState.Pressed && mouseHandlingMode != MouseHandlingMode.Drawing && currentControl == null) |
2786 |
{ |
2787 |
if (mouseHandlingMode == MouseHandlingMode.Selecting) |
2788 |
{ |
2789 |
if (SelectLayer.Children.Count == 0) |
2790 |
{ |
2791 |
isLeftMouseButtonDownOnWindow = true; |
2792 |
mouseHandlingMode = MouseHandlingMode.Selecting; |
2793 |
} |
2794 |
|
2795 |
if (controlType == ControlType.None) |
2796 |
{ |
2797 |
isLeftMouseButtonDownOnWindow = true; |
2798 |
} |
2799 |
} |
2800 |
|
2801 |
/// 캡쳐 모드 설정 |
2802 |
if (mouseHandlingMode == MouseHandlingMode.Capture) |
2803 |
{ |
2804 |
dragCaptureBorder.Visibility = Visibility.Visible; |
2805 |
isLeftMouseButtonDownOnWindow = true; |
2806 |
} |
2807 |
|
2808 |
/// 줌 모드 설정 |
2809 |
if (mouseHandlingMode == MouseHandlingMode.DragZoom) |
2810 |
{ |
2811 |
isLeftMouseButtonDownOnWindow = true; |
2812 |
} |
2813 |
|
2814 |
var control = ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.IsMouseEnter).FirstOrDefault(); |
2815 |
|
2816 |
if (control == null) |
2817 |
{ |
2818 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
2819 |
} |
2820 |
else |
2821 |
{ |
2822 |
if (ControlTypeExtansions.LineTypes.Contains(control.ControlType)) |
2823 |
{ |
2824 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
2825 |
} |
2826 |
|
2827 |
AdornerFinal final = null; |
2828 |
|
2829 |
if (!ViewerDataModel.Instance.IsPressCtrl) |
2830 |
{ |
2831 |
/// 기존 selection 해제 |
2832 |
SelectionSet.Instance.UnSelect(this); |
2833 |
|
2834 |
final = new AdornerFinal(control); |
2835 |
|
2836 |
this.Control_Style(control); |
2837 |
|
2838 |
if ((control as IPath) != null) |
2839 |
{ |
2840 |
if ((control as IPath).LineSize != 0) |
2841 |
{ |
2842 |
ViewerDataModel.Instance.LineSize = (control as IPath).LineSize; |
2843 |
} |
2844 |
} |
2845 |
if ((control as IShapeControl) != null) |
2846 |
{ |
2847 |
if ((control as IShapeControl).Paint == PaintSet.Hatch) |
2848 |
{ |
2849 |
ViewerDataModel.Instance.checkHatchShape = true; |
2850 |
} |
2851 |
else if ((control as IShapeControl).Paint == PaintSet.Fill) |
2852 |
{ |
2853 |
ViewerDataModel.Instance.checkFillShape = true; |
2854 |
} |
2855 |
else |
2856 |
{ |
2857 |
ViewerDataModel.Instance.checkHatchShape = false; |
2858 |
ViewerDataModel.Instance.checkFillShape = false; |
2859 |
} |
2860 |
ViewerDataModel.Instance.paintSet = (control as IShapeControl).Paint; |
2861 |
} |
2862 |
|
2863 |
ViewerDataModel.Instance.ControlOpacity = control.Opacity; |
2864 |
|
2865 |
if ((control as TextControl) != null) |
2866 |
{ |
2867 |
ViewerDataModel.Instance.SystemMain.dzTopMenu.SetFont((control as TextControl).TextFamily); |
2868 |
|
2869 |
if (!((control as TextControl).EnableEditing)) |
2870 |
{ |
2871 |
(control as TextControl).EnableEditing = true; |
2872 |
} |
2873 |
if ((control as TextControl).TextStyle == FontStyles.Italic) |
2874 |
{ |
2875 |
ViewerDataModel.Instance.checkTextStyle = true; |
2876 |
} |
2877 |
else |
2878 |
{ |
2879 |
ViewerDataModel.Instance.checkTextStyle = false; |
2880 |
} |
2881 |
if ((control as TextControl).TextWeight == FontWeights.Bold) |
2882 |
{ |
2883 |
ViewerDataModel.Instance.checkTextWeight = true; |
2884 |
} |
2885 |
else |
2886 |
{ |
2887 |
ViewerDataModel.Instance.checkTextWeight = false; |
2888 |
} |
2889 |
if ((control as TextControl).UnderLine == TextDecorations.Underline) |
2890 |
{ |
2891 |
ViewerDataModel.Instance.checkUnderLine = true; |
2892 |
} |
2893 |
else |
2894 |
{ |
2895 |
ViewerDataModel.Instance.checkUnderLine = false; |
2896 |
} |
2897 |
ViewerDataModel.Instance.TextSize = (control as TextControl).TextSize; |
2898 |
ViewerDataModel.Instance.checkHighlight = (control as TextControl).IsHighLight; |
2899 |
} |
2900 |
else if ((control as ArrowTextControl) != null) |
2901 |
{ |
2902 |
ViewerDataModel.Instance.SystemMain.dzTopMenu.SetFont((control as ArrowTextControl).TextFamily); |
2903 |
|
2904 |
if (!((control as ArrowTextControl).EnableEditing)) |
2905 |
{ |
2906 |
(control as ArrowTextControl).EnableEditing = true; |
2907 |
} |
2908 |
if ((control as ArrowTextControl).TextStyle == FontStyles.Italic) |
2909 |
{ |
2910 |
ViewerDataModel.Instance.checkTextStyle = true; |
2911 |
} |
2912 |
else |
2913 |
{ |
2914 |
ViewerDataModel.Instance.checkTextStyle = false; |
2915 |
} |
2916 |
if ((control as ArrowTextControl).TextWeight == FontWeights.Bold) |
2917 |
{ |
2918 |
ViewerDataModel.Instance.checkTextWeight = true; |
2919 |
} |
2920 |
else |
2921 |
{ |
2922 |
ViewerDataModel.Instance.checkTextWeight = false; |
2923 |
} |
2924 |
if ((control as ArrowTextControl).UnderLine == TextDecorations.Underline) |
2925 |
{ |
2926 |
ViewerDataModel.Instance.checkUnderLine = true; |
2927 |
} |
2928 |
else |
2929 |
{ |
2930 |
ViewerDataModel.Instance.checkUnderLine = false; |
2931 |
} |
2932 |
ViewerDataModel.Instance.checkHighlight = (control as ArrowTextControl).isHighLight; |
2933 |
ViewerDataModel.Instance.TextSize = (control as ArrowTextControl).TextSize; |
2934 |
} |
2935 |
else if ((control as RectCloudControl) != null) |
2936 |
{ |
2937 |
ViewerDataModel.Instance.ArcLength = (control as RectCloudControl).ArcLength; |
2938 |
} |
2939 |
else if ((control as CloudControl) != null) |
2940 |
{ |
2941 |
ViewerDataModel.Instance.ArcLength = (control as CloudControl).ArcLength; |
2942 |
} |
2943 |
} |
2944 |
else |
2945 |
{ |
2946 |
List<CommentUserInfo> comment = SelectionSet.Instance.SelectedItems; |
2947 |
SelectionSet.Instance.UnSelect(this); |
2948 |
comment.Add(control); |
2949 |
|
2950 |
Control_Style(control); |
2951 |
|
2952 |
final = new AdornerFinal(comment); |
2953 |
} |
2954 |
|
2955 |
if (final != null) |
2956 |
{ |
2957 |
this.SelectLayer.Children.Add(final); |
2958 |
} |
2959 |
} |
2960 |
} |
2961 |
else if (mouseHandlingMode == MouseHandlingMode.Drawing) |
2962 |
{ |
2963 |
|
2964 |
|
2965 |
init(); |
2966 |
//강인구 추가(우 클릭 일 경우 커서 변경 하지 않음) |
2967 |
if (cursor != Cursors.SizeAll) |
2968 |
{ |
2969 |
cursor = Cursors.Cross; |
2970 |
SetCursor(); |
2971 |
} |
2972 |
bool init_user = false; |
2973 |
foreach (var user in gridViewMarkup.Items) |
2974 |
{ |
2975 |
if ((user as MarkupInfoItem).UserID == App.ViewInfo.UserID) |
2976 |
{ |
2977 |
init_user = true; |
2978 |
} |
2979 |
} |
2980 |
if (init_user && gridViewMarkup.SelectedItems.Where(d => (d as MarkupInfoItem).UserID == App.ViewInfo.UserID).FirstOrDefault() == null && e.LeftButton == MouseButtonState.Pressed) |
2981 |
{ |
2982 |
// 기존의 코멘트가 존재합니다. 사용자 리스트에서 먼저 선택해주세요 |
2983 |
RadWindow.Alert(new DialogParameters |
2984 |
{ |
2985 |
Owner = Application.Current.MainWindow, |
2986 |
Theme = new VisualStudio2013Theme(), |
2987 |
Header = "Info", |
2988 |
Content = "Existing comments already existed. Select from the user list first", |
2989 |
}); |
2990 |
return; |
2991 |
} |
2992 |
else |
2993 |
{ |
2994 |
var item = gridViewMarkup.SelectedItems.Where(d => (d as MarkupInfoItem).UserID == App.ViewInfo.UserID).FirstOrDefault() as MarkupInfoItem; |
2995 |
if (item != null) |
2996 |
{ |
2997 |
App.Custom_ViewInfoId = item.MarkupInfoID; |
2998 |
} |
2999 |
} |
3000 |
|
3001 |
switch (controlType) |
3002 |
{ |
3003 |
case ControlType.Coordinate: |
3004 |
{ |
3005 |
if (e.LeftButton == MouseButtonState.Pressed) |
3006 |
{ |
3007 |
if (currentControl is CoordinateControl) |
3008 |
{ |
3009 |
if (IsGetoutpoint((currentControl as CoordinateControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3010 |
{ |
3011 |
return; |
3012 |
} |
3013 |
|
3014 |
CreateCommand.Instance.Execute(currentControl); |
3015 |
|
3016 |
currentControl = null; |
3017 |
this.cursor = Cursors.Arrow; |
3018 |
} |
3019 |
else |
3020 |
{ |
3021 |
this.ParentOfType<MainWindow>().dzTopMenu._SaveEvent(null, null); |
3022 |
if (ViewerDataModel.Instance.MyMarkupList.Where(d => d.PageNumber == Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber |
3023 |
&& d.Data_Type == Convert.ToInt32(MarkupToPDF.Controls.Common.ControlType.Coordinate)).Count() > 0) |
3024 |
{ |
3025 |
currentControl = null; |
3026 |
this.cursor = Cursors.Arrow; |
3027 |
Common.ViewerDataModel.Instance.SystemMain.DialogMessage_Alert("이미 해당 페이지의 도면 영역을 설정하셨습니다.", "Notice"); |
3028 |
return; |
3029 |
} |
3030 |
else |
3031 |
{ |
3032 |
currentControl = new CoordinateControl |
3033 |
{ |
3034 |
Background = new SolidColorBrush(Colors.Black), |
3035 |
StartPoint = this.CanvasDrawingMouseDownPoint, |
3036 |
ControlType = ControlType.Coordinate |
3037 |
}; |
3038 |
|
3039 |
currentControl.CommentID = Commons.shortGuid(); |
3040 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3041 |
currentControl.IsNew = true; |
3042 |
|
3043 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3044 |
|
3045 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3046 |
} |
3047 |
} |
3048 |
} |
3049 |
} |
3050 |
break; |
3051 |
|
3052 |
case ControlType.InsideWhite: |
3053 |
{ |
3054 |
if (e.LeftButton == MouseButtonState.Pressed) |
3055 |
{ |
3056 |
if (currentControl is InsideWhiteControl) |
3057 |
{ |
3058 |
if (IsGetoutpoint((currentControl as InsideWhiteControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3059 |
{ |
3060 |
return; |
3061 |
} |
3062 |
|
3063 |
CreateCommand.Instance.Execute(currentControl); |
3064 |
|
3065 |
currentControl = null; |
3066 |
this.cursor = Cursors.Arrow; |
3067 |
} |
3068 |
else |
3069 |
{ |
3070 |
currentControl = new InsideWhiteControl |
3071 |
{ |
3072 |
Background = new SolidColorBrush(Colors.Black), |
3073 |
StartPoint = this.CanvasDrawingMouseDownPoint, |
3074 |
ControlType = ControlType.InsideWhite |
3075 |
}; |
3076 |
|
3077 |
currentControl.CommentID = Commons.shortGuid(); |
3078 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3079 |
currentControl.IsNew = true; |
3080 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3081 |
|
3082 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3083 |
} |
3084 |
} |
3085 |
} |
3086 |
break; |
3087 |
|
3088 |
case ControlType.OverlapWhite: |
3089 |
{ |
3090 |
if (e.LeftButton == MouseButtonState.Pressed) |
3091 |
{ |
3092 |
if (currentControl is OverlapWhiteControl) |
3093 |
{ |
3094 |
if (IsGetoutpoint((currentControl as OverlapWhiteControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3095 |
{ |
3096 |
return; |
3097 |
} |
3098 |
|
3099 |
CreateCommand.Instance.Execute(currentControl); |
3100 |
|
3101 |
currentControl = null; |
3102 |
this.cursor = Cursors.Arrow; |
3103 |
} |
3104 |
else |
3105 |
{ |
3106 |
currentControl = new OverlapWhiteControl |
3107 |
{ |
3108 |
Background = new SolidColorBrush(Colors.Black), |
3109 |
StartPoint = this.CanvasDrawingMouseDownPoint, |
3110 |
ControlType = ControlType.OverlapWhite |
3111 |
}; |
3112 |
|
3113 |
currentControl.CommentID = Commons.shortGuid(); |
3114 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3115 |
currentControl.IsNew = true; |
3116 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3117 |
|
3118 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3119 |
} |
3120 |
} |
3121 |
} |
3122 |
break; |
3123 |
|
3124 |
case ControlType.ClipWhite: |
3125 |
{ |
3126 |
if (e.LeftButton == MouseButtonState.Pressed) |
3127 |
{ |
3128 |
if (currentControl is ClipWhiteControl) |
3129 |
{ |
3130 |
if (IsGetoutpoint((currentControl as ClipWhiteControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3131 |
{ |
3132 |
return; |
3133 |
} |
3134 |
|
3135 |
CreateCommand.Instance.Execute(currentControl); |
3136 |
|
3137 |
currentControl = null; |
3138 |
this.cursor = Cursors.Arrow; |
3139 |
} |
3140 |
else |
3141 |
{ |
3142 |
currentControl = new ClipWhiteControl |
3143 |
{ |
3144 |
Background = new SolidColorBrush(Colors.Black), |
3145 |
StartPoint = this.CanvasDrawingMouseDownPoint, |
3146 |
ControlType = ControlType.ClipWhite |
3147 |
}; |
3148 |
|
3149 |
currentControl.CommentID = Commons.shortGuid(); |
3150 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3151 |
currentControl.IsNew = true; |
3152 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3153 |
|
3154 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3155 |
} |
3156 |
} |
3157 |
} |
3158 |
break; |
3159 |
|
3160 |
case ControlType.Rectangle: |
3161 |
{ |
3162 |
if (e.LeftButton == MouseButtonState.Pressed) |
3163 |
{ |
3164 |
if (currentControl is RectangleControl) |
3165 |
{ |
3166 |
//20180906 LJY TEST IsRotationDrawingEnable |
3167 |
if (IsGetoutpoint((currentControl as RectangleControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3168 |
{ |
3169 |
return; |
3170 |
} |
3171 |
|
3172 |
CreateCommand.Instance.Execute(currentControl); |
3173 |
currentControl = null; |
3174 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
3175 |
} |
3176 |
else |
3177 |
{ |
3178 |
currentControl = new RectangleControl |
3179 |
{ |
3180 |
Background = new SolidColorBrush(Colors.Black), |
3181 |
StartPoint = this.CanvasDrawingMouseDownPoint, |
3182 |
ControlType = ControlType.Rectangle |
3183 |
}; |
3184 |
|
3185 |
currentControl.CommentID = Commons.shortGuid(); |
3186 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3187 |
currentControl.IsNew = true; |
3188 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3189 |
|
3190 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3191 |
} |
3192 |
} |
3193 |
} |
3194 |
break; |
3195 |
|
3196 |
case ControlType.RectCloud: |
3197 |
{ |
3198 |
if (e.LeftButton == MouseButtonState.Pressed) |
3199 |
{ |
3200 |
if (currentControl is RectCloudControl) |
3201 |
{ |
3202 |
//20180906 LJY TEST IsRotationDrawingEnable |
3203 |
if (IsGetoutpoint((currentControl as RectCloudControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3204 |
{ |
3205 |
return; |
3206 |
} |
3207 |
|
3208 |
CreateCommand.Instance.Execute(currentControl); |
3209 |
|
3210 |
currentControl = null; |
3211 |
|
3212 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
3213 |
} |
3214 |
else |
3215 |
{ |
3216 |
currentControl = new RectCloudControl |
3217 |
{ |
3218 |
StartPoint = this.CanvasDrawingMouseDownPoint, |
3219 |
ControlType = ControlType.RectCloud, |
3220 |
Background = new SolidColorBrush(Colors.Black) |
3221 |
}; |
3222 |
|
3223 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3224 |
currentControl.CommentID = Commons.shortGuid(); |
3225 |
currentControl.IsNew = true; |
3226 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3227 |
} |
3228 |
} |
3229 |
} |
3230 |
break; |
3231 |
|
3232 |
case ControlType.Circle: |
3233 |
{ |
3234 |
if (e.LeftButton == MouseButtonState.Pressed) |
3235 |
{ |
3236 |
if (currentControl is CircleControl) |
3237 |
{ |
3238 |
//20180906 LJY TEST IsRotationDrawingEnable |
3239 |
if (IsGetoutpoint((currentControl as CircleControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3240 |
{ |
3241 |
return; |
3242 |
} |
3243 |
|
3244 |
CreateCommand.Instance.Execute(currentControl); |
3245 |
|
3246 |
currentControl = null; |
3247 |
} |
3248 |
else |
3249 |
{ |
3250 |
currentControl = new CircleControl |
3251 |
{ |
3252 |
StartPoint = this.CanvasDrawingMouseDownPoint, |
3253 |
LeftBottomPoint = this.CanvasDrawingMouseDownPoint, |
3254 |
Background = new SolidColorBrush(Colors.Black) |
3255 |
}; |
3256 |
|
3257 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3258 |
currentControl.CommentID = Commons.shortGuid(); |
3259 |
currentControl.IsNew = true; |
3260 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3261 |
} |
3262 |
} |
3263 |
} |
3264 |
break; |
3265 |
|
3266 |
case ControlType.Triangle: |
3267 |
{ |
3268 |
if (e.LeftButton == MouseButtonState.Pressed) |
3269 |
{ |
3270 |
if (currentControl is TriControl) |
3271 |
{ |
3272 |
var content = currentControl as TriControl; |
3273 |
if (content.MidPoint == new Point(0, 0)) |
3274 |
{ |
3275 |
content.MidPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y); |
3276 |
} |
3277 |
else |
3278 |
{ |
3279 |
//20180906 LJY TEST IsRotationDrawingEnable |
3280 |
if (IsGetoutpoint((currentControl as TriControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3281 |
{ |
3282 |
return; |
3283 |
} |
3284 |
|
3285 |
CreateCommand.Instance.Execute(currentControl); |
3286 |
|
3287 |
currentControl = null; |
3288 |
} |
3289 |
} |
3290 |
else |
3291 |
{ |
3292 |
currentControl = new TriControl |
3293 |
{ |
3294 |
StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
3295 |
Background = new SolidColorBrush(Colors.Black), |
3296 |
}; |
3297 |
|
3298 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3299 |
currentControl.CommentID = Commons.shortGuid(); |
3300 |
currentControl.IsNew = true; |
3301 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3302 |
} |
3303 |
} |
3304 |
} |
3305 |
break; |
3306 |
|
3307 |
case ControlType.CancelLine: |
3308 |
case ControlType.SingleLine: |
3309 |
case ControlType.ArrowLine: |
3310 |
case ControlType.TwinLine: |
3311 |
case ControlType.DimLine: |
3312 |
{ |
3313 |
if (e.LeftButton == MouseButtonState.Pressed) |
3314 |
{ |
3315 |
if (currentControl is LineControl) |
3316 |
{ |
3317 |
//20180906 LJY TEST IsRotationDrawingEnable |
3318 |
if (IsGetoutpoint((currentControl as LineControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3319 |
{ |
3320 |
return; |
3321 |
} |
3322 |
|
3323 |
CreateCommand.Instance.Execute(currentControl); |
3324 |
currentControl = null; |
3325 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
3326 |
} |
3327 |
else |
3328 |
{ |
3329 |
currentControl = new LineControl |
3330 |
{ |
3331 |
ControlType = this.controlType, |
3332 |
StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
3333 |
Background = new SolidColorBrush(Colors.Black) |
3334 |
}; |
3335 |
|
3336 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3337 |
currentControl.CommentID = Commons.shortGuid(); |
3338 |
currentControl.IsNew = true; |
3339 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3340 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
3341 |
} |
3342 |
} |
3343 |
} |
3344 |
break; |
3345 |
|
3346 |
case ControlType.PolygonControl: |
3347 |
{ |
3348 |
if (currentControl is PolygonControl) |
3349 |
{ |
3350 |
var control = currentControl as PolygonControl; |
3351 |
|
3352 |
if (e.RightButton == MouseButtonState.Pressed) |
3353 |
{ |
3354 |
control.IsCompleted = true; |
3355 |
} |
3356 |
|
3357 |
if (!control.IsCompleted) |
3358 |
{ |
3359 |
control.PointSet.Add(control.EndPoint); |
3360 |
} |
3361 |
else |
3362 |
{ |
3363 |
//20180906 LJY TEST IsRotationDrawingEnable |
3364 |
if (IsGetoutpoint((currentControl as PolygonControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3365 |
{ |
3366 |
return; |
3367 |
} |
3368 |
|
3369 |
var firstPoint = control.PointSet.First(); |
3370 |
control.DashSize = ViewerDataModel.Instance.DashSize; |
3371 |
control.LineSize = ViewerDataModel.Instance.LineSize; |
3372 |
control.PointSet.Add(firstPoint); |
3373 |
|
3374 |
control.ApplyOverViewData(); |
3375 |
|
3376 |
CreateCommand.Instance.Execute(currentControl); |
3377 |
control.UpdateControl(); |
3378 |
currentControl = null; |
3379 |
} |
3380 |
} |
3381 |
else |
3382 |
{ |
3383 |
if (e.LeftButton == MouseButtonState.Pressed) |
3384 |
{ |
3385 |
currentControl = new PolygonControl |
3386 |
{ |
3387 |
PointSet = new List<Point>(), |
3388 |
}; |
3389 |
|
3390 |
var polygonControl = (currentControl as PolygonControl); |
3391 |
currentControl.CommentID = Commons.shortGuid(); |
3392 |
currentControl.IsNew = true; |
3393 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3394 |
polygonControl.StartPoint = CanvasDrawingMouseDownPoint; |
3395 |
polygonControl.EndPoint = CanvasDrawingMouseDownPoint; |
3396 |
polygonControl.PointSet.Add(CanvasDrawingMouseDownPoint); |
3397 |
polygonControl.PointSet.Add(CanvasDrawingMouseDownPoint); |
3398 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3399 |
polygonControl.ApplyTemplate(); |
3400 |
polygonControl.Visibility = Visibility.Visible; |
3401 |
} |
3402 |
} |
3403 |
} |
3404 |
break; |
3405 |
|
3406 |
case ControlType.ChainLine: |
3407 |
{ |
3408 |
if (currentControl is PolygonControl) |
3409 |
{ |
3410 |
var control = currentControl as PolygonControl; |
3411 |
|
3412 |
if (e.RightButton == MouseButtonState.Pressed) |
3413 |
{ |
3414 |
//20180906 LJY TEST IsRotationDrawingEnable |
3415 |
if (IsGetoutpoint((currentControl as PolygonControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3416 |
{ |
3417 |
return; |
3418 |
} |
3419 |
|
3420 |
CreateCommand.Instance.Execute(currentControl); |
3421 |
|
3422 |
currentControl = null; |
3423 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
3424 |
return; |
3425 |
} |
3426 |
|
3427 |
if (!control.IsCompleted) |
3428 |
{ |
3429 |
control.PointSet.Add(control.EndPoint); |
3430 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
3431 |
} |
3432 |
} |
3433 |
else |
3434 |
{ |
3435 |
if (e.LeftButton == MouseButtonState.Pressed) |
3436 |
{ |
3437 |
MainAngle.Visibility = Visibility.Visible; |
3438 |
currentControl = new PolygonControl |
3439 |
{ |
3440 |
PointSet = new List<Point>(), |
3441 |
//강인구 추가(ChainLine일때는 채우기 스타일을 주지 않기 위해 설정) |
3442 |
ControlType = ControlType.ChainLine, |
3443 |
DashSize = ViewerDataModel.Instance.DashSize, |
3444 |
LineSize = ViewerDataModel.Instance.LineSize, |
3445 |
//PointC = new StylusPointSet() |
3446 |
}; |
3447 |
|
3448 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3449 |
//{ |
3450 |
var polygonControl = (currentControl as PolygonControl); |
3451 |
currentControl.CommentID = Commons.shortGuid(); |
3452 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3453 |
currentControl.IsNew = true; |
3454 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3455 |
//currentControl.OnApplyTemplate(); |
3456 |
//polygonControl.PointC.pointSet.Add(canvasDrawingMouseDownPoint); |
3457 |
//polygonControl.PointC.pointSet.Add(canvasDrawingMouseDownPoint); |
3458 |
polygonControl.PointSet.Add(CanvasDrawingMouseDownPoint); |
3459 |
polygonControl.PointSet.Add(CanvasDrawingMouseDownPoint); |
3460 |
//} |
3461 |
} |
3462 |
} |
3463 |
} |
3464 |
break; |
3465 |
|
3466 |
case ControlType.ArcLine: |
3467 |
{ |
3468 |
if (e.LeftButton == MouseButtonState.Pressed) |
3469 |
{ |
3470 |
if (currentControl is ArcControl) |
3471 |
{ |
3472 |
//20180906 LJY TEST IsRotationDrawingEnable |
3473 |
if (IsGetoutpoint((currentControl as ArcControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3474 |
{ |
3475 |
return; |
3476 |
} |
3477 |
|
3478 |
CreateCommand.Instance.Execute(currentControl); |
3479 |
|
3480 |
currentControl = null; |
3481 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
3482 |
} |
3483 |
else |
3484 |
{ |
3485 |
currentControl = new ArcControl |
3486 |
{ |
3487 |
StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
3488 |
Background = new SolidColorBrush(Colors.Black) |
3489 |
}; |
3490 |
currentControl.CommentID = Commons.shortGuid(); |
3491 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3492 |
currentControl.IsNew = true; |
3493 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3494 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
3495 |
} |
3496 |
} |
3497 |
else if (e.RightButton == MouseButtonState.Pressed) |
3498 |
{ |
3499 |
if (currentControl != null) |
3500 |
{ |
3501 |
(currentControl as ArcControl).setClock(); |
3502 |
(currentControl as ArcControl).MidPoint = new Point(0, 0); |
3503 |
} |
3504 |
} |
3505 |
} |
3506 |
break; |
3507 |
|
3508 |
case ControlType.ArcArrow: |
3509 |
{ |
3510 |
if (e.LeftButton == MouseButtonState.Pressed) |
3511 |
{ |
3512 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3513 |
//{ |
3514 |
if (currentControl is ArrowArcControl) |
3515 |
{ |
3516 |
//20180906 LJY TEST IsRotationDrawingEnable |
3517 |
if (IsGetoutpoint((currentControl as ArrowArcControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3518 |
{ |
3519 |
return; |
3520 |
} |
3521 |
|
3522 |
CreateCommand.Instance.Execute(currentControl); |
3523 |
|
3524 |
currentControl = null; |
3525 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
3526 |
} |
3527 |
else |
3528 |
{ |
3529 |
currentControl = new ArrowArcControl |
3530 |
{ |
3531 |
StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
3532 |
Background = new SolidColorBrush(Colors.Black) |
3533 |
}; |
3534 |
currentControl.CommentID = Commons.shortGuid(); |
3535 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3536 |
currentControl.IsNew = true; |
3537 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3538 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
3539 |
} |
3540 |
//} |
3541 |
} |
3542 |
else if (e.RightButton == MouseButtonState.Pressed) |
3543 |
{ |
3544 |
if (currentControl != null) |
3545 |
{ |
3546 |
(currentControl as ArrowArcControl).setClock(); |
3547 |
(currentControl as ArrowArcControl).MiddlePoint = new Point(0, 0); |
3548 |
//(currentControl as ArcControl).ApplyTemplate(); |
3549 |
} |
3550 |
} |
3551 |
} |
3552 |
break; |
3553 |
|
3554 |
case ControlType.ArrowMultiLine: |
3555 |
{ |
3556 |
if (e.LeftButton == MouseButtonState.Pressed) |
3557 |
{ |
3558 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3559 |
//{ |
3560 |
if (currentControl is ArrowControl_Multi) |
3561 |
{ |
3562 |
var content = currentControl as ArrowControl_Multi; |
3563 |
if (content.MiddlePoint == new Point(0, 0)) |
3564 |
{ |
3565 |
if (ViewerDataModel.Instance.IsAxisLock || ViewerDataModel.Instance.IsPressShift) |
3566 |
{ |
3567 |
content.MiddlePoint = content.EndPoint; |
3568 |
} |
3569 |
else |
3570 |
{ |
3571 |
content.MiddlePoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y); |
3572 |
} |
3573 |
} |
3574 |
else |
3575 |
{ |
3576 |
//20180906 LJY TEST IsRotationDrawingEnable |
3577 |
if (IsGetoutpoint((currentControl as ArrowControl_Multi).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3578 |
{ |
3579 |
return; |
3580 |
} |
3581 |
|
3582 |
CreateCommand.Instance.Execute(currentControl); |
3583 |
|
3584 |
currentControl = null; |
3585 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
3586 |
} |
3587 |
} |
3588 |
else |
3589 |
{ |
3590 |
currentControl = new ArrowControl_Multi |
3591 |
{ |
3592 |
StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
3593 |
Background = new SolidColorBrush(Colors.Black) |
3594 |
}; |
3595 |
currentControl.CommentID = Commons.shortGuid(); |
3596 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3597 |
currentControl.IsNew = true; |
3598 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3599 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
3600 |
} |
3601 |
//} |
3602 |
} |
3603 |
} |
3604 |
break; |
3605 |
|
3606 |
case ControlType.PolygonCloud: |
3607 |
{ |
3608 |
if (currentControl is CloudControl) |
3609 |
{ |
3610 |
var control = currentControl as CloudControl; |
3611 |
if (e.RightButton == MouseButtonState.Pressed) |
3612 |
{ |
3613 |
control.IsCompleted = true; |
3614 |
} |
3615 |
|
3616 |
if (!control.IsCompleted) |
3617 |
{ |
3618 |
control.PointSet.Add(control.EndPoint); |
3619 |
} |
3620 |
else |
3621 |
{ |
3622 |
//20180906 LJY TEST IsRotationDrawingEnable |
3623 |
if (IsGetoutpoint((currentControl as CloudControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3624 |
{ |
3625 |
return; |
3626 |
} |
3627 |
|
3628 |
CreateCommand.Instance.Execute(currentControl); |
3629 |
|
3630 |
control.isTransOn = true; |
3631 |
var firstPoint = control.PointSet.First(); |
3632 |
|
3633 |
control.PointSet.Add(firstPoint); |
3634 |
control.DrawingCloud(); |
3635 |
control.ApplyOverViewData(); |
3636 |
|
3637 |
currentControl = null; |
3638 |
} |
3639 |
} |
3640 |
else |
3641 |
{ |
3642 |
if (e.LeftButton == MouseButtonState.Pressed) |
3643 |
{ |
3644 |
currentControl = new CloudControl |
3645 |
{ |
3646 |
PointSet = new List<Point>(), |
3647 |
PointC = new StylusPointSet() |
3648 |
}; |
3649 |
|
3650 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3651 |
//{ |
3652 |
var polygonControl = (currentControl as CloudControl); |
3653 |
currentControl.CommentID = Commons.shortGuid(); |
3654 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3655 |
currentControl.IsNew = true; |
3656 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3657 |
|
3658 |
polygonControl.PointSet.Add(CanvasDrawingMouseDownPoint); |
3659 |
polygonControl.PointSet.Add(CanvasDrawingMouseDownPoint); |
3660 |
|
3661 |
//} |
3662 |
} |
3663 |
} |
3664 |
} |
3665 |
break; |
3666 |
|
3667 |
case ControlType.ImgControl: |
3668 |
{ |
3669 |
if (e.LeftButton == MouseButtonState.Pressed) |
3670 |
{ |
3671 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3672 |
//{ |
3673 |
if (currentControl is ImgControl) |
3674 |
{ |
3675 |
//20180906 LJY TEST IsRotationDrawingEnable |
3676 |
if (IsGetoutpoint((currentControl as ImgControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3677 |
{ |
3678 |
return; |
3679 |
} |
3680 |
|
3681 |
CreateCommand.Instance.Execute(currentControl); |
3682 |
controlType = ControlType.ImgControl; |
3683 |
currentControl = null; |
3684 |
} |
3685 |
else |
3686 |
{ |
3687 |
string extension = System.IO.Path.GetExtension(filename).ToUpper(); |
3688 |
if (extension == ".PNG" || extension == ".JPEG" || extension == ".GIF" || extension == ".BMP" || extension == ".JPG" || extension == ".SVG") |
3689 |
{ |
3690 |
UriBuilder downloadUri = new UriBuilder(App.BaseAddress); |
3691 |
UriBuilder uri = new UriBuilder(filename); |
3692 |
uri.Host = downloadUri.Host; |
3693 |
uri.Port = downloadUri.Port; |
3694 |
|
3695 |
Image img = new Image(); |
3696 |
if (filename.Contains(".svg")) |
3697 |
{ |
3698 |
byte[] imageData = null; |
3699 |
DrawingImage image = null; |
3700 |
using (System.Net.WebClient web = new System.Net.WebClient()) |
3701 |
{ |
3702 |
imageData = web.DownloadData(uri.Uri); |
3703 |
System.IO.Stream stream = new System.IO.MemoryStream(imageData); |
3704 |
image = SvgReader.Load(stream); |
3705 |
} |
3706 |
img.Source = image; |
3707 |
} |
3708 |
else |
3709 |
{ |
3710 |
img.Source = new BitmapImage(uri.Uri); |
3711 |
} |
3712 |
|
3713 |
currentControl = new ImgControl |
3714 |
{ |
3715 |
Background = new SolidColorBrush(Colors.Black), |
3716 |
PointSet = new List<Point>(), |
3717 |
FilePath = uri.Uri.ToString(), |
3718 |
ImageData = img.Source, |
3719 |
StartPoint = CanvasDrawingMouseDownPoint, |
3720 |
EndPoint = new Point(CanvasDrawingMouseDownPoint.X + 100, CanvasDrawingMouseDownPoint.Y + 100), |
3721 |
TopRightPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y + 100), |
3722 |
LeftBottomPoint = new Point(CanvasDrawingMouseDownPoint.X + 100, CanvasDrawingMouseDownPoint.Y), |
3723 |
ControlType = ControlType.ImgControl |
3724 |
}; |
3725 |
|
3726 |
currentControl.CommentID = Commons.shortGuid(); |
3727 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3728 |
currentControl.IsNew = true; |
3729 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3730 |
|
3731 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
3732 |
(currentControl as ImgControl).CommentAngle -= rotate.Angle; |
3733 |
} |
3734 |
} |
3735 |
//} |
3736 |
} |
3737 |
} |
3738 |
break; |
3739 |
|
3740 |
case ControlType.Date: |
3741 |
{ |
3742 |
if (e.LeftButton == MouseButtonState.Pressed) |
3743 |
{ |
3744 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3745 |
//{ |
3746 |
if (currentControl is DateControl) |
3747 |
{ |
3748 |
//20180906 LJY TEST IsRotationDrawingEnable |
3749 |
if (IsGetoutpoint((currentControl as DateControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3750 |
{ |
3751 |
return; |
3752 |
} |
3753 |
|
3754 |
CreateCommand.Instance.Execute(currentControl); |
3755 |
currentControl = null; |
3756 |
|
3757 |
if (Common.ViewerDataModel.Instance.SelectedControl == "Batch") |
3758 |
{ |
3759 |
controlType = ControlType.None; |
3760 |
IsSwingMode = false; |
3761 |
Common.ViewerDataModel.Instance.SelectedControl = ""; |
3762 |
Common.ViewerDataModel.Instance.ControlTag = null; |
3763 |
mouseHandlingMode = MouseHandlingMode.None; |
3764 |
this.ParentOfType<MainWindow>().dzTopMenu.btn_Batch.IsChecked = false; |
3765 |
txtBatch.Visibility = Visibility.Collapsed; |
3766 |
} |
3767 |
} |
3768 |
else |
3769 |
{ |
3770 |
currentControl = new DateControl |
3771 |
{ |
3772 |
StartPoint = CanvasDrawingMouseDownPoint, |
3773 |
Background = new SolidColorBrush(Colors.Black) |
3774 |
}; |
3775 |
currentControl.CommentID = Commons.shortGuid(); |
3776 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3777 |
currentControl.IsNew = true; |
3778 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3779 |
|
3780 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
3781 |
if (currentControl is ImgControl) |
3782 |
{ |
3783 |
(currentControl as ImgControl).CommentAngle -= rotate.Angle; |
3784 |
} |
3785 |
} |
3786 |
//} |
3787 |
} |
3788 |
} |
3789 |
break; |
3790 |
|
3791 |
case ControlType.TextControl: |
3792 |
{ |
3793 |
if (e.LeftButton == MouseButtonState.Pressed) |
3794 |
{ |
3795 |
if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3796 |
{ |
3797 |
currentControl = new TextControl |
3798 |
{ |
3799 |
ControlType = controlType |
3800 |
}; |
3801 |
(currentControl as TextControl).TextSize = ViewerDataModel.Instance.TextSize; |
3802 |
currentControl.CommentID = Commons.shortGuid(); |
3803 |
currentControl.IsNew = true; |
3804 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3805 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3806 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3807 |
|
3808 |
currentControl.SetValue(TextControl.CanvasXProperty, CanvasDrawingMouseDownPoint.X); |
3809 |
currentControl.SetValue(TextControl.CanvasYProperty, CanvasDrawingMouseDownPoint.Y); |
3810 |
|
3811 |
(currentControl as TextControl).ControlType_No = 0; |
3812 |
(currentControl as TextControl).CommentAngle -= rotate.Angle; |
3813 |
(currentControl as TextControl).IsHighLight = ViewerDataModel.Instance.checkHighShape; |
3814 |
(currentControl as TextControl).ApplyTemplate(); |
3815 |
(currentControl as TextControl).Base_TextBox.Focus(); |
3816 |
(currentControl as TextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
3817 |
CreateCommand.Instance.Execute(currentControl); |
3818 |
} |
3819 |
} |
3820 |
} |
3821 |
break; |
3822 |
|
3823 |
case ControlType.TextBorder: |
3824 |
{ |
3825 |
if (e.LeftButton == MouseButtonState.Pressed) |
3826 |
{ |
3827 |
if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3828 |
{ |
3829 |
currentControl = new TextControl |
3830 |
{ |
3831 |
ControlType = controlType |
3832 |
}; |
3833 |
|
3834 |
(currentControl as TextControl).TextSize = ViewerDataModel.Instance.TextSize; |
3835 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3836 |
currentControl.CommentID = Commons.shortGuid(); |
3837 |
currentControl.IsNew = true; |
3838 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3839 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3840 |
currentControl.SetValue(TextControl.CanvasXProperty, CanvasDrawingMouseDownPoint.X); |
3841 |
currentControl.SetValue(TextControl.CanvasYProperty, CanvasDrawingMouseDownPoint.Y); |
3842 |
|
3843 |
(currentControl as TextControl).ControlType_No = 1; |
3844 |
(currentControl as TextControl).CommentAngle = Ang; |
3845 |
(currentControl as TextControl).IsHighLight = ViewerDataModel.Instance.checkHighShape; |
3846 |
(currentControl as TextControl).ApplyTemplate(); |
3847 |
(currentControl as TextControl).Base_TextBox.Focus(); |
3848 |
(currentControl as TextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
3849 |
CreateCommand.Instance.Execute(currentControl); |
3850 |
} |
3851 |
} |
3852 |
} |
3853 |
break; |
3854 |
|
3855 |
case ControlType.TextCloud: |
3856 |
{ |
3857 |
if (e.LeftButton == MouseButtonState.Pressed) |
3858 |
{ |
3859 |
if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3860 |
{ |
3861 |
currentControl = new TextControl |
3862 |
{ |
3863 |
ControlType = controlType |
3864 |
}; |
3865 |
|
3866 |
(currentControl as TextControl).TextSize = ViewerDataModel.Instance.TextSize; |
3867 |
currentControl.CommentID = Commons.shortGuid(); |
3868 |
currentControl.IsNew = true; |
3869 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3870 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3871 |
|
3872 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3873 |
currentControl.SetValue(TextControl.CanvasXProperty, CanvasDrawingMouseDownPoint.X); |
3874 |
currentControl.SetValue(TextControl.CanvasYProperty, CanvasDrawingMouseDownPoint.Y); |
3875 |
|
3876 |
(currentControl as TextControl).CommentAngle = Ang; |
3877 |
(currentControl as TextControl).ControlType_No = 2; |
3878 |
(currentControl as TextControl).IsHighLight = ViewerDataModel.Instance.checkHighShape; |
3879 |
(currentControl as TextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
3880 |
|
3881 |
(currentControl as TextControl).ApplyTemplate(); |
3882 |
(currentControl as TextControl).Base_TextBox.Focus(); |
3883 |
CreateCommand.Instance.Execute(currentControl); |
3884 |
|
3885 |
//currentControl = null; |
3886 |
} |
3887 |
} |
3888 |
} |
3889 |
break; |
3890 |
|
3891 |
case ControlType.ArrowTextControl: |
3892 |
{ |
3893 |
if (e.LeftButton == MouseButtonState.Pressed) |
3894 |
{ |
3895 |
if (currentControl is ArrowTextControl) |
3896 |
{ |
3897 |
//20180906 LJY TEST IsRotationDrawingEnable |
3898 |
if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3899 |
{ |
3900 |
return; |
3901 |
} |
3902 |
|
3903 |
CreateCommand.Instance.Execute(currentControl); |
3904 |
|
3905 |
try |
3906 |
{ |
3907 |
if(!(currentControl as ArrowTextControl).IsEditingMode) |
3908 |
{ |
3909 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3910 |
} |
3911 |
} |
3912 |
catch (Exception ex) |
3913 |
{ |
3914 |
System.Diagnostics.Debug.WriteLine(ex.ToString()); |
3915 |
} |
3916 |
|
3917 |
(currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
3918 |
(currentControl as ArrowTextControl).EnableEditing = false; |
3919 |
(currentControl as ArrowTextControl).IsNew = false; |
3920 |
currentControl = null; |
3921 |
} |
3922 |
else |
3923 |
{ |
3924 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3925 |
//{ |
3926 |
currentControl = new ArrowTextControl() |
3927 |
{ |
3928 |
PageAngle = ViewerDataModel.Instance.PageAngle |
3929 |
}; |
3930 |
|
3931 |
currentControl.CommentID = Commons.shortGuid(); |
3932 |
currentControl.IsNew = true; |
3933 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3934 |
|
3935 |
try |
3936 |
{ |
3937 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3938 |
} |
3939 |
catch (Exception ex) |
3940 |
{ |
3941 |
System.Diagnostics.Debug.WriteLine(ex.ToString()); |
3942 |
} |
3943 |
|
3944 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3945 |
currentControl.SetValue(ArrowTextControl.StartPointProperty, CanvasDrawingMouseDownPoint); |
3946 |
currentControl.SetValue(ArrowTextControl.EndPointProperty, CanvasDrawingMouseDownPoint); |
3947 |
(currentControl as ArrowTextControl).TextSize = ViewerDataModel.Instance.TextSize; |
3948 |
(currentControl as ArrowTextControl).isHighLight = ViewerDataModel.Instance.checkHighShape; |
3949 |
|
3950 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
3951 |
(currentControl as ArrowTextControl).CommentAngle -= rotate.Angle; |
3952 |
|
3953 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
3954 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
3955 |
(currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
3956 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
3957 |
|
3958 |
//} |
3959 |
} |
3960 |
} |
3961 |
} |
3962 |
break; |
3963 |
|
3964 |
case ControlType.ArrowTransTextControl: |
3965 |
{ |
3966 |
if (e.LeftButton == MouseButtonState.Pressed) |
3967 |
{ |
3968 |
if (currentControl is ArrowTextControl) |
3969 |
{ |
3970 |
//20180906 LJY TEST IsRotationDrawingEnable |
3971 |
if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
3972 |
{ |
3973 |
return; |
3974 |
} |
3975 |
|
3976 |
CreateCommand.Instance.Execute(currentControl); |
3977 |
|
3978 |
(currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
3979 |
|
3980 |
currentControl.IsNew = false; |
3981 |
currentControl = null; |
3982 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
3983 |
} |
3984 |
else |
3985 |
{ |
3986 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
3987 |
//{ |
3988 |
currentControl = new ArrowTextControl() |
3989 |
{ |
3990 |
ControlType = ControlType.ArrowTransTextControl, |
3991 |
PageAngle = ViewerDataModel.Instance.PageAngle |
3992 |
}; |
3993 |
currentControl.CommentID = Commons.shortGuid(); |
3994 |
currentControl.IsNew = true; |
3995 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3996 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3997 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
3998 |
currentControl.SetValue(ArrowTextControl.StartPointProperty, CanvasDrawingMouseDownPoint); |
3999 |
currentControl.SetValue(ArrowTextControl.EndPointProperty, CanvasDrawingMouseDownPoint); |
4000 |
(currentControl as ArrowTextControl).TextSize = ViewerDataModel.Instance.TextSize; |
4001 |
(currentControl as ArrowTextControl).isFixed = true; |
4002 |
(currentControl as ArrowTextControl).isHighLight = ViewerDataModel.Instance.checkHighShape; |
4003 |
|
4004 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
4005 |
(currentControl as ArrowTextControl).CommentAngle -= rotate.Angle; |
4006 |
|
4007 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
4008 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
4009 |
(currentControl as ArrowTextControl).isTrans = true; |
4010 |
(currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
4011 |
} |
4012 |
} |
4013 |
} |
4014 |
break; |
4015 |
|
4016 |
case ControlType.ArrowTextBorderControl: |
4017 |
{ |
4018 |
if (e.LeftButton == MouseButtonState.Pressed) |
4019 |
{ |
4020 |
if (currentControl is ArrowTextControl) |
4021 |
{ |
4022 |
//20180906 LJY TEST IsRotationDrawingEnable |
4023 |
if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
4024 |
{ |
4025 |
return; |
4026 |
} |
4027 |
|
4028 |
CreateCommand.Instance.Execute(currentControl); |
4029 |
(currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
4030 |
currentControl.IsNew = false; |
4031 |
currentControl = null; |
4032 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
4033 |
} |
4034 |
else |
4035 |
{ |
4036 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
4037 |
//{ |
4038 |
currentControl = new ArrowTextControl() |
4039 |
{ |
4040 |
ArrowTextStyle = MarkupToPDF.Controls.Text.ArrowTextControl.ArrowTextStyleSet.Rect, |
4041 |
PageAngle = ViewerDataModel.Instance.PageAngle |
4042 |
}; |
4043 |
currentControl.CommentID = Commons.shortGuid(); |
4044 |
currentControl.IsNew = true; |
4045 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
4046 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
4047 |
|
4048 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
4049 |
|
4050 |
currentControl.SetValue(ArrowTextControl.StartPointProperty, CanvasDrawingMouseDownPoint); |
4051 |
|
4052 |
currentControl.SetValue(ArrowTextControl.EndPointProperty, CanvasDrawingMouseDownPoint); |
4053 |
(currentControl as ArrowTextControl).isHighLight = ViewerDataModel.Instance.checkHighShape; |
4054 |
(currentControl as ArrowTextControl).TextSize = ViewerDataModel.Instance.TextSize; |
4055 |
(currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
4056 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
4057 |
(currentControl as ArrowTextControl).CommentAngle -= rotate.Angle; |
4058 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
4059 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
4060 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
4061 |
//} |
4062 |
} |
4063 |
} |
4064 |
} |
4065 |
break; |
4066 |
|
4067 |
case ControlType.ArrowTransTextBorderControl: |
4068 |
{ |
4069 |
if (e.LeftButton == MouseButtonState.Pressed) |
4070 |
{ |
4071 |
if (currentControl is ArrowTextControl) |
4072 |
{ |
4073 |
//20180906 LJY TEST IsRotationDrawingEnable |
4074 |
if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
4075 |
{ |
4076 |
return; |
4077 |
} |
4078 |
CreateCommand.Instance.Execute(currentControl); |
4079 |
(currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
4080 |
currentControl.IsNew = false; |
4081 |
currentControl = null; |
4082 |
|
4083 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
4084 |
} |
4085 |
else |
4086 |
{ |
4087 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
4088 |
//{ |
4089 |
currentControl = new ArrowTextControl() |
4090 |
{ |
4091 |
ArrowTextStyle = MarkupToPDF.Controls.Text.ArrowTextControl.ArrowTextStyleSet.Rect, |
4092 |
ControlType = ControlType.ArrowTransTextBorderControl, |
4093 |
PageAngle = ViewerDataModel.Instance.PageAngle |
4094 |
}; |
4095 |
|
4096 |
currentControl.CommentID = Commons.shortGuid(); |
4097 |
currentControl.IsNew = true; |
4098 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
4099 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
4100 |
|
4101 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
4102 |
|
4103 |
currentControl.SetValue(ArrowTextControl.StartPointProperty, CanvasDrawingMouseDownPoint); |
4104 |
currentControl.SetValue(ArrowTextControl.EndPointProperty, CanvasDrawingMouseDownPoint); |
4105 |
(currentControl as ArrowTextControl).TextSize = ViewerDataModel.Instance.TextSize; |
4106 |
(currentControl as ArrowTextControl).isFixed = true; |
4107 |
(currentControl as ArrowTextControl).isHighLight = ViewerDataModel.Instance.checkHighShape; |
4108 |
|
4109 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
4110 |
(currentControl as ArrowTextControl).CommentAngle -= rotate.Angle; |
4111 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
4112 |
(currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
4113 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
4114 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
4115 |
|
4116 |
//20180911 LJY |
4117 |
(currentControl as ArrowTextControl).isTrans = true; |
4118 |
|
4119 |
//} |
4120 |
} |
4121 |
} |
4122 |
} |
4123 |
break; |
4124 |
|
4125 |
case ControlType.ArrowTextCloudControl: |
4126 |
{ |
4127 |
if (e.LeftButton == MouseButtonState.Pressed) |
4128 |
{ |
4129 |
if (currentControl is ArrowTextControl) |
4130 |
{ |
4131 |
//20180906 LJY TEST IsRotationDrawingEnable |
4132 |
if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
4133 |
{ |
4134 |
return; |
4135 |
} |
4136 |
CreateCommand.Instance.Execute(currentControl); |
4137 |
(currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
4138 |
currentControl.IsNew = false; |
4139 |
currentControl = null; |
4140 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
4141 |
} |
4142 |
else |
4143 |
{ |
4144 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
4145 |
//{ |
4146 |
currentControl = new ArrowTextControl() |
4147 |
{ |
4148 |
ArrowTextStyle = MarkupToPDF.Controls.Text.ArrowTextControl.ArrowTextStyleSet.Cloud, |
4149 |
PageAngle = ViewerDataModel.Instance.PageAngle |
4150 |
}; |
4151 |
currentControl.CommentID = Commons.shortGuid(); |
4152 |
currentControl.IsNew = true; |
4153 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
4154 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
4155 |
|
4156 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
4157 |
currentControl.SetValue(ArrowTextControl.StartPointProperty, CanvasDrawingMouseDownPoint); |
4158 |
currentControl.SetValue(ArrowTextControl.EndPointProperty, CanvasDrawingMouseDownPoint); |
4159 |
(currentControl as ArrowTextControl).TextSize = ViewerDataModel.Instance.TextSize; |
4160 |
(currentControl as ArrowTextControl).isHighLight = ViewerDataModel.Instance.checkHighShape; |
4161 |
(currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
4162 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
4163 |
(currentControl as ArrowTextControl).CommentAngle -= rotate.Angle; |
4164 |
|
4165 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
4166 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
4167 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
4168 |
//} |
4169 |
} |
4170 |
} |
4171 |
} |
4172 |
break; |
4173 |
|
4174 |
case ControlType.ArrowTransTextCloudControl: |
4175 |
{ |
4176 |
if (e.LeftButton == MouseButtonState.Pressed) |
4177 |
{ |
4178 |
if (currentControl is ArrowTextControl) |
4179 |
{ |
4180 |
//20180906 LJY TEST IsRotationDrawingEnable |
4181 |
if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
4182 |
{ |
4183 |
return; |
4184 |
} |
4185 |
CreateCommand.Instance.Execute(currentControl); |
4186 |
(currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
4187 |
currentControl.IsNew = false; |
4188 |
currentControl = null; |
4189 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
4190 |
} |
4191 |
else |
4192 |
{ |
4193 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
4194 |
//{ |
4195 |
currentControl = new ArrowTextControl() |
4196 |
{ |
4197 |
ArrowTextStyle = MarkupToPDF.Controls.Text.ArrowTextControl.ArrowTextStyleSet.Cloud, |
4198 |
ControlType = ControlType.ArrowTransTextCloudControl, |
4199 |
PageAngle = ViewerDataModel.Instance.PageAngle |
4200 |
}; |
4201 |
currentControl.CommentID = Commons.shortGuid(); |
4202 |
currentControl.IsNew = true; |
4203 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
4204 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
4205 |
currentControl.SetValue(Canvas.ZIndexProperty, 3); |
4206 |
|
4207 |
currentControl.SetValue(ArrowTextControl.StartPointProperty, CanvasDrawingMouseDownPoint); |
4208 |
currentControl.SetValue(ArrowTextControl.EndPointProperty, CanvasDrawingMouseDownPoint); |
4209 |
(currentControl as ArrowTextControl).TextSize = ViewerDataModel.Instance.TextSize; |
4210 |
(currentControl as ArrowTextControl).isFixed = true; |
4211 |
(currentControl as ArrowTextControl).isHighLight = ViewerDataModel.Instance.checkHighShape; |
4212 |
|
4213 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
4214 |
(currentControl as ArrowTextControl).CommentAngle -= rotate.Angle; |
4215 |
(currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
4216 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
4217 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
4218 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
4219 |
|
4220 |
//20180911 LJY |
4221 |
(currentControl as ArrowTextControl).isTrans = true; |
4222 |
//} |
4223 |
} |
4224 |
} |
4225 |
} |
4226 |
break; |
4227 |
//강인구 추가 |
4228 |
case ControlType.Sign: |
4229 |
{ |
4230 |
if (e.LeftButton == MouseButtonState.Pressed) |
4231 |
{ |
4232 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
4233 |
//{ |
4234 |
var _sign = await BaseTaskClient.GetSignDataAsync(App.ViewInfo.ProjectNO, App.ViewInfo.UserID); |
4235 |
|
4236 |
if (_sign == null) |
4237 |
{ |
4238 |
txtBatch.Visibility = Visibility.Collapsed; |
4239 |
mouseHandlingMode = IKCOM.MouseHandlingMode.None; |
4240 |
controlType = ControlType.None; |
4241 |
|
4242 |
this.ParentOfType<MainWindow>().DialogMessage_Alert("등록된 Sign이 없습니다.", "Alert"); |
4243 |
this.ParentOfType<MainWindow>().ChildrenOfType<RadToggleButton>().Where(data => data.IsChecked == true).FirstOrDefault().IsChecked = false; |
4244 |
return; |
4245 |
} |
4246 |
else |
4247 |
{ |
4248 |
if ( Application.Current.Resources.Keys.OfType<string>().Count(x => x == "UserSign") == 0) |
4249 |
{ |
4250 |
Application.Current.Resources.Add("UserSign", _sign); |
4251 |
} |
4252 |
else |
4253 |
{ |
4254 |
Application.Current.Resources["UserSign"] = _sign; |
4255 |
} |
4256 |
} |
4257 |
|
4258 |
if (currentControl is SignControl) |
4259 |
{ |
4260 |
//20180906 LJY TEST IsRotationDrawingEnable |
4261 |
if (IsGetoutpoint((currentControl as SignControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
4262 |
{ |
4263 |
return; |
4264 |
} |
4265 |
|
4266 |
CreateCommand.Instance.Execute(currentControl); |
4267 |
currentControl = null; |
4268 |
if (Common.ViewerDataModel.Instance.SelectedControl == "Batch") |
4269 |
{ |
4270 |
txtBatch.Text = "Place Date"; |
4271 |
controlType = ControlType.Date; |
4272 |
} |
4273 |
} |
4274 |
else |
4275 |
{ |
4276 |
currentControl = new SignControl |
4277 |
{ |
4278 |
Background = new SolidColorBrush(Colors.Black), |
4279 |
UserNumber = App.ViewInfo.UserID, |
4280 |
ProjectNO = App.ViewInfo.ProjectNO, |
4281 |
StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
4282 |
EndPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
4283 |
ControlType = ControlType.Sign |
4284 |
}; |
4285 |
|
4286 |
currentControl.CommentID = Commons.shortGuid(); |
4287 |
currentControl.IsNew = true; |
4288 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
4289 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
4290 |
|
4291 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
4292 |
(currentControl as SignControl).CommentAngle -= rotate.Angle; |
4293 |
} |
4294 |
//} |
4295 |
} |
4296 |
} |
4297 |
break; |
4298 |
|
4299 |
case ControlType.Mark: |
4300 |
{ |
4301 |
if (e.LeftButton == MouseButtonState.Pressed) |
4302 |
{ |
4303 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
4304 |
//{ |
4305 |
if (currentControl is RectangleControl) |
4306 |
{ |
4307 |
//20180906 LJY TEST IsRotationDrawingEnable |
4308 |
if (IsGetoutpoint((currentControl as RectangleControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
4309 |
{ |
4310 |
return; |
4311 |
} |
4312 |
|
4313 |
CreateCommand.Instance.Execute(currentControl); |
4314 |
(currentControl as RectangleControl).ApplyOverViewData(); |
4315 |
currentControl = null; |
4316 |
|
4317 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
4318 |
|
4319 |
if (Common.ViewerDataModel.Instance.SelectedControl == "Batch") |
4320 |
{ |
4321 |
txtBatch.Text = "Place Signature"; |
4322 |
controlType = ControlType.Sign; |
4323 |
} |
4324 |
} |
4325 |
else |
4326 |
{ |
4327 |
currentControl = new RectangleControl |
4328 |
{ |
4329 |
StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
4330 |
Background = new SolidColorBrush(Colors.Black), |
4331 |
ControlType = ControlType.Mark, |
4332 |
Paint = PaintSet.Fill |
4333 |
}; |
4334 |
|
4335 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
4336 |
currentControl.CommentID = Commons.shortGuid(); |
4337 |
currentControl.IsNew = true; |
4338 |
(currentControl as RectangleControl).DashSize = ViewerDataModel.Instance.DashSize; |
4339 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
4340 |
} |
4341 |
//} |
4342 |
} |
4343 |
} |
4344 |
break; |
4345 |
|
4346 |
case ControlType.Symbol: |
4347 |
{ |
4348 |
if (e.LeftButton == MouseButtonState.Pressed) |
4349 |
{ |
4350 |
if (currentControl is SymControl) |
4351 |
{ |
4352 |
//20180906 LJY TEST IsRotationDrawingEnable |
4353 |
if (IsGetoutpoint((currentControl as SymControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
4354 |
{ |
4355 |
return; |
4356 |
} |
4357 |
CreateCommand.Instance.Execute(currentControl); |
4358 |
currentControl = null; |
4359 |
|
4360 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
4361 |
} |
4362 |
else |
4363 |
{ |
4364 |
currentControl = new SymControl |
4365 |
{ |
4366 |
StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
4367 |
Background = new SolidColorBrush(Colors.Black), |
4368 |
LineSize = ViewerDataModel.Instance.LineSize + 3, |
4369 |
ControlType = ControlType.Symbol |
4370 |
}; |
4371 |
|
4372 |
currentControl.IsNew = true; |
4373 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
4374 |
currentControl.CommentID = Commons.shortGuid(); |
4375 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
4376 |
|
4377 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
4378 |
(currentControl as SymControl).CommentAngle -= rotate.Angle; |
4379 |
} |
4380 |
//} |
4381 |
} |
4382 |
} |
4383 |
break; |
4384 |
|
4385 |
case ControlType.Stamp: |
4386 |
{ |
4387 |
if (e.LeftButton == MouseButtonState.Pressed) |
4388 |
{ |
4389 |
//if (IsDrawingEnable(canvasZoomPanningMouseDownPoint)) |
4390 |
//{ |
4391 |
if (currentControl is SymControlN) |
4392 |
{ |
4393 |
//20180906 LJY TEST IsRotationDrawingEnable |
4394 |
if (IsGetoutpoint((currentControl as SymControlN).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault())) |
4395 |
{ |
4396 |
return; |
4397 |
} |
4398 |
|
4399 |
CreateCommand.Instance.Execute(currentControl); |
4400 |
currentControl = null; |
4401 |
|
4402 |
this.cursor = new Cursor(App.DefaultArrowCursorStream); |
4403 |
} |
4404 |
else |
4405 |
{ |
4406 |
currentControl = new SymControlN |
4407 |
{ |
4408 |
StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y), |
4409 |
Background = new SolidColorBrush(Colors.Black), |
4410 |
STAMP = App.SystemInfo.STAMP, |
4411 |
ControlType = ControlType.Stamp |
4412 |
}; |
4413 |
|
4414 |
currentControl.IsNew = true; |
4415 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
4416 |
currentControl.CommentID = Commons.shortGuid(); |
4417 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
4418 |
//20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정 |
4419 |
(currentControl as SymControlN).CommentAngle -= rotate.Angle; |
4420 |
} |
4421 |
//} |
4422 |
} |
4423 |
} |
4424 |
break; |
4425 |
|
4426 |
case ControlType.PenControl: |
4427 |
{ |
4428 |
if (inkBoard.Tag.ToString() == "Ink") |
4429 |
{ |
4430 |
inkBoard.IsEnabled = true; |
4431 |
StartNewStroke(CanvasDrawingMouseDownPoint); |
4432 |
} |
4433 |
else if (inkBoard.Tag.ToString() == "EraseByPoint") |
4434 |
{ |
4435 |
RemovePointStroke(CanvasDrawingMouseDownPoint); |
4436 |
} |
4437 |
else if (inkBoard.Tag.ToString() == "EraseByStroke") |
4438 |
{ |
4439 |
RemoveLineStroke(CanvasDrawingMouseDownPoint); |
4440 |
} |
4441 |
IsDrawing = true; |
4442 |
return; |
4443 |
} |
4444 |
default: |
4445 |
if (currentControl != null) |
4446 |
{ |
4447 |
currentControl.CommentID = null; |
4448 |
currentControl.IsNew = false; |
4449 |
} |
4450 |
break; |
4451 |
} |
4452 |
|
4453 |
|
4454 |
if (currentControl is ArrowTextControl) |
4455 |
{ |
4456 |
(currentControl as ArrowTextControl).EditEnded += (snd, evt) => |
4457 |
{ |
4458 |
var control = snd as ArrowTextControl; |
4459 |
|
4460 |
if (string.IsNullOrEmpty(control.ArrowText)) |
4461 |
{ |
4462 |
DeleteCommand.Instance.Execute(new [] { control }); |
4463 |
} |
4464 |
}; |
4465 |
|
4466 |
} |
4467 |
|
4468 |
if (Common.ViewerDataModel.Instance.IsMacroCommand) |
4469 |
{ |
4470 |
if (currentControl == null && mouseHandlingMode == MouseHandlingMode.Drawing) |
4471 |
{ |
4472 |
MacroHelper.MacroAction(); |
4473 |
} |
4474 |
//if (currentControl.ControlType) |
4475 |
//txtBatch.Text = "Draw a TextBox"; |
4476 |
//controlType = ControlType.ArrowTextBorderControl; |
4477 |
} |
4478 |
|
4479 |
//if (currentControl != null) |
4480 |
//{ |
4481 |
// currentControl.PageAngle = pageNavigator.CurrentPage.Angle; |
4482 |
//} |
4483 |
} |
4484 |
if (mouseHandlingMode != MouseHandlingMode.None && e.LeftButton == MouseButtonState.Pressed) |
4485 |
{ |
4486 |
// MACRO 버튼클릭하여 CLOUD RECT 그린 후 |
4487 |
|
4488 |
|
4489 |
if (mouseHandlingMode == MouseHandlingMode.Adorner && SelectLayer.Children.Count > 0) |
4490 |
{ |
4491 |
bool mouseOff = false; |
4492 |
foreach (var item in SelectLayer.Children) |
4493 |
{ |
4494 |
if (item is AdornerFinal) |
4495 |
{ |
4496 |
var over = (item as AdornerFinal).Members.Where(data => data.DrawingData.IsMouseOver).FirstOrDefault(); |
4497 |
if (over != null) |
4498 |
{ |
4499 |
mouseOff = true; |
4500 |
} |
4501 |
} |
4502 |
} |
4503 |
|
4504 |
if (!mouseOff) |
4505 |
{ |
4506 |
SelectionSet.Instance.UnSelect(this); |
4507 |
} |
4508 |
} |
4509 |
zoomAndPanControl.CaptureMouse(); |
4510 |
e.Handled = true; |
4511 |
} |
4512 |
} |
4513 |
|
4514 |
private void zoomAndPanControl2_MouseDown(object sender, MouseButtonEventArgs e) |
4515 |
{ |
4516 |
///mouseButtonDown = e.ChangedButton; |
4517 |
canvasZoommovingMouseDownPoint = e.GetPosition(zoomAndPanCanvas2); |
4518 |
} |
4519 |
|
4520 |
private void RemoveLineStroke(Point P) |
4521 |
{ |
4522 |
var control = ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.IsMouseEnter).FirstOrDefault(); |
4523 |
if (control != null) |
4524 |
{ |
4525 |
DeleteCommand.Instance.Execute(new List<CommentUserInfo>() { control }); |
4526 |
} |
4527 |
} |
4528 |
|
4529 |
private void RemovePointStroke(Point P) |
4530 |
{ |
4531 |
foreach (Stroke hits in inkBoard.Strokes) |
4532 |
{ |
4533 |
foreach (StylusPoint sty in hits.StylusPoints) |
4534 |
{ |
4535 |
} |
4536 |
if (hits.HitTest(P)) |
4537 |
{ |
4538 |
inkBoard.Strokes.Remove(hits); |
4539 |
return; |
4540 |
} |
4541 |
} |
4542 |
} |
4543 |
|
4544 |
private void StartNewStroke(Point P) |
4545 |
{ |
4546 |
strokePoints = new StylusPointCollection(); |
4547 |
StylusPoint segment1Start = new StylusPoint(P.X, P.Y); |
4548 |
strokePoints.Add(segment1Start); |
4549 |
stroke = new Stroke(strokePoints); |
4550 |
|
4551 |
stroke.DrawingAttributes.Color = Colors.Red; |
4552 |
stroke.DrawingAttributes.Width = 4; |
4553 |
stroke.DrawingAttributes.Height = 4; |
4554 |
|
4555 |
inkBoard.Strokes.Add(stroke); |
4556 |
} |
4557 |
|
4558 |
private void btnConsolidate_Click(object sender, RoutedEventArgs e) |
4559 |
{ |
4560 |
//SelectionSet.Instance.UnSelect(this.ParentOfType<MainWindow>().dzMainMenu); |
4561 |
//// update mylist and gridview |
4562 |
//this.UpdateMyMarkupList(); |
4563 |
|
4564 |
//bool result = await this.ParentOfType<MainWindow>().dzTopMenu.ExecuteSaveCommand(this); |
4565 |
|
4566 |
//if (result) |
4567 |
//{ |
4568 |
btnFinalPDF.IsEnabled = false; |
4569 |
|
4570 |
ConsolidationMethod(); |
4571 |
//} |
4572 |
//else |
4573 |
//{ |
4574 |
// MessageBox.Show("오류"); |
4575 |
//} |
4576 |
} |
4577 |
|
4578 |
/// <summary> |
4579 |
/// execute TeamConsolidationCommand |
4580 |
/// </summary> |
4581 |
public void TeamConsolidationMethod() |
4582 |
{ |
4583 |
this.UpdateMyMarkupList(); |
4584 |
if (this.gridViewMarkup.SelectedItems.Count == 0) |
4585 |
{ |
4586 |
this.ParentOfType<MainWindow>().DialogMessage_Alert("Please select at least one user", "Alert"); |
4587 |
} |
4588 |
else |
4589 |
{ |
4590 |
ViewerDataModel.Instance.IsConsolidate = true; |
4591 |
this.ParentOfType<MainWindow>().dzTopMenu._SaveEvent(null, null); |
4592 |
|
4593 |
foreach (MarkupInfoItem item in this.gridViewMarkup.SelectedItems) |
4594 |
{ |
4595 |
if (!this.userData.DEPARTMENT.Equals(item.Depatment)) |
4596 |
{ |
4597 |
this.ParentOfType<MainWindow>().DialogMessage_Alert("Please select at your department", "Alert"); |
4598 |
return; |
4599 |
} |
4600 |
} |
4601 |
List<MarkupInfoItem> MarkupInfoList = new List<MarkupInfoItem>(); |
4602 |
foreach (MarkupInfoItem item in this.gridViewMarkup.SelectedItems) |
4603 |
{ |
4604 |
MarkupInfoList.Add(item); |
4605 |
} |
4606 |
TeamConsolidateCommand.Instance.Execute(MarkupInfoList); |
4607 |
} |
4608 |
} |
4609 |
|
4610 |
public bool ConsolidationMethod() |
4611 |
{ |
4612 |
bool result = false; |
4613 |
|
4614 |
if (this.gridViewMarkup.SelectedItems.Count == 0) |
4615 |
{ |
4616 |
this.ParentOfType<MainWindow>().DialogMessage_Alert("Please select at least one user", "Alert"); |
4617 |
} |
4618 |
else |
4619 |
{ |
4620 |
List<IKCOM.MarkupInfoItem> MySelectItem = new List<IKCOM.MarkupInfoItem>(); |
4621 |
foreach (var item in this.gridViewMarkup.SelectedItems) |
4622 |
{ |
4623 |
MySelectItem.Add(item as IKCOM.MarkupInfoItem); |
4624 |
} |
4625 |
int iPageNo = Convert.ToInt32(this.ParentOfType<MainWindow>().dzTopMenu.tlcurrentPage.Text); |
4626 |
|
4627 |
result = ConsolidateCommand.Instance.Execute(MySelectItem, iPageNo); |
4628 |
} |
4629 |
|
4630 |
return result; |
4631 |
} |
4632 |
|
4633 |
private void btnConsolidate_Loaded(object sender, RoutedEventArgs e) |
4634 |
{ |
4635 |
if (App.ViewInfo != null) |
4636 |
{ |
4637 |
btnConsolidate = (sender as RadRibbonButton); |
4638 |
if (!App.ViewInfo.NewCommentPermission) |
4639 |
{ |
4640 |
(sender as RadRibbonButton).Visibility = System.Windows.Visibility.Collapsed; |
4641 |
} |
4642 |
} |
4643 |
} |
4644 |
|
4645 |
private void btnTeamConsolidate_Click(object sender, RoutedEventArgs e) |
4646 |
{ |
4647 |
TeamConsolidationMethod(); |
4648 |
} |
4649 |
|
4650 |
private void btnTeamConsolidate_Loaded(object sender, RoutedEventArgs e) |
4651 |
{ |
4652 |
btnTeamConsolidate = sender as RadRibbonButton; |
4653 |
if (App.ViewInfo != null) |
4654 |
{ |
4655 |
if (!App.ViewInfo.CreateFinalPDFPermission) //파이널이 True가 아니면 |
4656 |
{ |
4657 |
if (btnConsolidate != null) |
4658 |
{ |
4659 |
btnConsolidate.Visibility = Visibility.Collapsed; |
4660 |
} |
4661 |
|
4662 |
if (!App.ViewInfo.NewCommentPermission) |
4663 |
{ |
4664 |
btnTeamConsolidate.Visibility = Visibility.Collapsed; |
4665 |
} |
4666 |
} |
4667 |
else |
4668 |
{ |
4669 |
btnTeamConsolidate.Visibility = Visibility.Collapsed; |
4670 |
} |
4671 |
} |
4672 |
} |
4673 |
|
4674 |
private async void FinalPDFEvent(object sender, RoutedEventArgs e) |
4675 |
{ |
4676 |
SelectionSet.Instance.UnSelect(this.ParentOfType<MainWindow>().dzMainMenu); |
4677 |
// update mylist and gridview |
4678 |
this.UpdateMyMarkupList(); |
4679 |
|
4680 |
var result = await this.ParentOfType<MainWindow>().dzTopMenu.ExecuteSaveCommand(this); |
4681 |
|
4682 |
if(!result) |
4683 |
{ |
4684 |
|
4685 |
} |
4686 |
else |
4687 |
{ |
4688 |
var item = gridViewMarkup.Items.Cast<MarkupInfoItem>().Where(d => d.Consolidate == 1 && d.AvoidConsolidate == 0).FirstOrDefault(); |
4689 |
|
4690 |
if (item != null) |
4691 |
{ |
4692 |
if (BaseClient.FinalPDF_GetFinalPDFStatus(_DocInfo.ID, item.MarkupInfoID, _ViewInfo.UserID)) |
4693 |
{ |
4694 |
//Logger.sendReqLog("SetFinalPDFAsync", _ViewInfo.ProjectNO + "," + _DocInfo.ID + "," + item.MarkupInfoID + "," + _ViewInfo.UserID, 1); |
4695 |
|
4696 |
BaseClient.SetFinalPDFAsync(_ViewInfo.ProjectNO, _DocInfo.ID, item.MarkupInfoID, _ViewInfo.UserID); |
4697 |
|
4698 |
ViewerDataModel.Instance.FinalPDFTime = DateTime.Now; |
4699 |
} |
4700 |
else |
4701 |
{ |
4702 |
DialogMessage_Alert("Merged PDF가 수행중입니다", "안내"); |
4703 |
} |
4704 |
} |
4705 |
else |
4706 |
{ |
4707 |
//Consolidate 가 없는 경우 |
4708 |
DialogMessage_Alert("Consolidation 된 코멘트가 존재하지 않습니다", "안내"); |
4709 |
} |
4710 |
} |
4711 |
|
4712 |
} |
4713 |
|
4714 |
private void btnFinalPDF_Loaded(object sender, RoutedEventArgs e) |
4715 |
{ |
4716 |
btnFinalPDF = sender as RadRibbonButton; |
4717 |
if (App.ViewInfo != null) |
4718 |
{ |
4719 |
//btnFinalPDF.IsEnabled = false; |
4720 |
|
4721 |
if (!App.ViewInfo.CreateFinalPDFPermission) //파이널이 True가 아니면 |
4722 |
{ |
4723 |
btnFinalPDF.Visibility = System.Windows.Visibility.Collapsed; |
4724 |
if (btnConsolidate != null) |
4725 |
{ |
4726 |
btnConsolidate.Visibility = Visibility.Collapsed; |
4727 |
} |
4728 |
} |
4729 |
} |
4730 |
} |
4731 |
|
4732 |
private async void ConsolidateFinalPDFEvent(object sender, RoutedEventArgs e) |
4733 |
{ |
4734 |
//UpdateMyMarkupList(); |
4735 |
|
4736 |
if (this.gridViewMarkup.SelectedItems.Count == 0) |
4737 |
{ |
4738 |
this.ParentOfType<MainWindow>().DialogMessage_Alert("Please select at least one user", "Alert"); |
4739 |
} |
4740 |
else |
4741 |
{ |
4742 |
//if ((App.ViewInfo.CreateFinalPDFPermission || App.ViewInfo.NewCommentPermission)) |
4743 |
//{ |
4744 |
//컨트롤을 그리는 도중일 경우 컨트롤 삭제 |
4745 |
//ViewerDataModel.Instance.MarkupControls_USER.Remove(ViewerDataModel.Instance.SystemMain.dzMainMenu.currentControl); |
4746 |
//ViewerDataModel.Instance.SystemMain.dzMainMenu.currentControl = null; |
4747 |
|
4748 |
//SelectionSet.Instance.UnSelect(this.ParentOfType<MainWindow>().dzMainMenu); |
4749 |
//// update mylist and gridview |
4750 |
//this.UpdateMyMarkupList(); |
4751 |
|
4752 |
//var result = await this.ParentOfType<MainWindow>().dzTopMenu.ExecuteSaveCommand(this); |
4753 |
|
4754 |
Mouse.SetCursor(Cursors.Wait); |
4755 |
|
4756 |
bool result = ConsolidationMethod(); |
4757 |
|
4758 |
System.Threading.Thread.Sleep(600); |
4759 |
|
4760 |
if (result) |
4761 |
{ |
4762 |
var items = this.BaseClient.GetMarkupInfoItems(App.ViewInfo.ProjectNO, _DocInfo.ID); |
4763 |
|
4764 |
var item2 = items.Where(d => d.Consolidate == 1 && d.AvoidConsolidate == 0).FirstOrDefault(); |
4765 |
if (item2 != null) |
4766 |
{ |
4767 |
if (BaseClient.FinalPDF_GetFinalPDFStatus(_DocInfo.ID, item2.MarkupInfoID, _ViewInfo.UserID)) |
4768 |
{ |
4769 |
//Logger.sendReqLog("SetFinalPDFAsync", _ViewInfo.ProjectNO + "," + _DocInfo.ID + "," + item2.MarkupInfoID + "," + _ViewInfo.UserID, 1); |
4770 |
|
4771 |
BaseClient.SetFinalPDFAsync(_ViewInfo.ProjectNO, _DocInfo.ID, item2.MarkupInfoID, _ViewInfo.UserID); |
4772 |
BaseClient.GetMarkupInfoItemsAsync(App.ViewInfo.ProjectNO, _DocInfo.ID); |
4773 |
|
4774 |
ViewerDataModel.Instance.FinalPDFTime = DateTime.Now; |
4775 |
|
4776 |
Mouse.SetCursor(Cursors.Arrow); |
4777 |
} |
4778 |
else |
4779 |
{ |
4780 |
DialogMessage_Alert("Merged PDF가 수행중입니다. 잠시 후 수행가능합니다.", "안내"); |
4781 |
} |
4782 |
} |
4783 |
else |
4784 |
{ |
4785 |
DialogMessage_Alert("Consolidation 된 코멘트가 존재하지 않습니다", "안내"); |
4786 |
} |
4787 |
} |
4788 |
else |
4789 |
{ |
4790 |
DialogMessage_Alert("서버가 원활하지 않습니다. 다시 수행 바랍니다.", "안내"); |
4791 |
} |
4792 |
|
4793 |
Mouse.SetCursor(Cursors.Arrow); |
4794 |
} |
4795 |
} |
4796 |
|
4797 |
private void btnConsolidateFinalPDF_Loaded(object sender, RoutedEventArgs e) |
4798 |
{ |
4799 |
btnConsolidateFinalPDF = (sender as RadRibbonButton); |
4800 |
#if Hyosung |
4801 |
btnConsolidateFinalPDF.Visibility = System.Windows.Visibility.Collapsed; |
4802 |
#else |
4803 |
|
4804 |
//btnConsolidateFinalPDF.IsEnabled = false; |
4805 |
|
4806 |
if (App.ViewInfo != null) |
4807 |
{ |
4808 |
if (!App.ViewInfo.NewCommentPermission || !App.ViewInfo.CreateFinalPDFPermission) |
4809 |
{ |
4810 |
btnConsolidateFinalPDF.Visibility = System.Windows.Visibility.Collapsed; |
4811 |
} |
4812 |
} |
4813 |
#endif |
4814 |
} |
4815 |
|
4816 |
private void SyncCompare_Click(object sender, RoutedEventArgs e) |
4817 |
{ |
4818 |
SetCompareRect(); |
4819 |
} |
4820 |
|
4821 |
private void Sync_Click(object sender, RoutedEventArgs e) |
4822 |
{ |
4823 |
if (Sync.IsChecked) |
4824 |
{ |
4825 |
ViewerDataModel.Instance.Sync_ContentOffsetX = zoomAndPanControl.ContentOffsetX; |
4826 |
ViewerDataModel.Instance.Sync_ContentOffsetY = zoomAndPanControl.ContentOffsetY; |
4827 |
ViewerDataModel.Instance.Sync_ContentScale = zoomAndPanControl.ContentScale; |
4828 |
} |
4829 |
} |
4830 |
|
4831 |
private void SyncUserListExpender_Click(object sender, RoutedEventArgs e) |
4832 |
{ |
4833 |
if (UserList.IsChecked) |
4834 |
{ |
4835 |
this.gridViewRevMarkup.Visibility = Visibility.Visible; |
4836 |
} |
4837 |
else |
4838 |
{ |
4839 |
this.gridViewRevMarkup.Visibility = Visibility.Collapsed; |
4840 |
} |
4841 |
} |
4842 |
|
4843 |
private void SyncPageBalance_Click(object sender, RoutedEventArgs e) |
4844 |
{ |
4845 |
if (BalanceMode.IsChecked) |
4846 |
{ |
4847 |
ViewerDataModel.Instance.PageBalanceMode = true; |
4848 |
} |
4849 |
else |
4850 |
{ |
4851 |
ViewerDataModel.Instance.PageBalanceMode = false; |
4852 |
ViewerDataModel.Instance.PageBalanceNumber = 0; |
4853 |
} |
4854 |
} |
4855 |
|
4856 |
private void SyncExit_Click(object sender, RoutedEventArgs e) |
4857 |
{ |
4858 |
//초기화 |
4859 |
testPanel2.IsHidden = true; |
4860 |
ViewerDataModel.Instance.PageBalanceMode = false; |
4861 |
ViewerDataModel.Instance.PageBalanceNumber = 0; |
4862 |
ViewerDataModel.Instance.SyncPageNumber = 0; |
4863 |
ViewerDataModel.Instance.MarkupControls_Sync.Clear(); |
4864 |
this.gridViewRevMarkup.Visibility = Visibility.Collapsed; |
4865 |
UserList.IsChecked = false; |
4866 |
BalanceMode.IsChecked = false; |
4867 |
} |
4868 |
|
4869 |
private async void SyncPageChange_Click(object sender, RoutedEventArgs e) |
4870 |
{ |
4871 |
if ((sender as System.Windows.Controls.Control).Tag != null) |
4872 |
{ |
4873 |
//Compare 초기화 |
4874 |
CompareMode.IsChecked = false; |
4875 |
var balancePoint = Convert.ToInt32((sender as System.Windows.Controls.Control).Tag); |
4876 |
|
4877 |
if (ViewerDataModel.Instance.SyncPageNumber == 0) |
4878 |
{ |
4879 |
ViewerDataModel.Instance.SyncPageNumber = 1; |
4880 |
} |
4881 |
|
4882 |
if (ViewerDataModel.Instance.PageBalanceNumber == pageNavigator.PageCount) |
4883 |
{ |
4884 |
} |
4885 |
else |
4886 |
{ |
4887 |
ViewerDataModel.Instance.PageBalanceNumber += balancePoint; |
4888 |
} |
4889 |
|
4890 |
if (ViewerDataModel.Instance.SyncPageNumber == pageNavigator.PageCount && balancePoint > 0) |
4891 |
{ |
4892 |
} |
4893 |
else if ((ViewerDataModel.Instance.SyncPageNumber + balancePoint) >= 1) |
4894 |
{ |
4895 |
ViewerDataModel.Instance.SyncPageNumber += balancePoint; |
4896 |
} |
4897 |
|
4898 |
//pageNavigator.GotoPage(ViewerDataModel.Instance.PageNumber); |
4899 |
|
4900 |
if (!testPanel2.IsHidden) |
4901 |
{ |
4902 |
if (IsSyncPDFMode) |
4903 |
{ |
4904 |
Get_FinalImage.Get_PdfImage get_PdfImage = new Get_FinalImage.Get_PdfImage(); |
4905 |
var pdfpath = new BitmapImage(new Uri(get_PdfImage.Run(CurrentRev.TO_VENDOR, App.ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber))); |
4906 |
|
4907 |
if (pdfpath.IsDownloading) |
4908 |
{ |
4909 |
pdfpath.DownloadCompleted += (ex, arg) => |
4910 |
{ |
4911 |
ViewerDataModel.Instance.ImageViewPath_C = pdfpath; |
4912 |
ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth; |
4913 |
ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight; |
4914 |
zoomAndPanCanvas2.Width = pdfpath.PixelWidth; |
4915 |
zoomAndPanCanvas2.Height = pdfpath.PixelHeight; |
4916 |
}; |
4917 |
} |
4918 |
else |
4919 |
{ |
4920 |
ViewerDataModel.Instance.ImageViewPath_C = pdfpath; |
4921 |
ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth; |
4922 |
ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight; |
4923 |
|
4924 |
zoomAndPanCanvas2.Width = pdfpath.PixelWidth; |
4925 |
zoomAndPanCanvas2.Height = pdfpath.PixelHeight; |
4926 |
} |
4927 |
} |
4928 |
else |
4929 |
{ |
4930 |
string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber); |
4931 |
|
4932 |
var isOriginalSize = !(ViewerDataModel.Instance.SyncPageNumber == pageNavigator.CurrentPage.PageNumber); |
4933 |
ComparePageLoad(uri, isOriginalSize); |
4934 |
} |
4935 |
|
4936 |
//강인구 추가(페이지 이동시 코멘트 재 호출) |
4937 |
ViewerDataModel.Instance.MarkupControls_Sync.Clear(); |
4938 |
List<MarkupInfoItem> gridSelectionRevItem = gridViewRevMarkup.SelectedItems.Cast<MarkupInfoItem>().ToList(); |
4939 |
|
4940 |
foreach (var item in gridSelectionRevItem) |
4941 |
{ |
4942 |
var markupitems = item.MarkupList.Where(pageItem => pageItem.PageNumber == ViewerDataModel.Instance.SyncPageNumber).ToList(); |
4943 |
foreach (var markupitem in markupitems) |
4944 |
{ |
4945 |
await MarkupParser.ParseExAsync(App.BaseAddress, ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls_Sync,0, item.DisplayColor, "", item.MarkupInfoID); |
4946 |
} |
4947 |
} |
4948 |
|
4949 |
tlSyncPageNum.Text = String.Format("Current Page : {0}", ViewerDataModel.Instance.SyncPageNumber); |
4950 |
} |
4951 |
} |
4952 |
} |
4953 |
|
4954 |
private void SyncRotation_Click(object sender,RoutedEventArgs e) |
4955 |
{ |
4956 |
var direction = int.Parse((sender as Telerik.Windows.Controls.RadPathButton).Tag.ToString()); |
4957 |
|
4958 |
double translateX = 0; |
4959 |
double translateY = 0; |
4960 |
double angle = rotate2.Angle; |
4961 |
|
4962 |
if (direction == 1) |
4963 |
{ |
4964 |
if (angle < 270) |
4965 |
{ |
4966 |
angle += 90; |
4967 |
} |
4968 |
else |
4969 |
{ |
4970 |
angle = 0; |
4971 |
} |
4972 |
} |
4973 |
else |
4974 |
{ |
4975 |
if (angle > 0) |
4976 |
{ |
4977 |
angle -= 90; |
4978 |
} |
4979 |
else |
4980 |
{ |
4981 |
angle = 270; |
4982 |
} |
4983 |
} |
4984 |
zoomAndPanControl2.RotationAngle = angle; |
4985 |
zoomAndPanControl2.ScaleToFit(); |
4986 |
|
4987 |
//if (angle == 90 || angle == 270) |
4988 |
//{ |
4989 |
double emptySize = zoomAndPanCanvas2.Width; |
4990 |
zoomAndPanCanvas2.Width = zoomAndPanCanvas2.Height; |
4991 |
zoomAndPanCanvas2.Height = emptySize; |
4992 |
//} |
4993 |
|
4994 |
if (angle == 90) |
4995 |
{ |
4996 |
translateX = zoomAndPanCanvas2.Width; |
4997 |
translateY = 0; |
4998 |
} |
4999 |
else if (angle == 180) |
5000 |
{ |
5001 |
translateX = zoomAndPanCanvas2.Width; |
5002 |
translateY = zoomAndPanCanvas2.Height; |
5003 |
} |
5004 |
else if (angle == 270) |
5005 |
{ |
5006 |
translateX = 0; |
5007 |
translateY = zoomAndPanCanvas2.Height; |
5008 |
} |
5009 |
zoomAndPanControl2.ContentViewportWidth = zoomAndPanCanvas2.Width; |
5010 |
zoomAndPanControl2.ContentViewportHeight = zoomAndPanCanvas2.Height; |
5011 |
translate2.X = translateX; |
5012 |
translate2.Y = translateY; |
5013 |
rotate2.Angle = angle; |
5014 |
//translate2CompareBorder.X = translateX; |
5015 |
//translate2CompareBorder.Y = translateY; |
5016 |
//rotate2CompareBorder.Angle = angle; |
5017 |
|
5018 |
} |
5019 |
|
5020 |
private void SyncChange_Click(object sender, RoutedEventArgs e) |
5021 |
{ |
5022 |
if (MarkupMode.IsChecked) |
5023 |
{ |
5024 |
IsSyncPDFMode = true; |
5025 |
|
5026 |
var uri = CurrentRev.TO_VENDOR; |
5027 |
|
5028 |
if (ViewerDataModel.Instance.SyncPageNumber == 0) |
5029 |
{ |
5030 |
ViewerDataModel.Instance.SyncPageNumber = 1; |
5031 |
} |
5032 |
|
5033 |
//PDF모드 잠시 대기(강인구) |
5034 |
Get_FinalImage.Get_PdfImage get_PdfImage = new Get_FinalImage.Get_PdfImage(); |
5035 |
var pdfpath = new BitmapImage(new Uri(get_PdfImage.Run(CurrentRev.TO_VENDOR, App.ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber))); |
5036 |
|
5037 |
if (pdfpath.IsDownloading) |
5038 |
{ |
5039 |
pdfpath.DownloadCompleted += (ex, arg) => |
5040 |
{ |
5041 |
ViewerDataModel.Instance.ImageViewPath_C = pdfpath; |
5042 |
ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth; |
5043 |
ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight; |
5044 |
zoomAndPanCanvas2.Width = pdfpath.PixelWidth; |
5045 |
zoomAndPanCanvas2.Height = pdfpath.PixelHeight; |
5046 |
}; |
5047 |
} |
5048 |
else |
5049 |
{ |
5050 |
ViewerDataModel.Instance.ImageViewPath_C = pdfpath; |
5051 |
ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth; |
5052 |
ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight; |
5053 |
|
5054 |
zoomAndPanCanvas2.Width = pdfpath.PixelWidth; |
5055 |
zoomAndPanCanvas2.Height = pdfpath.PixelHeight; |
5056 |
} |
5057 |
} |
5058 |
else |
5059 |
{ |
5060 |
IsSyncPDFMode = false; |
5061 |
string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, pageNavigator.CurrentPage.PageNumber); |
5062 |
|
5063 |
ComparePageLoad(uri,false); |
5064 |
|
5065 |
zoomAndPanControl2.ApplyTemplate(); |
5066 |
zoomAndPanControl2.UpdateLayout(); |
5067 |
zoomAndPanCanvas2.Width = Convert.ToDouble(Common.ViewerDataModel.Instance.ContentWidth); |
5068 |
zoomAndPanCanvas2.Height = Convert.ToDouble(Common.ViewerDataModel.Instance.ContentHeight); |
5069 |
} |
5070 |
} |
5071 |
|
5072 |
/// <summary> |
5073 |
/// Compare된 영역을 초기화 |
5074 |
/// </summary> |
5075 |
private void ClearCompareRect() |
5076 |
{ |
5077 |
da.From = 1; |
5078 |
da.To = 1; |
5079 |
da.Duration = new Duration(TimeSpan.FromSeconds(9999)); |
5080 |
da.AutoReverse = false; |
5081 |
canvas_compareBorder.Children.Clear(); |
5082 |
canvas_compareBorder.BeginAnimation(OpacityProperty, da); |
5083 |
} |
5084 |
|
5085 |
/// <summary> |
5086 |
/// 문서 Comprare |
5087 |
/// </summary> |
5088 |
private void SetCompareRect() |
5089 |
{ |
5090 |
canvas_compareBorder.Children.Clear(); |
5091 |
|
5092 |
if (CompareMode.IsChecked) |
5093 |
{ |
5094 |
if (ViewerDataModel.Instance.PageBalanceMode && ViewerDataModel.Instance.PageBalanceNumber == 0) |
5095 |
{ |
5096 |
ViewerDataModel.Instance.PageBalanceNumber = 1; |
5097 |
} |
5098 |
if (ViewerDataModel.Instance.SyncPageNumber == 0) |
5099 |
{ |
5100 |
ViewerDataModel.Instance.SyncPageNumber = 1; |
5101 |
} |
5102 |
|
5103 |
//Logger.sendReqLog("GetCompareRectAsync", _ViewInfo.ProjectNO + "," + _ViewInfo.DocumentItemID + "," + CurrentRev.DOCUMENT_ID +"," + pageNavigator.CurrentPage.PageNumber.ToString() + "," + ViewerDataModel.Instance.PageNumber.ToString() + "," + userData.COMPANY != "EXT" ? "true" : "false", 1); |
5104 |
|
5105 |
/// 비교대상원본, 비교할 대상 |
5106 |
BaseClient.GetCompareRectAsync(_ViewInfo.ProjectNO, _ViewInfo.DocumentItemID, CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber.ToString(), pageNavigator.CurrentPage.PageNumber.ToString(), userData.COMPANY != "EXT" ? "true" : "false"); |
5107 |
} |
5108 |
else |
5109 |
{ |
5110 |
canvas_compareBorder.Visibility = Visibility.Hidden; |
5111 |
ClearCompareRect(); |
5112 |
} |
5113 |
} |
5114 |
|
5115 |
private void btnSync_Click(object sender, RoutedEventArgs e) |
5116 |
{ |
5117 |
gridViewHistory_Busy.IsBusy = true; |
5118 |
|
5119 |
RadButton instance = sender as RadButton; |
5120 |
if (instance.CommandParameter != null) |
5121 |
{ |
5122 |
CurrentRev = instance.CommandParameter as VPRevision; |
5123 |
System.EventHandler<ServiceDeepView.GetSyncMarkupInfoItemsCompletedEventArgs> GetSyncMarkupInfoItemshandler = null; |
5124 |
|
5125 |
GetSyncMarkupInfoItemshandler = (sen, ea) => |
5126 |
{ |
5127 |
if (ea.Error == null && ea.Result != null) |
5128 |
{ |
5129 |
testPanel2.IsHidden = false; |
5130 |
|
5131 |
ViewerDataModel.Instance._markupInfoRevList.Clear(); |
5132 |
foreach (var info in ea.Result) |
5133 |
{ |
5134 |
if (info.UserID == App.ViewInfo.UserID) |
5135 |
{ |
5136 |
info.userDelete = true; |
5137 |
info.DisplayColor = "#FFFF0000"; |
5138 |
} |
5139 |
else |
5140 |
{ |
5141 |
info.userDelete = false; |
5142 |
} |
5143 |
ViewerDataModel.Instance._markupInfoRevList.Add(info); |
5144 |
} |
5145 |
gridViewRevMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoRevList; |
5146 |
|
5147 |
string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, pageNavigator.CurrentPage.PageNumber); |
5148 |
ComparePageLoad(uri,false); |
5149 |
|
5150 |
Sync_Offset_Point = new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY); |
5151 |
|
5152 |
zoomAndPanControl2.ApplyTemplate(); |
5153 |
zoomAndPanControl2.UpdateLayout(); |
5154 |
|
5155 |
if (Sync_Offset_Point != new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY)) |
5156 |
{ |
5157 |
zoomAndPanControl.ContentOffsetX = Sync_Offset_Point.X; |
5158 |
zoomAndPanControl.ContentOffsetY = Sync_Offset_Point.Y; |
5159 |
} |
5160 |
|
5161 |
ViewerDataModel.Instance.Sync_ContentOffsetX = Sync_Offset_Point.X; |
5162 |
ViewerDataModel.Instance.Sync_ContentOffsetY = Sync_Offset_Point.Y; |
5163 |
ViewerDataModel.Instance.Sync_ContentScale = zoomAndPanControl.ContentScale; |
5164 |
|
5165 |
tlSyncRev.Text = String.Format("Rev. {0}", CurrentRev.RevNo); |
5166 |
tlSyncPageNum.Text = String.Format("Current Page : {0}", pageNavigator.CurrentPage.PageNumber); |
5167 |
|
5168 |
zoomAndPanControl.ScaleToFit(); |
5169 |
zoomAndPanControl2.ScaleToFit(); |
5170 |
|
5171 |
gridViewHistory_Busy.IsBusy = false; |
5172 |
} |
5173 |
|
5174 |
//Logger.sendResLog("GetSyncMarkupInfoItemsCompleted", "UserState : " + ea.UserState + "\r Result :" + ea.Result + "\r Cancelled :" + ea.Cancelled + "\r Error :" + ea.Error, 1); |
5175 |
|
5176 |
if (GetSyncMarkupInfoItemshandler != null) |
5177 |
{ |
5178 |
BaseClient.GetSyncMarkupInfoItemsCompleted -= GetSyncMarkupInfoItemshandler; |
5179 |
} |
5180 |
|
5181 |
//ClearCompareRect(); |
5182 |
SetCompareRect(); |
5183 |
}; |
5184 |
|
5185 |
/// 중복 실행이 발생하여 수정함. |
5186 |
BaseClient.GetSyncMarkupInfoItemsCompleted += GetSyncMarkupInfoItemshandler; |
5187 |
BaseClient.GetSyncMarkupInfoItemsAsync(_ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, _ViewInfo.UserID); |
5188 |
|
5189 |
//Logger.sendReqLog("GetSyncMarkupInfoItemsAsync", _ViewInfo.ProjectNO + "," + CurrentRev.DOCUMENT_ID + "," + _ViewInfo.UserID, 1); |
5190 |
} |
5191 |
} |
5192 |
|
5193 |
private void OriginalSizeMode_Click(object sender,RoutedEventArgs e) |
5194 |
{ |
5195 |
string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber); |
5196 |
var isOriginalSize = !(ViewerDataModel.Instance.SyncPageNumber == pageNavigator.CurrentPage.PageNumber); |
5197 |
|
5198 |
ComparePageLoad(uri, OriginalSizeMode.IsChecked); |
5199 |
} |
5200 |
|
5201 |
private void EnsembleLink_Button_Click(object sender, RoutedEventArgs e) |
5202 |
{ |
5203 |
try |
5204 |
{ |
5205 |
if (sender is RadButton) |
5206 |
{ |
5207 |
if ((sender as RadButton).Tag != null) |
5208 |
{ |
5209 |
var url = (sender as RadButton).Tag.ToString(); |
5210 |
System.Diagnostics.Process.Start(url); |
5211 |
} |
5212 |
else |
5213 |
{ |
5214 |
this.ParentOfType<MainWindow>().DialogMessage_Alert("Link 정보가 잘못 되었습니다", "안내"); |
5215 |
} |
5216 |
} |
5217 |
} |
5218 |
catch (Exception ex) |
5219 |
{ |
5220 |
//Logger.sendResLog("EnsembleLink_Button_Click", ex.Message, 0); |
5221 |
} |
5222 |
} |
5223 |
|
5224 |
public void Sync_Event(VPRevision Currnet_Rev) |
5225 |
{ |
5226 |
CurrentRev = Currnet_Rev; |
5227 |
|
5228 |
BaseClient.GetSyncMarkupInfoItemsCompleted += (sen, ea) => |
5229 |
{ |
5230 |
if (ea.Error == null && ea.Result != null) |
5231 |
{ |
5232 |
testPanel2.IsHidden = false; |
5233 |
|
5234 |
ViewerDataModel.Instance._markupInfoRevList.Clear(); |
5235 |
foreach (var info in ea.Result) |
5236 |
{ |
5237 |
if (info.UserID == App.ViewInfo.UserID) |
5238 |
{ |
5239 |
info.userDelete = true; |
5240 |
info.DisplayColor = "#FFFF0000"; |
5241 |
} |
5242 |
else |
5243 |
{ |
5244 |
info.userDelete = false; |
5245 |
} |
5246 |
ViewerDataModel.Instance._markupInfoRevList.Add(info); |
5247 |
} |
5248 |
gridViewRevMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoRevList; |
5249 |
|
5250 |
string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, pageNavigator.CurrentPage.PageNumber); |
5251 |
|
5252 |
Sync_Offset_Point = new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY); |
5253 |
|
5254 |
ComparePageLoad(uri,false); |
5255 |
|
5256 |
zoomAndPanCanvas2.Width = Convert.ToDouble(Common.ViewerDataModel.Instance.ContentWidth); |
5257 |
zoomAndPanCanvas2.Height = Convert.ToDouble(Common.ViewerDataModel.Instance.ContentHeight); |
5258 |
zoomAndPanControl2.ApplyTemplate(); |
5259 |
zoomAndPanControl2.UpdateLayout(); |
5260 |
|
5261 |
if (Sync_Offset_Point != new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY)) |
5262 |
{ |
5263 |
zoomAndPanControl.ContentOffsetX = Sync_Offset_Point.X; |
5264 |
zoomAndPanControl.ContentOffsetY = Sync_Offset_Point.Y; |
5265 |
} |
5266 |
//} |
5267 |
|
5268 |
tlSyncRev.Text = String.Format("Rev. {0}", CurrentRev.RevNo); |
5269 |
tlSyncPageNum.Text = String.Format("Current Page : {0}", pageNavigator.CurrentPage.PageNumber); |
5270 |
gridViewHistory_Busy.IsBusy = false; |
5271 |
} |
5272 |
//Logger.sendResLog("GetSyncMarkupInfoItemsCompleted", "UserState : " + ea.UserState + "\r Result :" + ea.Result + "\r Cancelled :" + ea.Cancelled + "\r Error :" + ea.Error, 1); |
5273 |
}; |
5274 |
//Logger.sendReqLog("GetSyncMarkupInfoItemsAsync", _ViewInfo.ProjectNO + "," + CurrentRev.DOCUMENT_ID + "," + _ViewInfo.UserID, 1); |
5275 |
BaseClient.GetSyncMarkupInfoItemsAsync(_ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, _ViewInfo.UserID); |
5276 |
} |
5277 |
|
5278 |
private void PdfLink_ButtonDown(object sender, MouseButtonEventArgs e) |
5279 |
{ |
5280 |
if (sender is Image) |
5281 |
{ |
5282 |
if ((sender as Image).Tag != null) |
5283 |
{ |
5284 |
var pdfUrl = (sender as Image).Tag.ToString(); |
5285 |
System.Diagnostics.Process.Start(pdfUrl); |
5286 |
} |
5287 |
else |
5288 |
{ |
5289 |
this.ParentOfType<MainWindow>().DialogMessage_Alert("문서 정보가 잘못 되었습니다", "안내"); |
5290 |
} |
5291 |
} |
5292 |
} |
5293 |
|
5294 |
private void Create_Symbol(object sender, RoutedEventArgs e) |
5295 |
{ |
5296 |
MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn markupReturn = new MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn(); |
5297 |
|
5298 |
if (SelectLayer.Children.Count < 1) //선택된 것이 없으면 |
5299 |
{ |
5300 |
DialogMessage_Alert("Please Select Controls", "Alert"); |
5301 |
} |
5302 |
else //선택된 것이 있으면 |
5303 |
{ |
5304 |
string MarkupData = ""; |
5305 |
adorner_ = new AdornerFinal(); |
5306 |
|
5307 |
foreach (var item in SelectLayer.Children) |
5308 |
{ |
5309 |
if (item.GetType().Name == "AdornerFinal") |
5310 |
{ |
5311 |
adorner_ = (item as Controls.AdornerFinal); |
5312 |
foreach (var InnerItem in (item as Controls.AdornerFinal).Members.Cast<Controls.AdornerMember>()) |
5313 |
{ |
5314 |
if (!ViewerDataModel.Instance.MarkupControls.Contains(InnerItem.DrawingData)) |
5315 |
{ |
5316 |
markupReturn = MarkupParser.MarkupToString(InnerItem.DrawingData as MarkupToPDF.Common.CommentUserInfo, App.ViewInfo.UserID); |
5317 |
MarkupData += markupReturn.ConvertData; |
5318 |
} |
5319 |
} |
5320 |
} |
5321 |
} |
5322 |
DialogParameters parameters = new DialogParameters() |
5323 |
{ |
5324 |
Owner = Application.Current.MainWindow, |
5325 |
Closed = (obj, args) => this.MarkupNamePromptClose(MarkupData, args), |
5326 |
DefaultPromptResultValue = "Custom State", |
5327 |
Content = "Name :", |
5328 |
Header = "Insert Custom Symbol Name", |
5329 |
Theme = new VisualStudio2013Theme(), |
5330 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
5331 |
}; |
5332 |
RadWindow.Prompt(parameters); |
5333 |
} |
5334 |
} |
5335 |
|
5336 |
public int symbolselectindex = 0; |
5337 |
|
5338 |
private void SymbolMarkupNamePromptClose(byte[] Img_byte, string data, WindowClosedEventArgs args) |
5339 |
{ |
5340 |
//Save save = new Save(); |
5341 |
try |
5342 |
{ |
5343 |
string svgfilename = null; |
5344 |
if (symbolname != null) |
5345 |
{ |
5346 |
if (symbolpng == true || symbolsvg == true) |
5347 |
{ |
5348 |
kr.co.devdoftech.cloud.FileUpload fileUploader = App.FileUploader; |
5349 |
string guid = Commons.shortGuid(); |
5350 |
|
5351 |
fileUploader.RunAsync(App.ViewInfo.ProjectNO, _DocItem.DOCUMENT_NO, App.ViewInfo.UserID, guid + ".png", Img_byte); |
5352 |
//Check_Uri.UriCheck(); |
5353 |
fileUploader.RunCompleted += (ex, arg) => |
5354 |
{ |
5355 |
filename = arg.Result; |
5356 |
if (symbolpng == true) |
5357 |
{ |
5358 |
if (filename != null) |
5359 |
{ |
5360 |
if (symbolselectindex == 0) |
5361 |
{ |
5362 |
SymbolSave(symbolname, filename, data); |
5363 |
} |
5364 |
else |
5365 |
{ |
5366 |
SymbolSave_Public(symbolname, filename, data, ViewerDataModel.Instance.SystemMain.dzMainMenu.userData.DEPARTMENT); |
5367 |
} |
5368 |
DataBind(); |
5369 |
} |
5370 |
} |
5371 |
|
5372 |
if (symbolsvg == true) |
5373 |
{ |
5374 |
try |
5375 |
{ |
5376 |
var defaultBitmapImage = new BitmapImage(); |
5377 |
defaultBitmapImage.BeginInit(); |
5378 |
defaultBitmapImage.CreateOptions = BitmapCreateOptions.IgnoreImageCache; |
5379 |
defaultBitmapImage.CacheOption = BitmapCacheOption.OnLoad; |
5380 |
Check_Uri.UriCheck(filename); |
5381 |
defaultBitmapImage.UriSource = new Uri(filename); |
5382 |
defaultBitmapImage.EndInit(); |
5383 |
|
5384 |
System.Drawing.Bitmap image; |
5385 |
|
5386 |
if (defaultBitmapImage.IsDownloading) |
5387 |
{ |
5388 |
defaultBitmapImage.DownloadCompleted += (ex2, arg2) => |
5389 |
{ |
5390 |
defaultBitmapImage.Freeze(); |
5391 |
image = GetBitmap(defaultBitmapImage); |
5392 |
image.Save(@AppDomain.CurrentDomain.BaseDirectory + "potrace.bmp", System.Drawing.Imaging.ImageFormat.Bmp); |
5393 |
Process potrace = new Process |
5394 |
{ |
5395 |
StartInfo = new ProcessStartInfo |
5396 |
{ |
5397 |
FileName = @AppDomain.CurrentDomain.BaseDirectory + "potrace.exe", |
5398 |
Arguments = "-b svg " + @AppDomain.CurrentDomain.BaseDirectory + "potrace.bmp", |
5399 |
RedirectStandardInput = true, |
5400 |
RedirectStandardOutput = true, |
5401 |
RedirectStandardError = true, |
5402 |
UseShellExecute = false, |
5403 |
CreateNoWindow = true, |
5404 |
WindowStyle = ProcessWindowStyle.Hidden |
5405 |
}, |
5406 |
}; |
5407 |
|
5408 |
StringBuilder svgBuilder = new StringBuilder(); |
5409 |
potrace.OutputDataReceived += (object sender2, DataReceivedEventArgs e2) => |
5410 |
{ |
5411 |
svgBuilder.AppendLine(e2.Data); |
5412 |
}; |
5413 |
|
5414 |
potrace.EnableRaisingEvents = true; |
5415 |
potrace.Start(); |
5416 |
potrace.Exited += (sender, e) => |
5417 |
{ |
5418 |
byte[] bytes = System.IO.File.ReadAllBytes(@AppDomain.CurrentDomain.BaseDirectory + "potrace.svg"); |
5419 |
svgfilename = fileUploader.Run(App.ViewInfo.ProjectNO, _DocItem.DOCUMENT_NO, App.ViewInfo.UserID, guid + ".svg", bytes); |
5420 |
Check_Uri.UriCheck(svgfilename); |
5421 |
if (symbolselectindex == 0) |
5422 |
{ |
5423 |
SymbolSave(symbolname, svgfilename, data); |
5424 |
} |
5425 |
else |
5426 |
{ |
5427 |
SymbolSave_Public(symbolname, svgfilename, data, ViewerDataModel.Instance.SystemMain.dzMainMenu.userData.DEPARTMENT); |
5428 |
} |
5429 |
|
5430 |
DataBind(); |
5431 |
}; |
5432 |
potrace.WaitForExit(); |
5433 |
}; |
5434 |
} |
5435 |
else |
5436 |
{ |
5437 |
//GC.Collect(); |
5438 |
} |
5439 |
} |
5440 |
catch (Exception ee) |
5441 |
{ |
5442 |
DialogMessage_Alert("" + ee, "Alert"); |
5443 |
} |
5444 |
} |
5445 |
}; |
5446 |
} |
5447 |
} |
5448 |
} |
5449 |
catch (Exception e) |
5450 |
{ |
5451 |
//DialogMessage_Alert(e + "", "Alert"); |
5452 |
} |
5453 |
} |
5454 |
|
5455 |
public void SymbolSave(string Name, string Url, string Data) |
5456 |
{ |
5457 |
try |
5458 |
{ |
5459 |
SYMBOL_PRIVATE symbol_private = new SYMBOL_PRIVATE |
5460 |
{ |
5461 |
ID = Commons.shortGuid(), |
5462 |
MEMBER_USER_ID = App.ViewInfo.UserID, |
5463 |
NAME = Name, |
5464 |
IMAGE_URL = Url, |
5465 |
DATA = Data |
5466 |
}; |
5467 |
|
5468 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.SaveSymbolCompleted += BaseClient_SaveSymbolCompleted; |
5469 |
//Logger.sendReqLog("SaveSymbolAsync: ", symbol_private.ID + "," + symbol_private.MEMBER_USER_ID + "," + symbol_private.NAME + "," + symbol_private.IMAGE_URL + "," + symbol_private.DATA, 1); |
5470 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.SaveSymbolAsync(symbol_private); |
5471 |
} |
5472 |
catch (Exception) |
5473 |
{ |
5474 |
throw; |
5475 |
} |
5476 |
} |
5477 |
|
5478 |
public void SymbolSave_Public(string Name, string Url, string Data, string Department) |
5479 |
{ |
5480 |
try |
5481 |
{ |
5482 |
SYMBOL_PUBLIC symbol_public = new SYMBOL_PUBLIC |
5483 |
{ |
5484 |
ID = Commons.shortGuid(), |
5485 |
DEPARTMENT = Department, |
5486 |
NAME = Name, |
5487 |
IMAGE_URL = Url, |
5488 |
DATA = Data |
5489 |
}; |
5490 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.AddPublicSymbolCompleted += BaseClient_AddPublicSymbolCompleted; |
5491 |
//Logger.sendReqLog("AddPublicSymbol: ", symbol_public.ID + "," + symbol_public.DEPARTMENT + "," + symbol_public.NAME + "," + symbol_public.IMAGE_URL + "," + symbol_public.DATA, 1); |
5492 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.AddPublicSymbol(symbol_public); |
5493 |
} |
5494 |
catch (Exception) |
5495 |
{ |
5496 |
throw; |
5497 |
} |
5498 |
} |
5499 |
|
5500 |
private void BaseClient_AddPublicSymbolCompleted(object sender, ServiceDeepView.AddPublicSymbolCompletedEventArgs e) |
5501 |
{ |
5502 |
//Logger.sendResLog("AddPublicSymbolCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
5503 |
DataBind(); |
5504 |
} |
5505 |
|
5506 |
private void BaseClient_SaveSymbolCompleted(object sender, ServiceDeepView.SaveSymbolCompletedEventArgs e) |
5507 |
{ |
5508 |
//Logger.sendResLog("RenameSymbolCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
5509 |
DataBind(); |
5510 |
} |
5511 |
|
5512 |
private void DataBind() |
5513 |
{ |
5514 |
try |
5515 |
{ |
5516 |
Symbol_Custom Custom = new Symbol_Custom(); |
5517 |
List<Symbol_Custom> Custom_List = new List<Symbol_Custom>(); |
5518 |
|
5519 |
var symbol_Private = BaseClient.GetSymbolList(App.ViewInfo.UserID); |
5520 |
foreach (var item in symbol_Private) |
5521 |
{ |
5522 |
Custom.Name = item.NAME; |
5523 |
Custom.ImageUri = item.IMAGE_URL; |
5524 |
Custom.ID = item.ID; |
5525 |
Custom_List.Add(Custom); |
5526 |
Custom = new Symbol_Custom(); |
5527 |
} |
5528 |
symbolPanel_Instance.lstSymbolPrivate.ItemsSource = Custom_List; |
5529 |
|
5530 |
Custom = new Symbol_Custom(); |
5531 |
Custom_List = new List<Symbol_Custom>(); |
5532 |
|
5533 |
symbolPanel_Instance.deptlist.ItemsSource = BaseClient.GetPublicSymbolDeptList(); |
5534 |
|
5535 |
List<SYMBOL_PUBLIC> symbol_Public; |
5536 |
|
5537 |
if (symbolPanel_Instance.deptlist.SelectedValue != null) |
5538 |
{ |
5539 |
symbol_Public = BaseClient.GetPublicSymbolList(symbolPanel_Instance.deptlist.SelectedValue.ToString()); |
5540 |
} |
5541 |
else |
5542 |
{ |
5543 |
symbol_Public = BaseClient.GetPublicSymbolList(null); |
5544 |
} |
5545 |
foreach (var item in symbol_Public) |
5546 |
{ |
5547 |
Custom.Name = item.NAME; |
5548 |
Custom.ImageUri = item.IMAGE_URL; |
5549 |
Custom.ID = item.ID; |
5550 |
Custom_List.Add(Custom); |
5551 |
Custom = new Symbol_Custom(); |
5552 |
} |
5553 |
symbolPanel_Instance.lstSymbolPublic.ItemsSource = Custom_List; |
5554 |
BaseClient.Close(); |
5555 |
} |
5556 |
catch (Exception e) |
5557 |
{ |
5558 |
//DialogMessage_Alert("DataBind", "Alert"); |
5559 |
} |
5560 |
} |
5561 |
|
5562 |
private async void MarkupNamePromptClose(string data, WindowClosedEventArgs args) |
5563 |
{ |
5564 |
try |
5565 |
{ |
5566 |
if (args.PromptResult != null) |
5567 |
{ |
5568 |
if (args.DialogResult.Value) |
5569 |
{ |
5570 |
PngBitmapEncoder _Encoder = await symImageAsync(data); |
5571 |
|
5572 |
System.IO.MemoryStream fs = new System.IO.MemoryStream(); |
5573 |
_Encoder.Save(fs); |
5574 |
System.Drawing.Image ImgOut = System.Drawing.Image.FromStream(fs); |
5575 |
|
5576 |
byte[] Img_byte = fs.ToArray(); |
5577 |
|
5578 |
kr.co.devdoftech.cloud.FileUpload fileUploader = App.FileUploader; |
5579 |
filename = fileUploader.Run(App.ViewInfo.ProjectNO, _DocItem.DOCUMENT_NO, App.ViewInfo.UserID, Commons.shortGuid() + ".png", Img_byte); |
5580 |
Check_Uri.UriCheck(filename); |
5581 |
if (symbolPanel_Instance.RadTab.SelectedIndex == 0) |
5582 |
{ |
5583 |
SaveCommand.Instance.SymbolSave(args.PromptResult, filename, data); |
5584 |
} |
5585 |
else |
5586 |
{ |
5587 |
SaveCommand.Instance.SymbolSave_Public(args.PromptResult, filename, data, ViewerDataModel.Instance.SystemMain.dzMainMenu.userData.DEPARTMENT); |
5588 |
} |
5589 |
DataBind(); |
5590 |
} |
5591 |
} |
5592 |
} |
5593 |
catch (Exception ex) |
5594 |
{ |
5595 |
DialogMessage_Alert("" + ex, "Alert"); |
5596 |
} |
5597 |
} |
5598 |
|
5599 |
public async Task<PngBitmapEncoder> symImageAsync(string data) |
5600 |
{ |
5601 |
Canvas _canvas = new Canvas(); |
5602 |
_canvas.Background = Brushes.White; |
5603 |
_canvas.Width = adorner_.BorderSize.Width; |
5604 |
_canvas.Height = adorner_.BorderSize.Height; |
5605 |
await MarkupParser.ParseAsync(App.BaseAddress, App.ViewInfo.ProjectNO, data, _canvas,ViewerDataModel.Instance.PageAngle, "#FFFF0000", "", ViewerDataModel.Instance.CancellationToken()); |
5606 |
|
5607 |
BitmapEncoder encoder = new PngBitmapEncoder(); |
5608 |
|
5609 |
RenderTargetBitmap renderBitmap = new RenderTargetBitmap((int)_canvas.Width + 50, (int)_canvas.Height + 50, 96d, 96d, PixelFormats.Pbgra32); |
5610 |
|
5611 |
DrawingVisual dv = new DrawingVisual(); |
5612 |
|
5613 |
_canvas.Measure(new System.Windows.Size(adorner_.BorderSize.Width + 50, adorner_.BorderSize.Height + 50)); |
5614 |
_canvas.Arrange(new Rect(new System.Windows.Point { X = -adorner_.BorderSize.X - 20, Y = -adorner_.BorderSize.Y - 20 }, new Point(adorner_.BorderSize.Width + 20, adorner_.BorderSize.Height + 20))); |
5615 |
|
5616 |
using (DrawingContext ctx = dv.RenderOpen()) |
5617 |
{ |
5618 |
VisualBrush vb = new VisualBrush(_canvas); |
5619 |
ctx.DrawRectangle(vb, null, new Rect(new System.Windows.Point { X = -adorner_.BorderSize.X, Y = -adorner_.BorderSize.Y }, new Point(adorner_.BorderSize.Width + 20, adorner_.BorderSize.Height + 20))); |
5620 |
} |
5621 |
|
5622 |
try |
5623 |
{ |
5624 |
renderBitmap.Render(dv); |
5625 |
|
5626 |
GC.Collect(2); |
5627 |
GC.WaitForPendingFinalizers(); |
5628 |
//GC.Collect(); |
5629 |
// encode png data |
5630 |
PngBitmapEncoder pngEncoder = new PngBitmapEncoder(); |
5631 |
// puch rendered bitmap into it |
5632 |
pngEncoder.Interlace = PngInterlaceOption.Off; |
5633 |
pngEncoder.Frames.Add(BitmapFrame.Create(renderBitmap)); |
5634 |
return pngEncoder; |
5635 |
} |
5636 |
catch //(Exception ex) |
5637 |
{ |
5638 |
return null; |
5639 |
} |
5640 |
} |
5641 |
|
5642 |
public void DialogMessage_Alert(string content, string header) |
5643 |
{ |
5644 |
App.splashScreen.Close(); |
5645 |
App.FileLogger.Error(content + " " + header); |
5646 |
|
5647 |
DialogParameters parameters = new DialogParameters() |
5648 |
{ |
5649 |
Owner = this.ParentOfType<MainWindow>(), |
5650 |
Content = new TextBlock() |
5651 |
{ |
5652 |
MinWidth = 400, |
5653 |
FontSize = 11, |
5654 |
Text = content, |
5655 |
TextWrapping = System.Windows.TextWrapping.Wrap |
5656 |
}, |
5657 |
DialogStartupLocation = WindowStartupLocation.CenterOwner, |
5658 |
Header = header, |
5659 |
Theme = new VisualStudio2013Theme(), |
5660 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
5661 |
}; |
5662 |
RadWindow.Alert(parameters); |
5663 |
} |
5664 |
|
5665 |
#region 캡쳐 기능 |
5666 |
|
5667 |
public BitmapSource CutAreaToImage(int x, int y, int width, int height) |
5668 |
{ |
5669 |
if (x < 0) |
5670 |
{ |
5671 |
width += x; |
5672 |
x = 0; |
5673 |
} |
5674 |
if (y < 0) |
5675 |
{ |
5676 |
height += y; |
5677 |
y = 0; |
5678 |
|
5679 |
width = (int)zoomAndPanCanvas.ActualWidth - x; |
5680 |
} |
5681 |
if (x + width > zoomAndPanCanvas.ActualWidth) |
5682 |
{ |
5683 |
width = (int)zoomAndPanCanvas.ActualWidth - x; |
5684 |
} |
5685 |
if (y + height > zoomAndPanCanvas.ActualHeight) |
5686 |
{ |
5687 |
height = (int)zoomAndPanCanvas.ActualHeight - y; |
5688 |
} |
5689 |
|
5690 |
byte[] pixels = CopyPixels(x, y, width, height); |
5691 |
|
5692 |
int stride = (width * canvasImage.Format.BitsPerPixel + 7) / 8; |
5693 |
|
5694 |
return BitmapSource.Create(width, height, 96, 96, PixelFormats.Pbgra32, null, pixels, stride); |
5695 |
} |
5696 |
|
5697 |
public byte[] CopyPixels(int x, int y, int width, int height) |
5698 |
{ |
5699 |
byte[] pixels = new byte[width * height * 4]; |
5700 |
int stride = (width * canvasImage.Format.BitsPerPixel + 7) / 8; |
5701 |
|
5702 |
// Canvas 이미지에서 객체 역역만큼 픽셀로 복사 |
5703 |
canvasImage.CopyPixels(new Int32Rect(x, y, width, height), pixels, stride, 0); |
5704 |
|
5705 |
return pixels; |
5706 |
} |
5707 |
|
5708 |
public RenderTargetBitmap ConverterBitmapImage(FrameworkElement element) |
5709 |
{ |
5710 |
DrawingVisual drawingVisual = new DrawingVisual(); |
5711 |
DrawingContext drawingContext = drawingVisual.RenderOpen(); |
5712 |
|
5713 |
// 해당 객체의 그래픽요소로 사각형의 그림을 그립니다. |
5714 |
drawingContext.DrawRectangle(new VisualBrush(element), null, |
5715 |
new Rect(new Point(0, 0), new Point(element.ActualWidth, element.ActualHeight))); |
5716 |
drawingContext.Close(); |
5717 |
|
5718 |
// 비트맵으로 변환합니다. |
5719 |
RenderTargetBitmap target = |
5720 |
new RenderTargetBitmap((int)element.ActualWidth, (int)element.ActualHeight, |
5721 |
96, 96, System.Windows.Media.PixelFormats.Pbgra32); |
5722 |
|
5723 |
target.Render(drawingVisual); |
5724 |
return target; |
5725 |
} |
5726 |
|
5727 |
private System.Drawing.Bitmap GetBitmap(BitmapSource source) |
5728 |
{ |
5729 |
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(source.PixelWidth, source.PixelHeight, System.Drawing.Imaging.PixelFormat.Format32bppPArgb); |
5730 |
System.Drawing.Imaging.BitmapData data = bmp.LockBits(new System.Drawing.Rectangle(System.Drawing.Point.Empty, bmp.Size), System.Drawing.Imaging.ImageLockMode.WriteOnly, System.Drawing.Imaging.PixelFormat.Format32bppPArgb); |
5731 |
source.CopyPixels(Int32Rect.Empty, data.Scan0, data.Height * data.Stride, data.Stride); |
5732 |
bmp.UnlockBits(data); |
5733 |
return bmp; |
5734 |
} |
5735 |
|
5736 |
public string symbolname = null; |
5737 |
public bool symbolsvg = true; |
5738 |
public bool symbolpng = true; |
5739 |
|
5740 |
public void Save_Symbol_Capture(BitmapSource source, int x, int y, int width, int height) |
5741 |
{ |
5742 |
System.Drawing.Bitmap image = GetBitmap(source); |
5743 |
//흰색 제거 |
5744 |
//image.MakeTransparent(System.Drawing.Color.White); |
5745 |
|
5746 |
var imageStream = new System.IO.MemoryStream(); |
5747 |
byte[] imageBytes = null; |
5748 |
using (imageStream) |
5749 |
{ |
5750 |
image.Save(imageStream, System.Drawing.Imaging.ImageFormat.Png); |
5751 |
// test.Save(@"E:\test.png", System.Drawing.Imaging.ImageFormat.Png); |
5752 |
imageStream.Position = 0; |
5753 |
imageBytes = imageStream.ToArray(); |
5754 |
} |
5755 |
|
5756 |
SymbolPrompt symbolPrompt = new SymbolPrompt(); |
5757 |
|
5758 |
RadWindow CheckPop = new RadWindow(); |
5759 |
//Alert check = new Alert(Msg); |
5760 |
|
5761 |
CheckPop = new RadWindow |
5762 |
{ |
5763 |
MinWidth = 400, |
5764 |
MinHeight = 100, |
5765 |
// Closed = (obj, args) => this.SymbolMarkupNamePromptClose(imageBytes, "", args), |
5766 |
Header = "Alert", |
5767 |
Content = symbolPrompt, |
5768 |
//DialogResult = |
5769 |
ResizeMode = System.Windows.ResizeMode.NoResize, |
5770 |
WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen, |
5771 |
IsTopmost = true, |
5772 |
}; |
5773 |
CheckPop.Closed += (obj, args) => this.SymbolMarkupNamePromptClose(imageBytes, "", args); |
5774 |
StyleManager.SetTheme(CheckPop, new Office2013Theme()); |
5775 |
CheckPop.ShowDialog(); |
5776 |
|
5777 |
/* |
5778 |
DialogParameters parameters = new DialogParameters() |
5779 |
{ |
5780 |
Owner = Application.Current.MainWindow, |
5781 |
Closed = (obj, args) => this.SymbolMarkupNamePromptClose(imageBytes, "", args), |
5782 |
DefaultPromptResultValue = "Custom State", |
5783 |
Content = "Name :", |
5784 |
Header = "Insert Custom Symbol Name", |
5785 |
Theme = new VisualStudio2013Theme(), |
5786 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
5787 |
}; |
5788 |
RadWindow.Prompt(parameters); |
5789 |
*/ |
5790 |
} |
5791 |
|
5792 |
public void Save_Capture(BitmapSource source, int x, int y, int width, int height) |
5793 |
{ |
5794 |
KCOM.Common.Converter.FileStreamToBase64 streamToBase64 = new Common.Converter.FileStreamToBase64(); |
5795 |
KCOMDataModel.DataModel.CHECK_LIST check_; |
5796 |
string Result = streamToBase64.ImageToBase64(source); |
5797 |
KCOMDataModel.DataModel.CHECK_LIST Item = new KCOMDataModel.DataModel.CHECK_LIST(); |
5798 |
string projectno = App.ViewInfo.ProjectNO; |
5799 |
string checklist_id = ViewerDataModel.Instance.CheckList_ID; |
5800 |
|
5801 |
//Logger.sendReqLog("GetCheckList", projectno + "," + checklist_id, 1); |
5802 |
Item = this.BaseClient.GetCheckList(projectno, checklist_id); |
5803 |
if (Item != null) |
5804 |
{ |
5805 |
//Logger.sendResLog("GetCheckList", "TRUE", 1); |
5806 |
} |
5807 |
else |
5808 |
{ |
5809 |
//Logger.sendResLog("GetCheckList", "FALSE", 1); |
5810 |
} |
5811 |
|
5812 |
if (Item == null) |
5813 |
{ |
5814 |
check_ = new KCOMDataModel.DataModel.CHECK_LIST |
5815 |
{ |
5816 |
ID = Commons.shortGuid(), |
5817 |
USER_ID = App.ViewInfo.UserID, |
5818 |
IMAGE_URL = Result, |
5819 |
IMAGE_ANCHOR = x + "," + y + "," + width + "," + height, |
5820 |
PAGENUMBER = this.pageNavigator.CurrentPage.PageNumber, |
5821 |
REVISION = ViewerDataModel.Instance.SystemMain.dzMainMenu.CurrentDoc.Revision, |
5822 |
DOCUMENT_ID = App.ViewInfo.DocumentItemID, |
5823 |
PROJECT_NO = App.ViewInfo.ProjectNO, |
5824 |
STATUS = "False", |
5825 |
CREATE_TIME = DateTime.Now, |
5826 |
UPDATE_TIME = DateTime.Now, |
5827 |
DOCUMENT_NO = _DocItem.DOCUMENT_NO, |
5828 |
STATUS_DESC_OPEN = "Vendor 반영 필요", |
5829 |
}; |
5830 |
Logger.sendReqLog("AddCheckList", projectno + "," + check_, 1); |
5831 |
//Logger.sendResLog("AddCheckList", this.BaseClient.AddCheckList(projectno, check_).ToString(), 1); |
5832 |
this.BaseClient.AddCheckList(projectno, check_); |
5833 |
} |
5834 |
else |
5835 |
{ |
5836 |
Item.IMAGE_URL = Result; |
5837 |
Item.IMAGE_ANCHOR = x + "," + y + "," + width + "," + height; |
5838 |
Item.PAGENUMBER = this.pageNavigator.CurrentPage.PageNumber; |
5839 |
Logger.sendReqLog("SaveCheckList", projectno + "," + checklist_id + "," + Item, 1); |
5840 |
//Logger.sendResLog("SaveCheckList", this.BaseClient.SaveCheckList(projectno, checklist_id, Item).ToString(), 1); |
5841 |
this.BaseClient.SaveCheckList(projectno, checklist_id, Item); |
5842 |
} |
5843 |
} |
5844 |
|
5845 |
public void Set_Capture() |
5846 |
{ |
5847 |
double x = CanvasDrawingMouseDownPoint.X; |
5848 |
double y = CanvasDrawingMouseDownPoint.Y; |
5849 |
double width = dragCaptureBorder.Width; |
5850 |
double height = dragCaptureBorder.Height; |
5851 |
|
5852 |
if (width > 5 || height > 5) |
5853 |
{ |
5854 |
canvasImage = ConverterBitmapImage(zoomAndPanCanvas); |
5855 |
BitmapSource source = CutAreaToImage((int)x, (int)y, (int)width, (int)height); |
5856 |
Save_Capture(source, (int)x, (int)y, (int)width, (int)height); |
5857 |
} |
5858 |
} |
5859 |
|
5860 |
#endregion 캡쳐 기능 |
5861 |
|
5862 |
public Multi_Undo_data Control_Style(CommentUserInfo control) |
5863 |
{ |
5864 |
multi_Undo_Data = new Multi_Undo_data(); |
5865 |
|
5866 |
multi_Undo_Data.Markup = control; |
5867 |
|
5868 |
if ((control as IShapeControl) != null) |
5869 |
{ |
5870 |
multi_Undo_Data.paint = (control as IShapeControl).Paint; |
5871 |
} |
5872 |
if ((control as IDashControl) != null) |
5873 |
{ |
5874 |
multi_Undo_Data.DashSize = (control as IDashControl).DashSize; |
5875 |
} |
5876 |
if ((control as IPath) != null) |
5877 |
{ |
5878 |
multi_Undo_Data.LineSize = (control as IPath).LineSize; |
5879 |
} |
5880 |
if ((control as UIElement) != null) |
5881 |
{ |
5882 |
multi_Undo_Data.Opacity = (control as UIElement).Opacity; |
5883 |
} |
5884 |
|
5885 |
return multi_Undo_Data; |
5886 |
} |
5887 |
|
5888 |
private async void Comment_Move(object sender, MouseButtonEventArgs e) |
5889 |
{ |
5890 |
string Select_ID = (((e.Source as Telerik.Windows.Controls.RadButton).DataContext) as IKCOM.MarkupInfoItem).MarkupInfoID; |
5891 |
foreach (var items in ViewerDataModel.Instance._markupInfoRevList) |
5892 |
{ |
5893 |
if (items.MarkupInfoID == Select_ID) |
5894 |
{ |
5895 |
foreach (var item in items.MarkupList) |
5896 |
{ |
5897 |
if (item.PageNumber == pageNavigator.CurrentPage.PageNumber) |
5898 |
{ |
5899 |
await MarkupParser.ParseExAsync(App.BaseAddress, ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, item.Data, Common.ViewerDataModel.Instance.MarkupControls_USER,ViewerDataModel.Instance.PageAngle, "#FFFF0000", "", |
5900 |
items.MarkupInfoID, Commons.shortGuid()); |
5901 |
} |
5902 |
} |
5903 |
} |
5904 |
} |
5905 |
} |
5906 |
|
5907 |
/// <summary> |
5908 |
/// convert inkcontrol to polygoncontrol |
5909 |
/// </summary> |
5910 |
public void ConvertInkControlToPolygon() |
5911 |
{ |
5912 |
if (inkBoard.Strokes.Count > 0) |
5913 |
{ |
5914 |
inkBoard.Strokes.ToList().ForEach(stroke => |
5915 |
{ |
5916 |
InkToPath ip = new InkToPath(); |
5917 |
|
5918 |
List<Point> inkPointSet = new List<Point>(); |
5919 |
inkPointSet.AddRange(ip.GetPointsFrom(stroke)); |
5920 |
|
5921 |
PolygonControl pc = new PolygonControl() |
5922 |
{ |
5923 |
CommentAngle = 0, |
5924 |
PointSet = inkPointSet, |
5925 |
ControlType = ControlType.Ink |
5926 |
}; |
5927 |
pc.StartPoint = inkPointSet[0]; |
5928 |
pc.EndPoint = inkPointSet[inkPointSet.Count - 1]; |
5929 |
pc.LineSize = 3; |
5930 |
pc.CommentID = Commons.shortGuid(); |
5931 |
pc.StrokeColor = new SolidColorBrush(Colors.Red); |
5932 |
|
5933 |
if (pc.PointSet.Count > 0) |
5934 |
{ |
5935 |
CreateCommand.Instance.Execute(pc); |
5936 |
ViewerDataModel.Instance.MarkupControls_USER.Add(pc); |
5937 |
} |
5938 |
}); |
5939 |
inkBoard.Strokes.Clear(); |
5940 |
} |
5941 |
} |
5942 |
|
5943 |
/// <summary> |
5944 |
/// 캔버스에 그릴때 모든 포인트가 캔버스를 벗어 났는지 체크하여 넘겨줌 |
5945 |
/// </summary> |
5946 |
/// <author>ingu</author> |
5947 |
/// <date>2018.06.05</date> |
5948 |
/// <param name="getPoint"></param> |
5949 |
/// <returns></returns> |
5950 |
private bool IsGetoutpoint(Point getPoint) |
5951 |
{ |
5952 |
if (getPoint == new Point()) |
5953 |
{ |
5954 |
ViewerDataModel.Instance.MarkupControls_USER.Remove(currentControl); |
5955 |
currentControl = null; |
5956 |
return true; |
5957 |
} |
5958 |
|
5959 |
return false; |
5960 |
} |
5961 |
|
5962 |
private void zoomAndPanControl_DragOver(object sender, DragEventArgs e) |
5963 |
{ |
5964 |
e.Effects = DragDropEffects.Copy; |
5965 |
} |
5966 |
|
5967 |
private void zoomAndPanControl_DragEnter(object sender, DragEventArgs e) |
5968 |
{ |
5969 |
e.Effects = DragDropEffects.Copy; |
5970 |
} |
5971 |
|
5972 |
private void zoomAndPanControl_DragLeave(object sender, DragEventArgs e) |
5973 |
{ |
5974 |
e.Effects = DragDropEffects.None; |
5975 |
} |
5976 |
|
5977 |
private void ZoomAndPanControl_ScaleChanged(object sender, RoutedEventArgs e) |
5978 |
{ |
5979 |
var pageWidth = ViewerDataModel.Instance.ImageViewWidth; |
5980 |
var pageHeight = ViewerDataModel.Instance.ImageViewHeight; |
5981 |
|
5982 |
ScaleImage(pageWidth, pageHeight); |
5983 |
} |
5984 |
|
5985 |
/// <summary> |
5986 |
/// 페이지를 scale의 변화에 맞춰서 DecodePixel을 변경한다. |
5987 |
/// </summary> |
5988 |
/// <param name="pageWidth">원본 사이즈</param> |
5989 |
/// <param name="pageHeight">원본 사이즈</param> |
5990 |
/// <returns></returns> |
5991 |
private void ScaleImage(double pageWidth, double pageHeight) |
5992 |
{ |
5993 |
//mainPanel.Scale = zoomAndPanControl.ContentScale;// (zoomAndPanControl.ContentScale >= 0.1) ? 1 : zoomAndPanControl.ContentScale; |
5994 |
} |
5995 |
|
5996 |
private void thumbnailPanel_SizeChanged(object sender, SizeChangedEventArgs e) |
5997 |
{ |
5998 |
CommonLib.Common.WriteConfigString("SetThumbnail", "WIDTH", thumbnailPanel.Width.ToString()); |
5999 |
} |
6000 |
|
6001 |
private void gridViewMarkupAllSelect_Click(object sender, RoutedEventArgs e) |
6002 |
{ |
6003 |
var checkbox = (sender as CheckBox); |
6004 |
|
6005 |
if (checkbox != null) |
6006 |
{ |
6007 |
if (checkbox.IsChecked.GetValueOrDefault()) |
6008 |
{ |
6009 |
gridViewMarkup.SelectAll(); |
6010 |
} |
6011 |
else |
6012 |
{ |
6013 |
gridViewMarkup.UnselectAll(); |
6014 |
} |
6015 |
} |
6016 |
} |
6017 |
|
6018 |
/* |
6019 |
private void zoomAndPanControl_Drop(object sender, DragEventArgs e) |
6020 |
{ |
6021 |
try |
6022 |
{ |
6023 |
if (e.Data.GetDataPresent(typeof(string))) |
6024 |
{ |
6025 |
this.getCurrentPoint = e.GetPosition(drawingRotateCanvas); |
6026 |
string dragData = e.Data.GetData(typeof(string)) as string; |
6027 |
Move_Symbol(sender, dragData); |
6028 |
} |
6029 |
} |
6030 |
catch (Exception ex) |
6031 |
{ |
6032 |
//Logger.sendResLog("zoomAndPanControl_Drop", ex.ToString(), 0); |
6033 |
} |
6034 |
} |
6035 |
*/ |
6036 |
} |
6037 |
|
6038 |
public class testItem |
6039 |
{ |
6040 |
public string Title { get; set; } |
6041 |
} |
6042 |
} |