프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / KCOM / Views / MainMenu.xaml.cs @ 74abcf6f

이력 | 보기 | 이력해설 | 다운로드 (276 KB)

1 233ef333 taeseongkim
using IKCOM;
2 2b9b3656 taeseongkim
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 787a4489 KangIngu
using MarkupToPDF.Controls.Common;
9 2b9b3656 taeseongkim
using MarkupToPDF.Controls.Etc;
10 787a4489 KangIngu
using MarkupToPDF.Controls.Line;
11 2b9b3656 taeseongkim
using MarkupToPDF.Controls.Parsing;
12 787a4489 KangIngu
using MarkupToPDF.Controls.Polygon;
13
using MarkupToPDF.Controls.Shape;
14
using MarkupToPDF.Controls.Text;
15 2b9b3656 taeseongkim
using Svg2Xaml;
16 787a4489 KangIngu
using System;
17
using System.Collections.Generic;
18 2b9b3656 taeseongkim
using System.Diagnostics;
19 787a4489 KangIngu
using System.Linq;
20 2b9b3656 taeseongkim
using System.Reflection;
21
using System.Runtime.InteropServices;
22 787a4489 KangIngu
using System.Text;
23 2b9b3656 taeseongkim
using System.Threading;
24
using System.Threading.Tasks;
25
using System.Web;
26 787a4489 KangIngu
using System.Windows;
27
using System.Windows.Controls;
28 2b9b3656 taeseongkim
using System.Windows.Ink;
29 787a4489 KangIngu
using System.Windows.Input;
30
using System.Windows.Media;
31
using System.Windows.Media.Imaging;
32
using System.Windows.Shapes;
33 6707a5c7 ljiyeon
using System.Windows.Threading;
34 2b9b3656 taeseongkim
using Telerik.Windows.Controls;
35 fddb48f7 ljiyeon
using Telerik.Windows.Data;
36 2b9b3656 taeseongkim
using static KCOM.TempFile;
37 787a4489 KangIngu
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 a0bab669 KangIngu
    public class MyConsole
62
    {
63
        private readonly System.Threading.ManualResetEvent _readLineSignal;
64
        private string _lastLine;
65 233ef333 taeseongkim
66 a0bab669 KangIngu
        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 787a4489 KangIngu
    /// <summary>
114
    /// MainMenu.xaml에 대한 상호 작용 논리
115
    /// </summary>
116
    public partial class MainMenu : UserControl
117
    {
118
        #region 프로퍼티
119 233ef333 taeseongkim
120 787a4489 KangIngu
        public CommentUserInfo currentControl { get; set; }
121
        public ControlType controlType { get; set; }
122 e6a9ddaf humkyung
        private Move move = new Move();
123 787a4489 KangIngu
        private double[] rotateValue = { 0, 90, 180, 270 };
124
        public MouseHandlingMode mouseHandlingMode = MouseHandlingMode.None;
125
        private static readonly double DragThreshold = 5;
126 eb2b9248 KangIngu
        private System.Windows.Input.Cursor cursor { get; set; }
127 c7fde400 taeseongkim
128
        /// <summary>
129
        ///  문서의 마우스 위치
130
        /// </summary>
131
        public Point CanvasDrawingMouseDownPoint;
132
133 787a4489 KangIngu
        public string filename { get; set; }
134
        private Point canvasZoomPanningMouseDownPoint;
135
        public Point getCurrentPoint;
136
        private Point canvasZoommovingMouseDownPoint;
137 233ef333 taeseongkim
        private List<object> ControlList = new List<object>();
138 787a4489 KangIngu
        private ListBox listBox = new ListBox();
139
        private Dictionary<Geometry, string> selected_item = new Dictionary<Geometry, string>();
140
        private bool isDraggingSelectionRect = false;
141 233ef333 taeseongkim
        private DrawingAttributes inkDA = new DrawingAttributes();
142 787a4489 KangIngu
        private VPRevision CurrentRev { get; set; }
143
        public RadRibbonButton btnConsolidate { get; set; }
144
        public RadRibbonButton btnFinalPDF { get; set; }
145
        public RadRibbonButton btnTeamConsolidate { get; set; }
146 80458c15 ljiyeon
        public RadRibbonButton btnConsolidateFinalPDF { get; set; }
147
148 787a4489 KangIngu
        public string Filename_ { get; set; }
149
        public double L_Size = 0;
150
        public AdornerFinal adorner_;
151
        public Multi_Undo_data multi_Undo_Data;
152 5ce56a3a KangIngu
        public string Symbol_ID = "";
153 233ef333 taeseongkim
154 787a4489 KangIngu
        /// <summary>
155
        /// Set to 'true' when the left mouse-button is down.
156
        /// </summary>
157 9f473fb7 KangIngu
        public bool isLeftMouseButtonDownOnWindow = false;
158 787a4489 KangIngu
159
        public InkPresenter _InkBoard = null;
160 233ef333 taeseongkim
        private Stroke stroke;
161
        private Boolean IsDrawing = false;
162
        private StylusPointCollection strokePoints;
163
164 53880c83 ljiyeon
        //StylusPointCollection erasePoints;
165 233ef333 taeseongkim
        private RenderTargetBitmap canvasImage;
166
167
        private Point Sync_Offset_Point;
168 787a4489 KangIngu
169
        //강인구 테스트
170
        private Path _SelectionPath { get; set; }
171 233ef333 taeseongkim
172 787a4489 KangIngu
        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 233ef333 taeseongkim
190 787a4489 KangIngu
        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 233ef333 taeseongkim
217 787a4489 KangIngu
        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 233ef333 taeseongkim
        #endregion 프로퍼티
241 90e7968d ljiyeon
242 787a4489 KangIngu
        public MainMenu()
243
        {
244 233ef333 taeseongkim
            //App.splashString(ISplashMessage.MAINMENU_0);
245
            InitializeComponent();
246 f65e6c02 taeseongkim
247 dea506e2 taeseongkim
            //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 f65e6c02 taeseongkim
255 dea506e2 taeseongkim
            //lstSymbolPrivate.ItemsSource = testItems;
256 f65e6c02 taeseongkim
257 90e7968d ljiyeon
            this.Loaded += MainMenu_Loaded;
258 787a4489 KangIngu
        }
259 6707a5c7 ljiyeon
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 233ef333 taeseongkim
        private List<TempDt> tempDtList = new List<TempDt>();
271 90e7968d ljiyeon
272 787a4489 KangIngu
        private void SetCursor()
273
        {
274
            this.Cursor = cursor;
275
        }
276
277 69f41aab humkyung
        /// <summary>
278
        /// get image url
279
        /// </summary>
280
        /// <author>humkyung</author>
281
        /// <param name="sDocumentID"></param>
282
        /// <returns></returns>
283 6dcbe4a7 humkyung
        public string GetImageURL(string sDocumentID, int iPageNo)
284 69f41aab humkyung
        {
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 52827a4c djkim
        /// <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 0f26a9aa taeseongkim
318 52827a4c djkim
            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 0f26a9aa taeseongkim
331 787a4489 KangIngu
        private bool IsDrawingEnable(Point _canvasZoomPanningMouseDownPoint)
332
        {
333
            if ((_canvasZoomPanningMouseDownPoint.X > 0 &&
334 ca40e004 ljiyeon
                zoomAndPanCanvas.ActualWidth > _canvasZoomPanningMouseDownPoint.X) &&
335
                (_canvasZoomPanningMouseDownPoint.Y > 0 &&
336
                zoomAndPanCanvas.ActualHeight > _canvasZoomPanningMouseDownPoint.Y))
337 787a4489 KangIngu
            {
338
                return true;
339
            }
340
341
            return false;
342
        }
343
344 ca40e004 ljiyeon
        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 90e7968d ljiyeon
            }
366 ca40e004 ljiyeon
367
            return false;
368
        }
369
370 787a4489 KangIngu
        public void DeleteItem(MarkupInfoItem item)
371
        {
372
            if (PreviewUserMarkupInfoItem != null && item.Consolidate == 1 && item.AvoidConsolidate == 0)
373
            {
374 233ef333 taeseongkim
                App.Custom_ViewInfoId = PreviewUserMarkupInfoItem.MarkupInfoID;
375
            }
376 787a4489 KangIngu
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 39f0624f ljiyeon
                ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.MarkupListUpdate(
388 4eb052e4 ljiyeon
                null, Event_Type.Delete, a.CommentID, null);
389 787a4489 KangIngu
            });
390
391 d62c0439 humkyung
            ViewerDataModel.Instance.MyMarkupList.Where(data => data.MarkupInfoID == item.MarkupInfoID).ToList().ForEach(a =>
392 787a4489 KangIngu
            {
393 d62c0439 humkyung
                ViewerDataModel.Instance.MyMarkupList.Remove(a);
394 6707a5c7 ljiyeon
                //임시파일에서도 삭제
395 233ef333 taeseongkim
                TempFile.DelTemp(a.ID, this.ParentOfType<MainWindow>().dzMainMenu.pageNavigator.CurrentPage.PageNumber.ToString());
396 787a4489 KangIngu
            });
397
398
            gridViewMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoList;
399 bb3a236d ljiyeon
400 787a4489 KangIngu
            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 24678e06 humkyung
                    var infoId = Commons.shortGuid();
405 787a4489 KangIngu
                    PreviewUserMarkupInfoItem = new MarkupInfoItem
406
                    {
407
                        CreateTime = DateTime.Now,
408
                        Depatment = userData.DEPARTMENT,
409 992a98b4 KangIngu
                        UpdateTime = DateTime.Now,
410 787a4489 KangIngu
                        DisplayColor = "#FFFF0000",
411
                        UserID = userData.ID,
412
                        UserName = userData.NAME,
413
                        PageCount = 1,
414
                        Description = "",
415
                        MarkupInfoID = infoId,
416
                        MarkupList = null,
417 24678e06 humkyung
                        MarkupVersionID = Commons.shortGuid(),
418 787a4489 KangIngu
                        Consolidate = 0,
419
                        PartConsolidate = 0,
420
                        userDelete = true,
421
                        AvoidConsolidate = 0,
422
                        IsPreviewUser = true
423
                    };
424
                    App.Custom_ViewInfoId = infoId;
425
                }
426
            }
427 664ea2e1 taeseongkim
            //Logger.sendReqLog("DeleteMarkupAsync", App.ViewInfo.ProjectNO + "," + item.MarkupInfoID, 1);
428 233ef333 taeseongkim
            BaseClient.DeleteMarkupAsync(App.ViewInfo.ProjectNO, item.MarkupInfoID);
429 787a4489 KangIngu
        }
430
431 959b3ef2 humkyung
        /// <summary>
432
        /// delete selected comments
433
        /// </summary>
434
        /// <param name="sender"></param>
435
        /// <param name="e"></param>
436 787a4489 KangIngu
        public void DeleteCommentEvent(object sender, RoutedEventArgs e)
437
        {
438 d7e20d2d taeseongkim
            //정말 삭제 하시겠습니까?
439 17202508 ljiyeon
            DialogParameters parameters = new DialogParameters()
440 c35e49f5 ljiyeon
            {
441 17202508 ljiyeon
                Owner = Application.Current.MainWindow,
442 3d4d6da9 ljiyeon
                Content = new TextBlock()
443 233ef333 taeseongkim
                {
444 3d4d6da9 ljiyeon
                    MinWidth = 400,
445
                    FontSize = 11,
446 d7e20d2d taeseongkim
                    Text = "Are you sure you want to delete?",
447 3d4d6da9 ljiyeon
                    TextWrapping = System.Windows.TextWrapping.Wrap
448
                },
449 17202508 ljiyeon
                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 233ef333 taeseongkim
                    if (wc.DialogResult == true)
457 17202508 ljiyeon
                    {
458
                        //선택된 어도너가 있을시 삭제가 되지 않음
459
                        SelectionSet.Instance.UnSelect(this);
460 787a4489 KangIngu
461 17202508 ljiyeon
                        Button content = (sender as Button);
462
                        MarkupInfoItem item = content.CommandParameter as MarkupInfoItem;
463 787a4489 KangIngu
464 17202508 ljiyeon
                        DeleteItem(item);
465
                    }
466
                }
467
            };
468
            RadWindow.Confirm(parameters);
469 787a4489 KangIngu
        }
470
471 233ef333 taeseongkim
        private System.Windows.Media.Animation.DoubleAnimation da = new System.Windows.Media.Animation.DoubleAnimation();
472 787a4489 KangIngu
473 6707a5c7 ljiyeon
        private static Timer timer;
474
        private int InitInterval = KCOM.Properties.Settings.Default.InitInterval;
475 233ef333 taeseongkim
476 787a4489 KangIngu
        private void MainMenu_Loaded(object sender, RoutedEventArgs e)
477 90e7968d ljiyeon
        {
478 233ef333 taeseongkim
            //InitializeComponent();
479 90e7968d ljiyeon
            //System.Diagnostics.Debug.WriteLine("MainMenu() : " + sw.ElapsedMilliseconds.ToString() + "ms");
480
481 787a4489 KangIngu
            if (App.ParameterMode)
482 6707a5c7 ljiyeon
            {
483 2007ecaa taeseongkim
484 f7caaaaf ljiyeon
                App.splashString(ISplashMessage.MAINMENU_1);
485 54a28343 taeseongkim
                this.pageNavigator.ThumbInitialized += pageNavigator_ThumbInitialized;
486 6707a5c7 ljiyeon
                this.pageNavigator.PageChanging += pageNavigator_PageChanging;
487 afaa7c92 djkim
                this.pageNavigator.PageChanged += PageNavigator_PageChanged;
488 2007ecaa taeseongkim
489 6707a5c7 ljiyeon
                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 e0204db0 djkim
                da.RepeatBehavior = System.Windows.Media.Animation.RepeatBehavior.Forever;
496
497
                if (!App.ViewInfo.CreateFinalPDFPermission && !App.ViewInfo.NewCommentPermission)
498 90e7968d ljiyeon
                {
499 e0204db0 djkim
                    this.SymbolPane.Visibility = Visibility.Collapsed;
500
                    this.FavoritePane.Visibility = Visibility.Collapsed;
501
                    this.drawingRotateCanvas.IsHitTestVisible = false;
502 90e7968d ljiyeon
                }
503 8411f02d ljiyeon
                thumbnailPanel.Width = Convert.ToInt32(CommonLib.Common.GetConfigString("SetThumbnail", "WIDTH", "250"));
504 6707a5c7 ljiyeon
            }
505 6af42ff0 taeseongkim
506 2007ecaa taeseongkim
            //timer = new Timer(timercallback, null, 0, InitInterval * 60000);
507 ccf944bb ljiyeon
        }
508
509 2007ecaa taeseongkim
        private void DownloadOriginalFile()
510 6af42ff0 taeseongkim
        {
511 2007ecaa taeseongkim
            #region 임시파일 다운로드
512 9d5b4bc2 taeseongkim
            instnaceFile = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "MARKUS", System.IO.Path.GetRandomFileName().Split('.')[0] + ".pdf");
513 2007ecaa taeseongkim
            downloadurl = GetOriginalPDFURL();
514 9d5b4bc2 taeseongkim
515
            ViewerDataModel.Instance.OriginalTempFile = instnaceFile;
516
            
517
            string endpoint = Common.Commons.shortGuid() + "file";
518 2007ecaa taeseongkim
            IIpc.WcfServer wcfServer = new IIpc.WcfServer(endpoint);
519
            wcfServer.IpcFileDownloadReceived += WcfServer_IpcFileDownloadReceived;
520
            wcfServer.Start();
521 9d5b4bc2 taeseongkim
            
522 2007ecaa taeseongkim
            DownloadProcess.FileDownloader(endpoint, ViewerDataModel.Instance.IsAdmin, downloadurl, instnaceFile);
523
            #endregion
524
        }
525 6af42ff0 taeseongkim
526 2007ecaa taeseongkim
        string instnaceFile;
527
        string downloadurl;
528 6af42ff0 taeseongkim
529 2007ecaa taeseongkim
        private void WcfServer_IpcFileDownloadReceived(object sender, IIpc.IpcDownloadStatusArgs e)
530
        {
531
            Dispatcher.BeginInvoke((Action)delegate () { ViewerDataModel.Instance.DownloadFileProgress = (int)e.Progress; });
532 6af42ff0 taeseongkim
533 2007ecaa taeseongkim
            if (e.IsFinish)
534 6af42ff0 taeseongkim
            {
535 2007ecaa taeseongkim
                ViewerDataModel.Instance.SystemMain.dzMainMenu.searchPanel_Instance.SetSerachPDFFile(instnaceFile);
536
                ViewerDataModel.Instance.IsDownloadOriginal = true;
537 9d5b4bc2 taeseongkim
           
538 6af42ff0 taeseongkim
            }
539
        }
540 afaa7c92 djkim
541 6707a5c7 ljiyeon
        private void timercallback(Object o)
542 ccf944bb ljiyeon
        {
543 6707a5c7 ljiyeon
            Stopwatch sw = new Stopwatch();
544
            sw.Start();
545 3b484ebb ljiyeon
            TempFile.TempFileAdd();
546 6707a5c7 ljiyeon
            sw.Stop();
547 ccf944bb ljiyeon
548 90e7968d ljiyeon
            Dispatcher.InvokeAsync(new Action(delegate
549 ccf944bb ljiyeon
            {
550 233ef333 taeseongkim
                if (this.ParentOfType<MainWindow>().dzTopMenu.cbAutoSave.IsChecked == true) //Auto Save Checked?
551 6707a5c7 ljiyeon
                {
552
                    timer.Change(((int)this.ParentOfType<MainWindow>().dzTopMenu.cbSaveInterval.Value * 60000) / 2, sw.ElapsedMilliseconds); //Timer Setting
553
                }
554
            }));
555 ccf944bb ljiyeon
556 90e7968d ljiyeon
            ////GC.Collect();
557 6707a5c7 ljiyeon
        }
558 233ef333 taeseongkim
559 d62c0439 humkyung
        /// <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 787a4489 KangIngu
        {
566 548c696e ljiyeon
            Logger.sendCheckLog("pageNavigator_PageChanging_ChangeCommentReact", 1);
567 787a4489 KangIngu
568 d62c0439 humkyung
            /// add or update markup list
569
            foreach (var control in ViewerDataModel.Instance.MarkupControls_USER)
570 787a4489 KangIngu
            {
571 d62c0439 humkyung
                var root = MarkupParser.MarkupToString(control, App.ViewInfo.UserID);
572 90e7968d ljiyeon
573 d62c0439 humkyung
                var exist = ViewerDataModel.Instance.MyMarkupList.Where(data => data.ID == root.CommentID).FirstOrDefault();
574
                if (exist != null) //신규 추가 된 코멘트
575
                {
576
                    if (exist.Data != root.ConvertData) //코멘트가 같은지
577 6707a5c7 ljiyeon
                    {
578 d62c0439 humkyung
                        exist.Data = root.ConvertData;
579
                        exist.IsUpdate = true;
580 6707a5c7 ljiyeon
                    }
581 d62c0439 humkyung
                }
582
                else if (root.CommentID != null)
583
                {
584
                    ViewerDataModel.Instance.MyMarkupList.Add(new MarkupItemEx
585 6707a5c7 ljiyeon
                    {
586 d62c0439 humkyung
                        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 c0977e97 djkim
                        //Group_ID = control.GroupID,
593 d62c0439 humkyung
                    });
594 787a4489 KangIngu
                }
595
            }
596
597 24c5e56c taeseongkim
            //if (this.pageNavigator.CurrentPage != null)
598
            //{
599
            //    /// delete markup list
600
            //    int iPageNo = this.pageNavigator.CurrentPage.PageNumber;
601 6b6e937c taeseongkim
602 24c5e56c taeseongkim
            //    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 6b6e937c taeseongkim
607 24c5e56c taeseongkim
            //    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 0585d5cc taeseongkim
617 d62c0439 humkyung
            /// up to here
618 6707a5c7 ljiyeon
619 129ca191 humkyung
            //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 787a4489 KangIngu
        }
638
639 cb5c7f06 humkyung
        /// <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 cdfb57ff taeseongkim
        private async void pageNavigator_PageChanging(object sender, Controls.Sample.PageChangeEventArgs e)
647 548c696e ljiyeon
        {
648 24c5e56c taeseongkim
            //await Task.Delay(10);
649 d7e20d2d taeseongkim
650 72424099 taeseongkim
            // 마크업 로드
651
            //await this.Dispatcher.InvokeAsync(()=>MarkupLoad(e.PageNumber));
652 24c5e56c taeseongkim
653 4f017ed3 taeseongkim
            ViewerDataModel.Instance.PageAngle = e.CurrentPage.PAGE_ANGLE;
654 24c5e56c taeseongkim
655 4f017ed3 taeseongkim
            var token = ViewerDataModel.Instance.NewCancellationToken();
656
            
657
            await MarkupLoadAsync(e.PageNumber, ViewerDataModel.Instance.PageAngle, token);
658 e8557bd7 taeseongkim
659 dea506e2 taeseongkim
            // 페이지 이미지 변경
660 24c5e56c taeseongkim
            await PageChangingAsync(e.CurrentPage, e.PageNumber, token);
661 d7e20d2d taeseongkim
        }
662
663 24c5e56c taeseongkim
        private async Task PageChangingAsync(DOCPAGE currentPage, int changePageNumber,CancellationToken token)
664 233ef333 taeseongkim
        {
665 d7e20d2d taeseongkim
            var BalancePoint = ViewerDataModel.Instance.PageBalanceMode == true ? changePageNumber + ViewerDataModel.Instance.PageBalanceNumber : changePageNumber;
666 233ef333 taeseongkim
667 787a4489 KangIngu
            #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 233ef333 taeseongkim
            #endregion 페이지가 벗어난 경우
682 787a4489 KangIngu
683 752b18ef taeseongkim
            ViewerDataModel.Instance.SyncPageNumber = BalancePoint;
684 787a4489 KangIngu
685 d7e20d2d taeseongkim
            var pageWidth = Convert.ToDouble(currentPage.PAGE_WIDTH);
686
            var pageHeight = Convert.ToDouble(currentPage.PAGE_HEIGHT);
687 cdfb57ff taeseongkim
            var contentScale = zoomAndPanControl.ContentScale;
688 8614f701 taeseongkim
689 92442e4a taeseongkim
            #region 페이지 이미지 로딩 수정
690 8a9f6742 djkim
691 24c5e56c taeseongkim
            ViewerDataModel.Instance.ImageViewPath = await App.PageStorage.GetPageImageAsync(token,changePageNumber);
692 233ef333 taeseongkim
693 d48260a2 djkim
            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 cdfb57ff taeseongkim
707 233ef333 taeseongkim
            #endregion 페이지 이미지 로딩 수정
708 90e7968d ljiyeon
709 787a4489 KangIngu
            if (!testPanel2.IsHidden)
710
            {
711 548c696e ljiyeon
                Logger.sendCheckLog("pageNavigator_PageChanging_!testPanel2.IsHidden 일 때", 1);
712 787a4489 KangIngu
                //PDF모드일때 잠시 대기(강인구)
713
                if (IsSyncPDFMode)
714
                {
715
                    Get_FinalImage.Get_PdfImage get_PdfImage = new Get_FinalImage.Get_PdfImage();
716 752b18ef taeseongkim
                    var pdfpath = new BitmapImage(new Uri(get_PdfImage.Run(CurrentRev.TO_VENDOR, App.ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber)));
717 787a4489 KangIngu
718 548c696e ljiyeon
                    Logger.sendCheckLog("pageNavigator_PageChanging_pdfpath Image Downloading", 1);
719 787a4489 KangIngu
                    if (pdfpath.IsDownloading)
720
                    {
721
                        pdfpath.DownloadCompleted += (ex, arg) =>
722
                        {
723 548c696e ljiyeon
                            Logger.sendCheckLog("pageNavigator_PageChanging_pdfpath Image DownloadCompleted", 1);
724 787a4489 KangIngu
                            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 548c696e ljiyeon
                        Logger.sendCheckLog("pageNavigator_PageChanging_pdfpath Image Page Setting", 1);
734 787a4489 KangIngu
                        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 752b18ef taeseongkim
                    Logger.sendCheckLog("Compare Image Download", 1);
745
                    string compareImageUri = this.GetImageURL(CurrentRev.DOCUMENT_ID, BalancePoint);
746
                    ComparePageLoad(compareImageUri,false);
747 787a4489 KangIngu
                }
748 752b18ef taeseongkim
749 787a4489 KangIngu
                tlSyncPageNum.Text = String.Format("Current Page : {0}", BalancePoint);
750
            }
751
752 f4ec4218 taeseongkim
            SearchFocusBorder.Visibility = Visibility.Collapsed;
753
754 d7e20d2d taeseongkim
            this.pageNavigator.ChangePage(changePageNumber);
755 cdfb57ff taeseongkim
        }
756
757 752b18ef taeseongkim
        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 3ffd4b2d humkyung
        /// <summary>
800
        /// called after page is changed
801
        /// </summary>
802
        /// <param name="sender"></param>
803
        /// <param name="e"></param>
804 a1142a6b taeseongkim
        private async void PageNavigator_PageChanged(object sender, Sample.PageChangeEventArgs e)
805 3ffd4b2d humkyung
        {
806 a1142a6b taeseongkim
            //if (zoomAndPanCanvas.Width.IsNaN())
807
            //{
808 d5096d58 taeseongkim
            //await zoomAndPanControl.Dispatcher.InvokeAsync(() =>
809
            //    zoomAndPanControl.ZoomTo(new Rect { X = 0, Y = 0, Width = zoomAndPanCanvas.Width, Height = zoomAndPanCanvas.Height })
810
            //    );
811 a1142a6b taeseongkim
            //}
812 233ef333 taeseongkim
813 d7e20d2d taeseongkim
            var instanceMain = ViewerDataModel.Instance.SystemMain;
814
815 315ae55e taeseongkim
            instanceMain.dzMainMenu.CanvasDrawingMouseDownPoint = new Point(ViewerDataModel.Instance.ImageViewWidth / 2, ViewerDataModel.Instance.ImageViewHeight / 2);
816
817 d7e20d2d taeseongkim
            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 d5096d58 taeseongkim
            ViewerDataModel.Instance.LoadPageMarkupFinish(new Rect { X = 0, Y = 0, Width = zoomAndPanCanvas.Width, Height = zoomAndPanCanvas.Height });
827 e1c892f7 taeseongkim
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 233ef333 taeseongkim
        private RectangleControl GetRectControl(double PageWidth, double PageHeight, string userId, string markupInfoId, Point startPosition)
949 e1c892f7 taeseongkim
        {
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 233ef333 taeseongkim
                    PointSet = new List<Point> { startPoint, leftBottomPoint, endPoint, topRightPoint },
979 e1c892f7 taeseongkim
                    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 233ef333 taeseongkim
        private TextControl GetTextControl(double PageWidth, double PageHeight, string userId, string markupInfoId, string Text, double fontSize, FontWeight fontWeight, TextAlignment textAlignment, Rect parentRect, double positionY)
992 e1c892f7 taeseongkim
        {
993
            TextControl result = null;
994
995
            try
996
            {
997 233ef333 taeseongkim
                var txtSize = ShapeMeasure(new TextBlock { Text = Text, FontSize = fontSize, FontWeight = fontWeight, FontFamily = new FontFamily("Tahoma") });
998 e1c892f7 taeseongkim
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 233ef333 taeseongkim
1007 e1c892f7 taeseongkim
                    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 233ef333 taeseongkim
1018 e1c892f7 taeseongkim
                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 233ef333 taeseongkim
1057 e1c892f7 taeseongkim
        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 d7e20d2d taeseongkim
        }
1066
1067 4f017ed3 taeseongkim
        private async Task MarkupLoadAsync(int pageNumber,Double PageAngle, CancellationToken cts)
1068 ac4f1e13 taeseongkim
        {
1069
            System.Diagnostics.Stopwatch stopwatch = new Stopwatch();
1070
            stopwatch.Start();
1071
1072 3ffd4b2d humkyung
            /// 컨트롤을 새로 생성한다.
1073
            Common.ViewerDataModel.Instance.MarkupControls_USER.Clear();    //전체 제거
1074
            Common.ViewerDataModel.Instance.MarkupControls.Clear();         //전체 제거
1075 e8557bd7 taeseongkim
1076 ac4f1e13 taeseongkim
            System.Diagnostics.Debug.WriteLine("MarkupLoad - Clear " + new TimeSpan(stopwatch.ElapsedTicks).ToString());
1077
1078 d7e20d2d taeseongkim
            foreach (var markup in ViewerDataModel.Instance.MyMarkupList.Where(param => param.PageNumber == pageNumber))
1079 233ef333 taeseongkim
            {
1080 24c5e56c taeseongkim
                if (cts.IsCancellationRequested)
1081
                {
1082
                    return;
1083
                }
1084
1085 5ee1c547 송근호
                var info = ViewerDataModel.Instance._markupInfoList.Where(param => param.MarkupInfoID == markup.MarkupInfoID).FirstOrDefault();
1086 3ffd4b2d humkyung
                if (info != null)
1087
                {
1088
                    string sColor = (info.UserID == App.ViewInfo.UserID) ? "#FFFF0000" : info.DisplayColor;
1089
                    if (info.UserID == App.ViewInfo.UserID)
1090
                    {
1091 a1e2ba68 taeseongkim
                        var control = await MarkupParser.ParseExAsync(App.BaseAddress, cts, App.ViewInfo.ProjectNO, markup.Data, Common.ViewerDataModel.Instance.MarkupControls_USER, PageAngle, sColor, "",
1092 3ffd4b2d humkyung
                                        markup.MarkupInfoID, markup.ID);
1093
                        control.Visibility = Visibility.Hidden;
1094
                    }
1095
                    else
1096
                    {
1097 a1e2ba68 taeseongkim
                        var control = await MarkupParser.ParseExAsync(App.BaseAddress, cts, App.ViewInfo.ProjectNO, markup.Data, Common.ViewerDataModel.Instance.MarkupControls, PageAngle, sColor, "",
1098 3ffd4b2d humkyung
                                                                markup.MarkupInfoID, markup.ID);
1099
                        control.Visibility = Visibility.Hidden;
1100
                    }
1101
                }
1102 24c5e56c taeseongkim
1103 3ffd4b2d humkyung
            };
1104
            /// up to here
1105
1106 ac4f1e13 taeseongkim
            System.Diagnostics.Debug.WriteLine("MarkupLoad - MarkupParser " + new TimeSpan(stopwatch.ElapsedTicks).ToString());
1107
1108 3ffd4b2d humkyung
            /// 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 ac4f1e13 taeseongkim
                    var markupitems = item.MarkupList.Where(pageItem => pageItem.PageNumber == pageNumber).ToList();
1125
1126
                    foreach (var markupitem in markupitems)
1127 3ffd4b2d humkyung
                    {
1128 a1e2ba68 taeseongkim
                        await MarkupParser.ParseExAsync(App.BaseAddress, ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls_Sync,PageAngle, item.DisplayColor, "", item.MarkupInfoID);
1129 24c5e56c taeseongkim
1130
                        if (cts.IsCancellationRequested)
1131
                        {
1132
                            return;
1133
                        }
1134 ac4f1e13 taeseongkim
                    }
1135 3ffd4b2d humkyung
                }
1136
            }
1137 ac4f1e13 taeseongkim
1138 24c5e56c taeseongkim
            SetCommentPages(cts);
1139 3ffd4b2d humkyung
        }
1140
1141 24c5e56c taeseongkim
        public void SetCommentPages(CancellationToken? cts)
1142 787a4489 KangIngu
        {
1143 548c696e ljiyeon
            Logger.sendCheckLog("pageNavigator_PageChanging_SetCommentPages Setting", 1);
1144 787a4489 KangIngu
            List<UsersCommentPagesMember> _pages = new List<UsersCommentPagesMember>();
1145
            foreach (var item in ViewerDataModel.Instance._markupInfoList)
1146 ed3740c4 djkim
            {
1147
                //Comment 가 존재할 경우에만 Thumbnail 에 추가
1148 233ef333 taeseongkim
                if (item.MarkupList != null)
1149 787a4489 KangIngu
                {
1150 ed3740c4 djkim
                    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 233ef333 taeseongkim
                }
1167 24c5e56c taeseongkim
1168
                if (cts != null)
1169
                {
1170
                    if (cts.Value.IsCancellationRequested)
1171
                        return;
1172
                }
1173 ed3740c4 djkim
            }
1174 233ef333 taeseongkim
1175 24c5e56c taeseongkim
            this.pageNavigator.SetCommentList(_pages.ToList(),cts);
1176 ed3740c4 djkim
        }
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 e05fe8ab djkim
                }
1192 ed3740c4 djkim
                viewinfo.MarkupList = new List<MarkupItem>();
1193
                foreach (var item in dbinfo.MarkupList)
1194 e05fe8ab djkim
                {
1195 ed3740c4 djkim
                    viewinfo.MarkupList.Add(item);
1196 e05fe8ab djkim
                }
1197 787a4489 KangIngu
            }
1198
        }
1199
1200 a1142a6b taeseongkim
        private async void zoomAndPanControl_MouseWheel(object sender, MouseWheelEventArgs e)
1201 787a4489 KangIngu
        {
1202 f06cce07 taeseongkim
            var instance = ViewerDataModel.Instance;
1203
1204 233ef333 taeseongkim
            if (instance.IsWheelPageChanage)
1205 787a4489 KangIngu
            {
1206 a1142a6b taeseongkim
                return;
1207
            }
1208
1209
            if (instance.IsPressCtrl) // && !instance.IsWheelPageChanage)
1210
            {
1211
                int changePage = 0;
1212 233ef333 taeseongkim
1213 f87dfb18 taeseongkim
                if (e.Delta > 0)
1214
                {
1215 a1142a6b taeseongkim
                    if (0 < instance.ContentOffsetY)
1216 f06cce07 taeseongkim
                    {
1217
                        Vector dragOffset = new Vector(0, e.Delta);
1218
                        MoveZoomAndPanControl(dragOffset);
1219
                    }
1220
                    //else
1221
                    //{
1222 a1142a6b taeseongkim
                    //    if (instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber > 1)
1223
                    //    {
1224
                    //        instance.IsWheelPageChanage = true;
1225
                    //        changePage -= 1;
1226
                    //    }
1227 f06cce07 taeseongkim
                    //}
1228 f87dfb18 taeseongkim
                }
1229 233ef333 taeseongkim
                else if (e.Delta < 0)
1230 f87dfb18 taeseongkim
                {
1231 f06cce07 taeseongkim
                    if (instance.ContentHeight > instance.ContentOffsetY + instance.ContentViewportHeight)
1232
                    {
1233 233ef333 taeseongkim
                        Vector dragOffset = new Vector(0, e.Delta);
1234 f06cce07 taeseongkim
                        MoveZoomAndPanControl(dragOffset);
1235
                    }
1236
                    //else
1237
                    //{
1238 a1142a6b taeseongkim
                    //    if (instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber < instance.SystemMain.dzMainMenu.pageNavigator.PageCount)
1239
                    //    {
1240
                    //        instance.IsWheelPageChanage = true;
1241
                    //        changePage += 1;
1242
                    //    }
1243 f06cce07 taeseongkim
                    //}
1244 f87dfb18 taeseongkim
                }
1245 a1142a6b taeseongkim
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 787a4489 KangIngu
            }
1270
            else
1271
            {
1272 f87dfb18 taeseongkim
                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 787a4489 KangIngu
            }
1284
        }
1285
1286 a1716fa5 KangIngu
        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 787a4489 KangIngu
        #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 9cd2865b KangIngu
            if (zoomAndPanControl2 != null && Sync.IsChecked)
1329 787a4489 KangIngu
            {
1330 9cd2865b KangIngu
                zoomAndPanControl2.ZoomAboutPoint(zoomAndPanControl.ContentScale, contentZoomCenter);
1331 787a4489 KangIngu
            }
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 9cd2865b KangIngu
            if (zoomAndPanControl2 != null && Sync.IsChecked)
1346 787a4489 KangIngu
            {
1347 9cd2865b KangIngu
                zoomAndPanControl2.ZoomAboutPoint(zoomAndPanControl.ContentScale, contentZoomCenter);
1348 787a4489 KangIngu
            }
1349 a1716fa5 KangIngu
        }
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 787a4489 KangIngu
        }
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 233ef333 taeseongkim
        #endregion ZoomIn & ZoomOut
1404 787a4489 KangIngu
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 233ef333 taeseongkim
        #region 컨트롤 초기화
1462
1463 787a4489 KangIngu
        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 233ef333 taeseongkim
1479 787a4489 KangIngu
                case "CircleControl":
1480
                    {
1481
                        (control as CircleControl).StrokeColor = Brushes.Red;
1482
                    }
1483
                    break;
1484 233ef333 taeseongkim
1485 787a4489 KangIngu
                case "TriControl":
1486
                    {
1487
                        (control as TriControl).StrokeColor = Brushes.Red;
1488
                    }
1489
                    break;
1490 233ef333 taeseongkim
1491 787a4489 KangIngu
                case "RectCloudControl":
1492
                    {
1493
                        (control as RectCloudControl).StrokeColor = Brushes.Red;
1494
                    }
1495
                    break;
1496 233ef333 taeseongkim
1497 787a4489 KangIngu
                case "CloudControl":
1498
                    {
1499
                        (control as CloudControl).StrokeColor = Brushes.Red;
1500
                    }
1501
                    break;
1502 233ef333 taeseongkim
1503 787a4489 KangIngu
                case "PolygonControl":
1504
                    {
1505
                        (control as PolygonControl).StrokeColor = Brushes.Red;
1506
                    }
1507
                    break;
1508 233ef333 taeseongkim
1509 787a4489 KangIngu
                case "ArcControl":
1510
                    {
1511
                        (control as ArcControl).StrokeColor = Brushes.Red;
1512
                    }
1513
                    break;
1514 233ef333 taeseongkim
1515 40b3ce25 ljiyeon
                case "ArrowArcControl":
1516
                    {
1517
                        (control as ArrowArcControl).StrokeColor = Brushes.Red;
1518
                    }
1519
                    break;
1520 233ef333 taeseongkim
1521 787a4489 KangIngu
                case "LineControl":
1522
                    {
1523
                        (control as LineControl).StrokeColor = Brushes.Red;
1524
                    }
1525
                    break;
1526 233ef333 taeseongkim
1527 787a4489 KangIngu
                case "ArrowControl_Multi":
1528
                    {
1529
                        (control as ArrowControl_Multi).StrokeColor = Brushes.Red;
1530
                    }
1531
                    break;
1532 233ef333 taeseongkim
1533 787a4489 KangIngu
                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 233ef333 taeseongkim
1539 787a4489 KangIngu
                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 233ef333 taeseongkim
1545 684ef11c ljiyeon
                case "InsideWhiteControl":
1546
                    {
1547
                        (control as InsideWhiteControl).StrokeColor = Brushes.White;
1548
                    }
1549
                    break;
1550 233ef333 taeseongkim
1551 684ef11c ljiyeon
                case "OverlapWhiteControl":
1552
                    {
1553
                        (control as OverlapWhiteControl).StrokeColor = Brushes.White;
1554
                    }
1555
                    break;
1556 233ef333 taeseongkim
1557 684ef11c ljiyeon
                case "ClipWhiteControl":
1558
                    {
1559
                        (control as ClipWhiteControl).StrokeColor = Brushes.White;
1560
                    }
1561
                    break;
1562 233ef333 taeseongkim
1563 684ef11c ljiyeon
                case "CoordinateControl":
1564
                    {
1565
                        (control as CoordinateControl).StrokeColor = Brushes.Black;
1566
                    }
1567
                    break;
1568 787a4489 KangIngu
            }
1569
        }
1570 233ef333 taeseongkim
1571
        #endregion 컨트롤 초기화
1572 787a4489 KangIngu
1573
        public void firstCondition_MouseLeave(object sender, MouseEventArgs e)
1574
        {
1575
            //Control_Init(e.Source);
1576
        }
1577 233ef333 taeseongkim
1578 7211e0c2 ljiyeon
        //private Window _dragdropWindow = null;
1579 53880c83 ljiyeon
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 233ef333 taeseongkim
1591 7211e0c2 ljiyeon
        /*
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 53880c83 ljiyeon
1617 7211e0c2 ljiyeon
    private void CreateDragDropWindow2(ImageSource image)
1618 53880c83 ljiyeon
        {
1619
            this._dragdropWindow = new Window();
1620 902faaea taeseongkim
            _dragdropWindow.Cursor = new Cursor(App.DefaultArrowCursorStream);
1621 53880c83 ljiyeon
            _dragdropWindow.WindowStyle = WindowStyle.None;
1622 233ef333 taeseongkim
            _dragdropWindow.AllowsTransparency = true;
1623 53880c83 ljiyeon
            _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 233ef333 taeseongkim
1630 53880c83 ljiyeon
            Rectangle r = new Rectangle();
1631
            r.Width = image.Width;
1632
            r.Height = image.Height;
1633 233ef333 taeseongkim
            r.Opacity = 0.5;
1634 53880c83 ljiyeon
            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 233ef333 taeseongkim
            this._dragdropWindow.Top = w32Mouse.Y - (image.Height / 2);
1643 53880c83 ljiyeon
            this._dragdropWindow.Show();
1644
        }
1645 f87dfb18 taeseongkim
1646 7211e0c2 ljiyeon
         */
1647 f87dfb18 taeseongkim
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 787a4489 KangIngu
        private void zoomAndPanControl_MouseMove(object sender, MouseEventArgs e)
1661
        {
1662 b74a9c91 taeseongkim
            if (Common.ViewerDataModel.Instance.SelectedControl == "Batch"
1663
                || Common.ViewerDataModel.Instance.SelectedControl == "MACRO")
1664
            //if(this.txtBatch.Visibility == Visibility.Visible)
1665 787a4489 KangIngu
            {
1666
                if (!floatingTip.IsOpen) { floatingTip.IsOpen = true; }
1667
1668
                Point currentPos = e.GetPosition(rect);
1669 d71ee575 djkim
1670 787a4489 KangIngu
                floatingTip.HorizontalOffset = currentPos.X + 20;
1671
                floatingTip.VerticalOffset = currentPos.Y;
1672
            }
1673
1674
            getCurrentPoint = e.GetPosition(drawingRotateCanvas);
1675 233ef333 taeseongkim
1676 e6a9ddaf humkyung
            if ((e.MiddleButton == MouseButtonState.Pressed) || (e.RightButton == MouseButtonState.Pressed))
1677 787a4489 KangIngu
            {
1678 e54660e8 KangIngu
                SetCursor();
1679 787a4489 KangIngu
                Point currentCanvasDrawingMouseMovePoint = e.GetPosition(drawingRotateCanvas);
1680
                Point currentCanvasZoomPanningMouseMovePoint = e.GetPosition(zoomAndPanCanvas);
1681
1682
                Vector dragOffset = currentCanvasZoomPanningMouseMovePoint - canvasZoommovingMouseDownPoint;
1683 9cd2865b KangIngu
1684 f87dfb18 taeseongkim
                MoveZoomAndPanControl(dragOffset);
1685 787a4489 KangIngu
            }
1686 992a98b4 KangIngu
1687 e6a9ddaf humkyung
            if (mouseHandlingMode == MouseHandlingMode.Drawing && currentControl != null)
1688 787a4489 KangIngu
            {
1689
                Point currentCanvasDrawingMouseMovePoint = e.GetPosition(drawingRotateCanvas);
1690
                Point currentCanvasZoomPanningMouseMovePoint = e.GetPosition(zoomAndPanCanvas);
1691
                SetCursor();
1692
1693
                if (currentControl != null)
1694
                {
1695 c7fde400 taeseongkim
                    double moveX = currentCanvasDrawingMouseMovePoint.X - CanvasDrawingMouseDownPoint.X;
1696
                    double moveY = currentCanvasDrawingMouseMovePoint.Y - CanvasDrawingMouseDownPoint.Y;
1697 787a4489 KangIngu
                    //강인구 추가
1698
                    currentControl.Opacity = ViewerDataModel.Instance.ControlOpacity;
1699
1700
                    if ((currentControl as IPath) != null)
1701
                    {
1702
                        (currentControl as IPath).LineSize = ViewerDataModel.Instance.LineSize;
1703
                    }
1704 5ce56a3a KangIngu
                    if ((currentControl as LineControl) != null)
1705
                    {
1706
                        (currentControl as LineControl).Interval = ViewerDataModel.Instance.Interval;
1707
                    }
1708
1709 787a4489 KangIngu
                    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 d4b0c723 KangIngu
                            (currentControl as TextControl).TextWeight = FontWeights.Bold;
1722 787a4489 KangIngu
                        }
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 d4b0c723 KangIngu
                            (currentControl as ArrowTextControl).TextWeight = FontWeights.Bold;
1737 787a4489 KangIngu
                        }
1738
                        if (this.ParentOfType<MainWindow>().dzTopMenu.btnUnderLine.IsChecked == true)
1739
                        {
1740
                            (currentControl as ArrowTextControl).UnderLine = TextDecorations.Underline;
1741
                        }
1742
                    }
1743 9f473fb7 KangIngu
                    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 787a4489 KangIngu
1752 168f8027 taeseongkim
                    #region // 모든 컨트롤의 공통기능 제어
1753 233ef333 taeseongkim
1754 168f8027 taeseongkim
                    if (controlType != ControlType.PenControl)
1755
                    {
1756 233ef333 taeseongkim
                        currentControl.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.IsAxisLock || ViewerDataModel.Instance.IsPressShift);
1757 168f8027 taeseongkim
                    }
1758
1759 233ef333 taeseongkim
                    #endregion // 모든 컨트롤의 공통기능 제어
1760 168f8027 taeseongkim
1761
                    #region // 각 컨트롤의 특별한 기능을 제어한다.
1762
1763 787a4489 KangIngu
                    switch (controlType)
1764
                    {
1765 684ef11c ljiyeon
                        case (ControlType.Coordinate):
1766
                            {
1767
                                var control = currentControl as CoordinateControl;
1768
                                if (control != null)
1769
                                {
1770 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1771 684ef11c ljiyeon
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1772
                                    control.Paint = ViewerDataModel.Instance.paintSet;
1773
                                }
1774
                            }
1775
                            break;
1776 233ef333 taeseongkim
1777 684ef11c ljiyeon
                        case (ControlType.InsideWhite):
1778
                            {
1779
                                var control = currentControl as InsideWhiteControl;
1780
                                if (control != null)
1781
                                {
1782 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1783 684ef11c ljiyeon
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1784
                                    control.Paint = ViewerDataModel.Instance.paintSet;
1785
                                    control.Paint = PaintSet.Fill;
1786
                                }
1787
                            }
1788
                            break;
1789 233ef333 taeseongkim
1790 a6272c57 humkyung
                        case ControlType.OverlapWhite:
1791 684ef11c ljiyeon
                            {
1792
                                var control = currentControl as OverlapWhiteControl;
1793
                                if (control != null)
1794
                                {
1795 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1796 684ef11c ljiyeon
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1797
                                    control.Paint = ViewerDataModel.Instance.paintSet;
1798
                                    control.Paint = PaintSet.Fill;
1799
                                }
1800
                            }
1801
                            break;
1802 233ef333 taeseongkim
1803 a6272c57 humkyung
                        case ControlType.ClipWhite:
1804 684ef11c ljiyeon
                            {
1805
                                var control = currentControl as ClipWhiteControl;
1806
                                if (control != null)
1807
                                {
1808 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1809 684ef11c ljiyeon
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1810
                                    control.Paint = ViewerDataModel.Instance.paintSet;
1811
                                    control.Paint = PaintSet.Fill;
1812
                                }
1813
                            }
1814
                            break;
1815 233ef333 taeseongkim
1816 787a4489 KangIngu
                        case ControlType.RectCloud:
1817
                            {
1818
                                var control = currentControl as RectCloudControl;
1819
                                if (control != null)
1820
                                {
1821 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1822 787a4489 KangIngu
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1823
                                    control.Paint = ViewerDataModel.Instance.paintSet;
1824
                                }
1825
                            }
1826
                            break;
1827 233ef333 taeseongkim
1828 787a4489 KangIngu
                        case ControlType.SingleLine:
1829
                        case ControlType.CancelLine:
1830
                        case ControlType.ArrowLine:
1831
                        case ControlType.TwinLine:
1832
                        case ControlType.DimLine:
1833
                            {
1834 d71ee575 djkim
                                var control = currentControl as LineControl;
1835
                                if (control != null)
1836 787a4489 KangIngu
                                {
1837 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1838 787a4489 KangIngu
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1839
                                }
1840
                            }
1841
                            break;
1842
1843
                        case ControlType.ArcLine:
1844
                            {
1845 d71ee575 djkim
                                var control = currentControl as ArcControl;
1846
                                if (control != null)
1847 787a4489 KangIngu
                                {
1848 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1849 787a4489 KangIngu
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1850
                                }
1851
                            }
1852
                            break;
1853
1854
                        case ControlType.ArcArrow:
1855
                            {
1856 40b3ce25 ljiyeon
                                var control = currentControl as ArrowArcControl;
1857 d71ee575 djkim
                                if (control != null)
1858 787a4489 KangIngu
                                {
1859 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1860 787a4489 KangIngu
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1861
                                }
1862
                            }
1863
                            break;
1864
1865
                        case ControlType.ArrowMultiLine:
1866
                            {
1867 d71ee575 djkim
                                var control = currentControl as ArrowControl_Multi;
1868
                                if (control != null)
1869 787a4489 KangIngu
                                {
1870 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1871 787a4489 KangIngu
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1872
                                }
1873
                            }
1874
                            break;
1875
1876
                        case ControlType.Circle:
1877
                            {
1878 168f8027 taeseongkim
                                var control = currentControl as CircleControl;
1879
1880
                                if (control != null)
1881 787a4489 KangIngu
                                {
1882 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1883
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1884
                                    control.Paint = ViewerDataModel.Instance.paintSet;
1885 787a4489 KangIngu
                                }
1886
                            }
1887
                            break;
1888
1889
                        case ControlType.PolygonCloud:
1890
                            {
1891
                                var control = currentControl as CloudControl;
1892
                                if (control != null)
1893
                                {
1894 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1895 787a4489 KangIngu
                                    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 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1907 787a4489 KangIngu
                                    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 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1919 787a4489 KangIngu
                                }
1920
                            }
1921
                            break;
1922
1923
                        case ControlType.Date:
1924
                            {
1925
                                var control = currentControl as DateControl;
1926
                                if (control != null)
1927
                                {
1928 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1929 787a4489 KangIngu
                                }
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 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1944 787a4489 KangIngu
                                }
1945
                            }
1946
                            break;
1947 233ef333 taeseongkim
1948 787a4489 KangIngu
                        case ControlType.PolygonControl:
1949 e6a9ddaf humkyung
                        case ControlType.ChainLine:
1950 787a4489 KangIngu
                            {
1951
                                var control = currentControl as PolygonControl;
1952
                                if (control != null)
1953
                                {
1954 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1955 787a4489 KangIngu
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
1956
                                    control.Paint = ViewerDataModel.Instance.paintSet;
1957
                                }
1958
                            }
1959
                            break;
1960 233ef333 taeseongkim
1961 787a4489 KangIngu
                        case ControlType.Sign:
1962
                            {
1963
                                var control = currentControl as SignControl;
1964
                                if (control != null)
1965
                                {
1966 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1967 787a4489 KangIngu
                                }
1968
                            }
1969
                            break;
1970 233ef333 taeseongkim
1971 787a4489 KangIngu
                        case ControlType.Symbol:
1972
                            {
1973
                                var control = currentControl as SymControl;
1974
                                if (control != null)
1975
                                {
1976 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1977 787a4489 KangIngu
                                }
1978
                            }
1979
                            break;
1980 233ef333 taeseongkim
1981 787a4489 KangIngu
                        case ControlType.Stamp:
1982
                            {
1983 cd988cd8 djkim
                                var control = currentControl as SymControlN;
1984
                                if (control != null)
1985 787a4489 KangIngu
                                {
1986 cd988cd8 djkim
                                    if (control.STAMP != null)
1987 cbaa3c91 ljiyeon
                                    {
1988 168f8027 taeseongkim
                                        //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
1989 cbaa3c91 ljiyeon
                                    }
1990 cd988cd8 djkim
                                    else
1991
                                    {
1992
                                        currentControl = null;
1993 902faaea taeseongkim
                                        this.cursor = new Cursor(App.DefaultArrowCursorStream);
1994 cd988cd8 djkim
                                        DialogMessage_Alert("Approved Stamp 가 등록되어 있지 않습니다. \n관리자에게 문의하세요.", "안내");
1995
                                    }
1996 168f8027 taeseongkim
                                }
1997 787a4489 KangIngu
                            }
1998
                            break;
1999 233ef333 taeseongkim
2000 a6272c57 humkyung
                        case ControlType.Rectangle:
2001 787a4489 KangIngu
                        case ControlType.Mark:
2002
                            {
2003
                                var control = currentControl as RectangleControl;
2004
                                if (control != null)
2005
                                {
2006 168f8027 taeseongkim
                                    //control.OnCreatingMouseMove(currentCanvasDrawingMouseMovePoint, ViewerDataModel.Instance.checkAxis, ViewerDataModel.Instance.IsPressShift);
2007
                                    if (control.ControlType == ControlType.Mark) control.Paint = PaintSet.Fill;
2008 7a5210f1 humkyung
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
2009 787a4489 KangIngu
                                }
2010
                            }
2011
                            break;
2012 233ef333 taeseongkim
2013 787a4489 KangIngu
                        case ControlType.PenControl:
2014
                            {
2015
                                stroke.StylusPoints.Add(new StylusPoint(currentCanvasDrawingMouseMovePoint.X, currentCanvasDrawingMouseMovePoint.Y));
2016
                                //inkBoard.Strokes.Add(stroke);
2017
                            }
2018
                            break;
2019 233ef333 taeseongkim
2020 787a4489 KangIngu
                        default:
2021
                            break;
2022
                    }
2023 168f8027 taeseongkim
2024 233ef333 taeseongkim
                    #endregion // 각 컨트롤의 특별한 기능을 제어한다.
2025
2026 4f017ed3 taeseongkim
                    if (ViewerDataModel.Instance.MarkupAngleVisibility == Visibility.Visible)
2027 168f8027 taeseongkim
                    {
2028 4f017ed3 taeseongkim
                        ViewerDataModel.Instance.MarkupAngle = currentControl.CommentAngle;
2029 168f8027 taeseongkim
                    }
2030 787a4489 KangIngu
                }
2031
            }
2032 233ef333 taeseongkim
            else if (mouseHandlingMode == MouseHandlingMode.Drawing && e.LeftButton == MouseButtonState.Pressed)
2033 29cf2c0c humkyung
            {
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 233ef333 taeseongkim
            else if (((e.LeftButton == MouseButtonState.Pressed) && mouseHandlingMode == MouseHandlingMode.Selecting) ||
2064
                ((e.LeftButton == MouseButtonState.Pressed) && mouseHandlingMode == MouseHandlingMode.Capture) ||
2065 e6a9ddaf humkyung
                ((e.LeftButton == MouseButtonState.Pressed) && mouseHandlingMode == MouseHandlingMode.DragZoom))
2066 787a4489 KangIngu
            {
2067
                Point curMouseDownPoint = e.GetPosition(drawingRotateCanvas);
2068
2069
                if (isDraggingSelectionRect)
2070
                {
2071 c7fde400 taeseongkim
                    UpdateDragSelectionRect(CanvasDrawingMouseDownPoint, curMouseDownPoint);
2072 787a4489 KangIngu
                    e.Handled = true;
2073
                }
2074
                else if (isLeftMouseButtonDownOnWindow)
2075
                {
2076 c7fde400 taeseongkim
                    var dragDelta = curMouseDownPoint - CanvasDrawingMouseDownPoint;
2077 787a4489 KangIngu
                    double dragDistance = Math.Abs(dragDelta.Length);
2078
2079
                    if (dragDistance > DragThreshold)
2080
                    {
2081
                        isDraggingSelectionRect = true;
2082 c7fde400 taeseongkim
                        InitDragSelectionRect(CanvasDrawingMouseDownPoint, curMouseDownPoint);
2083 787a4489 KangIngu
                    }
2084
2085
                    e.Handled = true;
2086
                }
2087
2088 c7fde400 taeseongkim
                if (CanvasDrawingMouseDownPoint == curMouseDownPoint)
2089 787a4489 KangIngu
                {
2090
                }
2091
                else
2092
                {
2093
                    e.Handled = true;
2094
                }
2095
            }
2096 7211e0c2 ljiyeon
            /*
2097 e6a9ddaf humkyung
            else if ((e.LeftButton == MouseButtonState.Pressed) && mouseHandlingMode == MouseHandlingMode.DragSymbol)
2098 233ef333 taeseongkim
            { //symbol
2099 53880c83 ljiyeon
                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 233ef333 taeseongkim
                }
2107 53880c83 ljiyeon
            }
2108 7211e0c2 ljiyeon
            */
2109 233ef333 taeseongkim
            else if ((e.LeftButton == MouseButtonState.Released) && (e.MiddleButton == MouseButtonState.Released) &&
2110 e6a9ddaf humkyung
                (e.RightButton == MouseButtonState.Released) && ViewerDataModel.Instance.MarkupControls_USER.Count > 0)
2111 787a4489 KangIngu
            {
2112 a342d378 taeseongkim
                var control = ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.IsMouseEnter).FirstOrDefault();
2113 233ef333 taeseongkim
                if (control != null)
2114 787a4489 KangIngu
                {
2115
                    this.cursor = Cursors.Hand;
2116
                    SetCursor();
2117
                }
2118
                else
2119
                {
2120 902faaea taeseongkim
                    if (this.Cursor != Cursors.None)
2121
                    {
2122
                        this.cursor = new Cursor(App.DefaultArrowCursorStream);
2123
                        SetCursor();
2124
                    }
2125 787a4489 KangIngu
                }
2126
            }
2127
            else
2128
            {
2129
            }
2130
        }
2131
2132 a1716fa5 KangIngu
        private void zoomAndPanControl2_MouseMove(object sender, MouseEventArgs e)
2133
        {
2134 e6a9ddaf humkyung
            if ((e.MiddleButton == MouseButtonState.Pressed) || (e.RightButton == MouseButtonState.Pressed))
2135 a1716fa5 KangIngu
            {
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 787a4489 KangIngu
        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 233ef333 taeseongkim
2161 787a4489 KangIngu
            if (mouseHandlingMode != MouseHandlingMode.None)
2162
            {
2163
                if (mouseHandlingMode == MouseHandlingMode.Drawing)
2164
                {
2165 902faaea taeseongkim
                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
2166 787a4489 KangIngu
2167
                    SetCursor();
2168
2169
                    switch (controlType)
2170
                    {
2171
                        case ControlType.None:
2172
                            break;
2173 233ef333 taeseongkim
2174 787a4489 KangIngu
                        case ControlType.Rectangle:
2175
                            {
2176
                            }
2177
                            break;
2178 233ef333 taeseongkim
2179 787a4489 KangIngu
                        case ControlType.PenControl:
2180
                            {
2181
                            }
2182
                            break;
2183 233ef333 taeseongkim
2184 787a4489 KangIngu
                        default:
2185
                            break;
2186 233ef333 taeseongkim
                    }
2187 787a4489 KangIngu
                }
2188 9f473fb7 KangIngu
                else if (mouseHandlingMode == MouseHandlingMode.Selecting && e.ChangedButton == MouseButton.Left || mouseHandlingMode == MouseHandlingMode.Capture && e.ChangedButton == MouseButton.Left || mouseHandlingMode == MouseHandlingMode.DragZoom && e.ChangedButton == MouseButton.Left)
2189 787a4489 KangIngu
                {
2190
                    if (isLeftMouseButtonDownOnWindow)
2191
                    {
2192
                        bool wasDragSelectionApplied = false;
2193
2194
                        if (isDraggingSelectionRect)
2195
                        {
2196 53880c83 ljiyeon
                            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 233ef333 taeseongkim
                                ViewerDataModel.Instance.ViewVisible = Visibility.Visible;
2205 53880c83 ljiyeon
                                ViewerDataModel.Instance.Capture_Opacity = 0;
2206
                            }
2207
                            else if (mouseHandlingMode == MouseHandlingMode.Capture)
2208 787a4489 KangIngu
                            {
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 9f473fb7 KangIngu
                            else if (mouseHandlingMode == MouseHandlingMode.Selecting)
2218 787a4489 KangIngu
                            {
2219
                                ApplyDragSelectionRect();
2220
                            }
2221 9f473fb7 KangIngu
                            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 787a4489 KangIngu
2234 9f473fb7 KangIngu
                            isDraggingSelectionRect = false;
2235 787a4489 KangIngu
                            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 e6a9ddaf humkyung
                else if (e.RightButton == MouseButtonState.Pressed)
2253 787a4489 KangIngu
                {
2254 902faaea taeseongkim
                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
2255 787a4489 KangIngu
                    SetCursor();
2256
                }
2257
2258
                zoomAndPanControl.ReleaseMouseCapture();
2259
2260
                e.Handled = true;
2261
            }
2262
            else
2263
            {
2264 902faaea taeseongkim
                this.cursor = new Cursor(App.DefaultArrowCursorStream);
2265 787a4489 KangIngu
                SetCursor();
2266
            }
2267
2268 e6a9ddaf humkyung
            ///mouseButtonDown = MouseButton.Left;
2269 787a4489 KangIngu
            //controlType = ControlType.SingleLine;
2270
        }
2271
2272 53880c83 ljiyeon
        public void Set_Symbol_Capture(Point endPoint)
2273 233ef333 taeseongkim
        {
2274 c7fde400 taeseongkim
            double x = CanvasDrawingMouseDownPoint.X;
2275
            double y = CanvasDrawingMouseDownPoint.Y;
2276 233ef333 taeseongkim
            if (x > endPoint.X)
2277 53880c83 ljiyeon
            {
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 69f41aab humkyung
            string uri = this.GetImageURL(_ViewInfo.DocumentItemID, Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber);
2310 53880c83 ljiyeon
            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 90e7968d ljiyeon
            //GC.Collect();
2318 53880c83 ljiyeon
2319
            if (defaultBitmapImage.IsDownloading)
2320
            {
2321
                defaultBitmapImage.DownloadCompleted += (ex, arg) =>
2322
                {
2323
                    defaultBitmapImage.Freeze();
2324 90e7968d ljiyeon
                    //GC.Collect();
2325 53880c83 ljiyeon
                    BitmapSource bs = new CroppedBitmap(defaultBitmapImage, rect);
2326
                    Save_Symbol_Capture(bs, (int)x, (int)y, (int)width, (int)height);
2327
                };
2328
            }
2329
        }
2330
2331 a1716fa5 KangIngu
        private void zoomAndPanControl2_MouseUp(object sender, MouseButtonEventArgs e)
2332
        {
2333 e6a9ddaf humkyung
            ///mouseButtonDown = MouseButton.Left;
2334 a1716fa5 KangIngu
        }
2335
2336 787a4489 KangIngu
        private void zoomAndPanControl_MouseLeave(object sender, MouseEventArgs e)
2337
        {
2338 e6a9ddaf humkyung
            ///mouseButtonDown = MouseButton.Left;
2339 902faaea taeseongkim
            //this.cursor = new Cursor(App.DefaultArrowCursorStream);
2340 787a4489 KangIngu
        }
2341
2342
        private void zoomAndPanControl_MouseDoubleClick(object sender, MouseButtonEventArgs e)
2343
        {
2344
        }
2345
2346 4804a4fb humkyung
        /// <summary>
2347
        /// select items by dragging
2348
        /// </summary>
2349 787a4489 KangIngu
        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 f87a00b1 ljiyeon
            var Items = ViewerDataModel.Instance.MarkupControls_USER.Where(d => d.Visibility != Visibility.Hidden).ToList();
2360 787a4489 KangIngu
2361 e6a9ddaf humkyung
            Rect dragRect = new Rect(x, y, width, height);
2362
            ///dragRect.Inflate(width / 10, height / 10);
2363 787a4489 KangIngu
2364
            foreach (var item in Items)
2365
            {
2366 91efe37a humkyung
                Flag = SelectionSet.Instance.SelectControl(item, dragRect);
2367 787a4489 KangIngu
2368
                if (Flag)
2369
                {
2370
                    adornerSet.Add(item);
2371 05009a0e ljiyeon
                    ViewerDataModel.Instance.MarkupControls_USER.Remove(item);
2372 787a4489 KangIngu
                    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 9f473fb7 KangIngu
            //캡쳐 중
2385
            if (mouseHandlingMode == MouseHandlingMode.Capture)
2386
            {
2387
                dragCaptureBorder.Visibility = Visibility.Visible;
2388
            }
2389 787a4489 KangIngu
            //선택 중
2390 9f473fb7 KangIngu
            else if (mouseHandlingMode == MouseHandlingMode.Selecting)
2391 787a4489 KangIngu
            {
2392
                dragSelectionBorder.Visibility = Visibility.Visible;
2393
            }
2394
            else
2395
            {
2396 9f473fb7 KangIngu
                dragZoomBorder.Visibility = Visibility.Visible;
2397 787a4489 KangIngu
            }
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 233ef333 taeseongkim
            //
2411 787a4489 KangIngu
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 9f473fb7 KangIngu
            //캡쳐 중
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 787a4489 KangIngu
            //선택 중
2446 a1716fa5 KangIngu
            else if (mouseHandlingMode == MouseHandlingMode.Selecting)
2447 787a4489 KangIngu
            {
2448
                Canvas.SetLeft(dragSelectionBorder, x);
2449
                Canvas.SetTop(dragSelectionBorder, y);
2450
                dragSelectionBorder.Width = width;
2451
                dragSelectionBorder.Height = height;
2452
            }
2453
            else
2454
            {
2455 9f473fb7 KangIngu
                Canvas.SetLeft(dragZoomBorder, x);
2456
                Canvas.SetTop(dragZoomBorder, y);
2457
                dragZoomBorder.Width = width;
2458
                dragZoomBorder.Height = height;
2459 787a4489 KangIngu
            }
2460
        }
2461
2462
        private void drawingPannelRotate(double angle)
2463
        {
2464 548c696e ljiyeon
            Logger.sendCheckLog("pageNavigator_PageChanging_drawingPannelRotate Setting", 1);
2465 787a4489 KangIngu
            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 4f017ed3 taeseongkim
            ViewerDataModel.Instance.MarkupAngle = rotate.Angle;
2509 787a4489 KangIngu
        }
2510
2511 497bbe52 ljiyeon
        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 53880c83 ljiyeon
        public void PlaceImageSymbol(string id, long group_id, int SelectedIndex, Point canvasZoomPanningMouseDownPoint)
2548 787a4489 KangIngu
        {
2549 53880c83 ljiyeon
            string Data_ = "";
2550
2551
            try
2552
            {
2553 664ea2e1 taeseongkim
                //Logger.sendReqLog("GetSymbolImageURL: ", id + "," + SelectedIndex, 1);
2554 53880c83 ljiyeon
                Data_ = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetSymbolImageURL(id, SelectedIndex);
2555
                if (Data_ != null || Data_ != "")
2556
                {
2557 664ea2e1 taeseongkim
                    //Logger.sendResLog("GetSymbolImageURL", "TRUE", 1);
2558 53880c83 ljiyeon
                }
2559
                else
2560
                {
2561 664ea2e1 taeseongkim
                    //Logger.sendResLog("GetSymbolImageURL", "FALSE", 1);
2562 53880c83 ljiyeon
                }
2563
2564 c0977e97 djkim
                //MARKUP_DATA_GROUP mARKUP_DATA_GROUP = new MARKUP_DATA_GROUP
2565
                //{
2566
                //    SYMBOL_ID = id,//InnerItem.Symbol_ID
2567
                //    STATE = 0,
2568
                //};
2569 53880c83 ljiyeon
                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 233ef333 taeseongkim
                        EndPoint = new Point(canvasZoomPanningMouseDownPoint.X + img.Source.Width,
2597 53880c83 ljiyeon
                        canvasZoomPanningMouseDownPoint.Y + img.Source.Height),
2598 233ef333 taeseongkim
                        TopRightPoint = new Point(canvasZoomPanningMouseDownPoint.X + img.Source.Width,
2599 53880c83 ljiyeon
                        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 24678e06 humkyung
                    currentControl.CommentID = Commons.shortGuid();
2631 53880c83 ljiyeon
                    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 d7e20d2d taeseongkim
        private async void zoomAndPanControl_MouseDown(object sender, MouseButtonEventArgs e)
2648 10de973b taeseongkim
        {
2649 992a98b4 KangIngu
            var set_option = this.ParentOfType<MainWindow>().dzTopMenu.Parent.ChildrenOfType<RadNumericUpDown>().Where(item => item.IsKeyboardFocusWithin).FirstOrDefault();
2650 be04d12c djkim
            if (set_option != null && !string.IsNullOrEmpty(set_option.ContentText))
2651 992a98b4 KangIngu
            {
2652
                set_option.Value = double.Parse(set_option.ContentText);
2653 5d55f6fb ljiyeon
                //set_option.Focusable = false;
2654 3c71b3a5 taeseongkim
                zoomAndPanControl.Focus();
2655 992a98b4 KangIngu
            }
2656
2657 f959ea6f humkyung
            ConvertInkControlToPolygon();
2658 787a4489 KangIngu
2659 1b2cf911 taeseongkim
            // 텍스트가 없으면 삭제됨
2660 787a4489 KangIngu
            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 a1716fa5 KangIngu
            if (text_item != null && (currentControl as ArrowTextControl) == null)
2664 787a4489 KangIngu
            {
2665 1b2cf911 taeseongkim
                DeleteCommand.Instance.Execute(new[] { text_item });
2666
                //ViewerDataModel.Instance.MarkupControls_USER.Remove(text_item);
2667 787a4489 KangIngu
            }
2668 1305c420 taeseongkim
2669 d62c0439 humkyung
            /// up to here
2670 787a4489 KangIngu
2671 b7813553 djkim
            foreach (var item in ViewerDataModel.Instance.MarkupControls_USER)
2672 787a4489 KangIngu
            {
2673 b7813553 djkim
                if (item as ArrowTextControl != null)
2674 787a4489 KangIngu
                {
2675 b7813553 djkim
                    (item as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
2676 787a4489 KangIngu
                }
2677 76688e76 djkim
                else if (item as TextControl != null)
2678
                {
2679
                    (item as TextControl).Base_TextBox.IsHitTestVisible = false;
2680
                }
2681 787a4489 KangIngu
            }
2682
2683 49b217ad humkyung
            //if (currentControl != null)
2684 787a4489 KangIngu
            {
2685 a6f7f9b6 djkim
                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 787a4489 KangIngu
                {
2688
                    (text_item_ as TextControl).Base_TextBlock.Visibility = Visibility.Visible;
2689
                    (text_item_ as TextControl).Base_TextBox.Visibility = Visibility.Collapsed;
2690 233ef333 taeseongkim
                    (text_item_ as TextControl).IsEditingMode = false;
2691 49b217ad humkyung
                    currentControl = null;
2692 787a4489 KangIngu
                }
2693
2694
                var Arrowtext_item_ = ViewerDataModel.Instance.MarkupControls_USER.Where(data => (data as ArrowTextControl) != null && (data as ArrowTextControl).IsEditingMode == true).FirstOrDefault();
2695 49b217ad humkyung
                if (Arrowtext_item_ != null && ((Arrowtext_item_ as ArrowTextControl).IsNew == false))
2696 787a4489 KangIngu
                {
2697
                    (Arrowtext_item_ as ArrowTextControl).IsEditingMode = false;
2698
                    (Arrowtext_item_ as ArrowTextControl).Base_TextBox.Focusable = false;
2699 49b217ad humkyung
                    currentControl = null;
2700 787a4489 KangIngu
                }
2701
            }
2702
2703 233ef333 taeseongkim
            double Ang = 0;
2704 787a4489 KangIngu
            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 7211e0c2 ljiyeon
            /*
2714 e6a9ddaf humkyung
            if (mouseHandlingMode == MouseHandlingMode.DragSymbol && e.LeftButton == MouseButtonState.Pressed)
2715 233ef333 taeseongkim
            {
2716 53880c83 ljiyeon
                canvasZoomPanningMouseDownPoint = e.GetPosition(zoomAndPanCanvas);
2717
                if(symbol_id != null)
2718
                {
2719
                    PlaceImageSymbol(symbol_id, symbol_group_id, symbol_SelectedIndex, canvasZoomPanningMouseDownPoint);
2720 233ef333 taeseongkim
                }
2721 53880c83 ljiyeon
            }
2722
2723 e6a9ddaf humkyung
            if (mouseHandlingMode == MouseHandlingMode.DragSymbol && e.RightButton == MouseButtonState.Pressed)
2724 53880c83 ljiyeon
            {
2725
                if (this._dragdropWindow != null)
2726
                {
2727
                    this._dragdropWindow.Close();
2728
                    this._dragdropWindow = null;
2729
                    symbol_id = null;
2730
                }
2731
            }
2732 7211e0c2 ljiyeon
            */
2733 53880c83 ljiyeon
2734 e6a9ddaf humkyung
            if (e.LeftButton == MouseButtonState.Pressed)
2735 787a4489 KangIngu
            {
2736 c7fde400 taeseongkim
                CanvasDrawingMouseDownPoint = e.GetPosition(drawingRotateCanvas);
2737 787a4489 KangIngu
                canvasZoomPanningMouseDownPoint = e.GetPosition(zoomAndPanCanvas);
2738
2739 902faaea taeseongkim
                this.cursor = new Cursor(App.DefaultArrowCursorStream);
2740 787a4489 KangIngu
                SetCursor();
2741
2742 315ae55e taeseongkim
                if (!ViewerDataModel.Instance.IsPressCtrl)
2743
                {
2744
                    SelectionSet.Instance.UnSelect(this);
2745
                }
2746 787a4489 KangIngu
            }
2747 f513c215 humkyung
2748 e6a9ddaf humkyung
            if (e.MiddleButton == MouseButtonState.Pressed)
2749 787a4489 KangIngu
            {
2750
                canvasZoommovingMouseDownPoint = e.GetPosition(zoomAndPanCanvas);
2751
                cursor = Cursors.SizeAll;
2752
                SetCursor();
2753
            }
2754 e6a9ddaf humkyung
            if (e.RightButton == MouseButtonState.Pressed)
2755 787a4489 KangIngu
            {
2756
                canvasZoommovingMouseDownPoint = e.GetPosition(zoomAndPanCanvas);
2757
                cursor = Cursors.SizeAll;
2758
                SetCursor();
2759
            }
2760 e6a9ddaf humkyung
            else if (e.XButton1 == MouseButtonState.Pressed)
2761 787a4489 KangIngu
            {
2762
                if (this.pageNavigator.CurrentPage.PageNumber + 1 <= this.pageNavigator.PageCount)
2763
                {
2764 3908a575 humkyung
                    this.pageNavigator.GotoPage(this.pageNavigator.CurrentPage.PageNumber + 1);
2765 787a4489 KangIngu
                }
2766
2767 3908a575 humkyung
                //this.pageNavigator.GotoPage(this.pageNavigator._NextPage.PageNumber);
2768 787a4489 KangIngu
            }
2769 e6a9ddaf humkyung
            else if (e.XButton2 == MouseButtonState.Pressed)
2770 787a4489 KangIngu
            {
2771
                if (this.pageNavigator.CurrentPage.PageNumber > 1)
2772
                {
2773
                    this.pageNavigator.GotoPage(this.pageNavigator.CurrentPage.PageNumber - 1);
2774
                }
2775
            }
2776
2777 1305c420 taeseongkim
            bool isArrowTextEdit = false;
2778
2779
            if (currentControl is ArrowTextControl textControl)
2780
            {
2781
                if (textControl.IsEditingMode)
2782
                    isArrowTextEdit = true;
2783
            }
2784
2785 e6a9ddaf humkyung
            if (e.LeftButton == MouseButtonState.Pressed && mouseHandlingMode != MouseHandlingMode.Drawing && currentControl == null)
2786 787a4489 KangIngu
            {
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 f513c215 humkyung
                /// 캡쳐 모드 설정
2802 9f473fb7 KangIngu
                if (mouseHandlingMode == MouseHandlingMode.Capture)
2803
                {
2804
                    dragCaptureBorder.Visibility = Visibility.Visible;
2805
                    isLeftMouseButtonDownOnWindow = true;
2806
                }
2807
2808 f513c215 humkyung
                /// 줌 모드 설정
2809 9f473fb7 KangIngu
                if (mouseHandlingMode == MouseHandlingMode.DragZoom)
2810
                {
2811
                    isLeftMouseButtonDownOnWindow = true;
2812 1066bae3 ljiyeon
                }
2813 787a4489 KangIngu
2814 a342d378 taeseongkim
                var control = ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.IsMouseEnter).FirstOrDefault();
2815 b643fcca taeseongkim
2816 233ef333 taeseongkim
                if (control == null)
2817 787a4489 KangIngu
                {
2818 b643fcca taeseongkim
                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
2819
                }
2820
                else
2821
                {
2822 233ef333 taeseongkim
                    if (ControlTypeExtansions.LineTypes.Contains(control.ControlType))
2823
                    {
2824
                        ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
2825
                    }
2826 b643fcca taeseongkim
2827 d62c0439 humkyung
                    AdornerFinal final = null;
2828 787a4489 KangIngu
2829
                    if (!ViewerDataModel.Instance.IsPressCtrl)
2830
                    {
2831 d62c0439 humkyung
                        /// 기존 selection 해제
2832 077896be humkyung
                        SelectionSet.Instance.UnSelect(this);
2833 d62c0439 humkyung
2834 787a4489 KangIngu
                        final = new AdornerFinal(control);
2835
2836 f513c215 humkyung
                        this.Control_Style(control);
2837 787a4489 KangIngu
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 9f473fb7 KangIngu
2863 787a4489 KangIngu
                        ViewerDataModel.Instance.ControlOpacity = control.Opacity;
2864 d4b0c723 KangIngu
2865
                        if ((control as TextControl) != null)
2866
                        {
2867 c206d293 taeseongkim
                            ViewerDataModel.Instance.SystemMain.dzTopMenu.SetFont((control as TextControl).TextFamily);
2868
2869 233ef333 taeseongkim
                            if (!((control as TextControl).EnableEditing))
2870
                            {
2871 71d7e0bf 송근호
                                (control as TextControl).EnableEditing = true;
2872
                            }
2873 d4b0c723 KangIngu
                            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 24c5e56c taeseongkim
                            ViewerDataModel.Instance.SystemMain.dzTopMenu.SetFont((control as ArrowTextControl).TextFamily);
2903
2904 120b8b00 송근호
                            if (!((control as ArrowTextControl).EnableEditing))
2905
                            {
2906 71d7e0bf 송근호
                                (control as ArrowTextControl).EnableEditing = true;
2907
                            }
2908 e17af42b KangIngu
                            if ((control as ArrowTextControl).TextStyle == FontStyles.Italic)
2909 d4b0c723 KangIngu
                            {
2910 e17af42b KangIngu
                                ViewerDataModel.Instance.checkTextStyle = true;
2911
                            }
2912
                            else
2913 d4b0c723 KangIngu
                            {
2914 e17af42b KangIngu
                                ViewerDataModel.Instance.checkTextStyle = false;
2915 d4b0c723 KangIngu
                            }
2916 e17af42b KangIngu
                            if ((control as ArrowTextControl).TextWeight == FontWeights.Bold)
2917 d4b0c723 KangIngu
                            {
2918 e17af42b KangIngu
                                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 d4b0c723 KangIngu
                            }
2932
                            ViewerDataModel.Instance.checkHighlight = (control as ArrowTextControl).isHighLight;
2933
                            ViewerDataModel.Instance.TextSize = (control as ArrowTextControl).TextSize;
2934
                        }
2935 9f473fb7 KangIngu
                        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 787a4489 KangIngu
                    }
2944
                    else
2945
                    {
2946 d62c0439 humkyung
                        List<CommentUserInfo> comment = SelectionSet.Instance.SelectedItems;
2947
                        SelectionSet.Instance.UnSelect(this);
2948 787a4489 KangIngu
                        comment.Add(control);
2949
2950
                        Control_Style(control);
2951
2952
                        final = new AdornerFinal(comment);
2953
                    }
2954
2955 f513c215 humkyung
                    if (final != null)
2956
                    {
2957
                        this.SelectLayer.Children.Add(final);
2958
                    }
2959 b643fcca taeseongkim
                }
2960 787a4489 KangIngu
            }
2961
            else if (mouseHandlingMode == MouseHandlingMode.Drawing)
2962 233ef333 taeseongkim
            {
2963 1305c420 taeseongkim
2964
2965 787a4489 KangIngu
                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 d7e20d2d taeseongkim
                    // 기존의 코멘트가 존재합니다. 사용자 리스트에서 먼저 선택해주세요
2983 787a4489 KangIngu
                    RadWindow.Alert(new DialogParameters
2984
                    {
2985 b9b01f8e ljiyeon
                        Owner = Application.Current.MainWindow,
2986 787a4489 KangIngu
                        Theme = new VisualStudio2013Theme(),
2987 d7e20d2d taeseongkim
                        Header = "Info",
2988
                        Content = "Existing comments already existed. Select from the user list first",
2989 787a4489 KangIngu
                    });
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 1305c420 taeseongkim
                
3001 75448f5e ljiyeon
                switch (controlType)
3002 787a4489 KangIngu
                {
3003 684ef11c ljiyeon
                    case ControlType.Coordinate:
3004
                        {
3005 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3006 684ef11c ljiyeon
                            {
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 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3015 684ef11c ljiyeon
3016
                                    currentControl = null;
3017
                                    this.cursor = Cursors.Arrow;
3018
                                }
3019
                                else
3020
                                {
3021
                                    this.ParentOfType<MainWindow>().dzTopMenu._SaveEvent(null, null);
3022 d62c0439 humkyung
                                    if (ViewerDataModel.Instance.MyMarkupList.Where(d => d.PageNumber == Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.CurrentPage.PageNumber
3023 684ef11c ljiyeon
                                     && 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 c7fde400 taeseongkim
                                            StartPoint = this.CanvasDrawingMouseDownPoint,
3036 684ef11c ljiyeon
                                            ControlType = ControlType.Coordinate
3037
                                        };
3038
3039 24678e06 humkyung
                                        currentControl.CommentID = Commons.shortGuid();
3040 684ef11c ljiyeon
                                        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 233ef333 taeseongkim
3052 684ef11c ljiyeon
                    case ControlType.InsideWhite:
3053
                        {
3054 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3055 684ef11c ljiyeon
                            {
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 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3064 684ef11c ljiyeon
3065
                                    currentControl = null;
3066
                                    this.cursor = Cursors.Arrow;
3067
                                }
3068
                                else
3069
                                {
3070
                                    currentControl = new InsideWhiteControl
3071
                                    {
3072
                                        Background = new SolidColorBrush(Colors.Black),
3073 c7fde400 taeseongkim
                                        StartPoint = this.CanvasDrawingMouseDownPoint,
3074 684ef11c ljiyeon
                                        ControlType = ControlType.InsideWhite
3075
                                    };
3076
3077 24678e06 humkyung
                                    currentControl.CommentID = Commons.shortGuid();
3078 684ef11c ljiyeon
                                    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 233ef333 taeseongkim
3088 684ef11c ljiyeon
                    case ControlType.OverlapWhite:
3089
                        {
3090 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3091 684ef11c ljiyeon
                            {
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 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3100 684ef11c ljiyeon
3101
                                    currentControl = null;
3102
                                    this.cursor = Cursors.Arrow;
3103
                                }
3104
                                else
3105
                                {
3106
                                    currentControl = new OverlapWhiteControl
3107
                                    {
3108
                                        Background = new SolidColorBrush(Colors.Black),
3109 c7fde400 taeseongkim
                                        StartPoint = this.CanvasDrawingMouseDownPoint,
3110 684ef11c ljiyeon
                                        ControlType = ControlType.OverlapWhite
3111
                                    };
3112
3113 24678e06 humkyung
                                    currentControl.CommentID = Commons.shortGuid();
3114 684ef11c ljiyeon
                                    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 233ef333 taeseongkim
3124 684ef11c ljiyeon
                    case ControlType.ClipWhite:
3125
                        {
3126 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3127 684ef11c ljiyeon
                            {
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 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3136 684ef11c ljiyeon
3137
                                    currentControl = null;
3138
                                    this.cursor = Cursors.Arrow;
3139
                                }
3140
                                else
3141
                                {
3142
                                    currentControl = new ClipWhiteControl
3143
                                    {
3144
                                        Background = new SolidColorBrush(Colors.Black),
3145 c7fde400 taeseongkim
                                        StartPoint = this.CanvasDrawingMouseDownPoint,
3146 684ef11c ljiyeon
                                        ControlType = ControlType.ClipWhite
3147
                                    };
3148
3149 24678e06 humkyung
                                    currentControl.CommentID = Commons.shortGuid();
3150 684ef11c ljiyeon
                                    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 233ef333 taeseongkim
3160 787a4489 KangIngu
                    case ControlType.Rectangle:
3161
                        {
3162 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3163 787a4489 KangIngu
                            {
3164 f67f164e humkyung
                                if (currentControl is RectangleControl)
3165
                                {
3166
                                    //20180906 LJY TEST IsRotationDrawingEnable
3167
                                    if (IsGetoutpoint((currentControl as RectangleControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3168 787a4489 KangIngu
                                    {
3169 f67f164e humkyung
                                        return;
3170
                                    }
3171 787a4489 KangIngu
3172 f67f164e humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3173
                                    currentControl = null;
3174 902faaea taeseongkim
                                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
3175 f67f164e humkyung
                                }
3176
                                else
3177
                                {
3178
                                    currentControl = new RectangleControl
3179 787a4489 KangIngu
                                    {
3180 f67f164e humkyung
                                        Background = new SolidColorBrush(Colors.Black),
3181 c7fde400 taeseongkim
                                        StartPoint = this.CanvasDrawingMouseDownPoint,
3182 f67f164e humkyung
                                        ControlType = ControlType.Rectangle
3183
                                    };
3184 787a4489 KangIngu
3185 f67f164e humkyung
                                    currentControl.CommentID = Commons.shortGuid();
3186
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3187
                                    currentControl.IsNew = true;
3188
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3189 787a4489 KangIngu
3190 f67f164e humkyung
                                    currentControl.SetValue(Canvas.ZIndexProperty, 3);
3191
                                }
3192 787a4489 KangIngu
                            }
3193
                        }
3194
                        break;
3195 233ef333 taeseongkim
3196 787a4489 KangIngu
                    case ControlType.RectCloud:
3197
                        {
3198 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3199 787a4489 KangIngu
                            {
3200 f67f164e humkyung
                                if (currentControl is RectCloudControl)
3201
                                {
3202
                                    //20180906 LJY TEST IsRotationDrawingEnable
3203
                                    if (IsGetoutpoint((currentControl as RectCloudControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3204 787a4489 KangIngu
                                    {
3205 f67f164e humkyung
                                        return;
3206
                                    }
3207 e66f22eb KangIngu
3208 f67f164e humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3209 787a4489 KangIngu
3210 f67f164e humkyung
                                    currentControl = null;
3211 233ef333 taeseongkim
3212 902faaea taeseongkim
                                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
3213 f67f164e humkyung
                                }
3214
                                else
3215
                                {
3216
                                    currentControl = new RectCloudControl
3217 787a4489 KangIngu
                                    {
3218 c7fde400 taeseongkim
                                        StartPoint = this.CanvasDrawingMouseDownPoint,
3219 f67f164e humkyung
                                        ControlType = ControlType.RectCloud,
3220
                                        Background = new SolidColorBrush(Colors.Black)
3221
                                    };
3222 787a4489 KangIngu
3223 f67f164e humkyung
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3224
                                    currentControl.CommentID = Commons.shortGuid();
3225
                                    currentControl.IsNew = true;
3226
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3227
                                }
3228 787a4489 KangIngu
                            }
3229
                        }
3230
                        break;
3231 233ef333 taeseongkim
3232 787a4489 KangIngu
                    case ControlType.Circle:
3233
                        {
3234 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3235 787a4489 KangIngu
                            {
3236 f67f164e humkyung
                                if (currentControl is CircleControl)
3237
                                {
3238
                                    //20180906 LJY TEST IsRotationDrawingEnable
3239
                                    if (IsGetoutpoint((currentControl as CircleControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3240 787a4489 KangIngu
                                    {
3241 f67f164e humkyung
                                        return;
3242
                                    }
3243 e66f22eb KangIngu
3244 f67f164e humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3245 787a4489 KangIngu
3246 f67f164e humkyung
                                    currentControl = null;
3247
                                }
3248
                                else
3249
                                {
3250
                                    currentControl = new CircleControl
3251 787a4489 KangIngu
                                    {
3252 c7fde400 taeseongkim
                                        StartPoint = this.CanvasDrawingMouseDownPoint,
3253
                                        LeftBottomPoint = this.CanvasDrawingMouseDownPoint,
3254 f67f164e humkyung
                                        Background = new SolidColorBrush(Colors.Black)
3255
                                    };
3256 787a4489 KangIngu
3257 f67f164e humkyung
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3258
                                    currentControl.CommentID = Commons.shortGuid();
3259
                                    currentControl.IsNew = true;
3260
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3261
                                }
3262 787a4489 KangIngu
                            }
3263
                        }
3264
                        break;
3265 233ef333 taeseongkim
3266 787a4489 KangIngu
                    case ControlType.Triangle:
3267
                        {
3268 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3269 787a4489 KangIngu
                            {
3270 f67f164e humkyung
                                if (currentControl is TriControl)
3271
                                {
3272
                                    var content = currentControl as TriControl;
3273
                                    if (content.MidPoint == new Point(0, 0))
3274 787a4489 KangIngu
                                    {
3275 c7fde400 taeseongkim
                                        content.MidPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y);
3276 787a4489 KangIngu
                                    }
3277
                                    else
3278
                                    {
3279 ca40e004 ljiyeon
                                        //20180906 LJY TEST IsRotationDrawingEnable
3280 f67f164e humkyung
                                        if (IsGetoutpoint((currentControl as TriControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3281 e66f22eb KangIngu
                                        {
3282
                                            return;
3283
                                        }
3284
3285 f513c215 humkyung
                                        CreateCommand.Instance.Execute(currentControl);
3286 787a4489 KangIngu
3287
                                        currentControl = null;
3288
                                    }
3289 f67f164e humkyung
                                }
3290
                                else
3291
                                {
3292
                                    currentControl = new TriControl
3293 787a4489 KangIngu
                                    {
3294 c7fde400 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
3295 f67f164e humkyung
                                        Background = new SolidColorBrush(Colors.Black),
3296
                                    };
3297 787a4489 KangIngu
3298 f67f164e humkyung
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3299
                                    currentControl.CommentID = Commons.shortGuid();
3300
                                    currentControl.IsNew = true;
3301
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3302
                                }
3303 787a4489 KangIngu
                            }
3304
                        }
3305
                        break;
3306 233ef333 taeseongkim
3307 787a4489 KangIngu
                    case ControlType.CancelLine:
3308 f67f164e humkyung
                    case ControlType.SingleLine:
3309
                    case ControlType.ArrowLine:
3310
                    case ControlType.TwinLine:
3311
                    case ControlType.DimLine:
3312 787a4489 KangIngu
                        {
3313 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3314 787a4489 KangIngu
                            {
3315 f67f164e humkyung
                                if (currentControl is LineControl)
3316
                                {
3317
                                    //20180906 LJY TEST IsRotationDrawingEnable
3318
                                    if (IsGetoutpoint((currentControl as LineControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3319 787a4489 KangIngu
                                    {
3320 f67f164e humkyung
                                        return;
3321 787a4489 KangIngu
                                    }
3322 f67f164e humkyung
3323
                                    CreateCommand.Instance.Execute(currentControl);
3324
                                    currentControl = null;
3325 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
3326 f67f164e humkyung
                                }
3327
                                else
3328
                                {
3329
                                    currentControl = new LineControl
3330 787a4489 KangIngu
                                    {
3331 f67f164e humkyung
                                        ControlType = this.controlType,
3332 c7fde400 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
3333 f67f164e humkyung
                                        Background = new SolidColorBrush(Colors.Black)
3334
                                    };
3335 787a4489 KangIngu
3336 f67f164e humkyung
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3337
                                    currentControl.CommentID = Commons.shortGuid();
3338
                                    currentControl.IsNew = true;
3339
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3340 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
3341 f67f164e humkyung
                                }
3342 787a4489 KangIngu
                            }
3343
                        }
3344
                        break;
3345 233ef333 taeseongkim
3346 f67f164e humkyung
                    case ControlType.PolygonControl:
3347 787a4489 KangIngu
                        {
3348 f67f164e humkyung
                            if (currentControl is PolygonControl)
3349 787a4489 KangIngu
                            {
3350 f67f164e humkyung
                                var control = currentControl as PolygonControl;
3351 e66f22eb KangIngu
3352 f67f164e humkyung
                                if (e.RightButton == MouseButtonState.Pressed)
3353
                                {
3354
                                    control.IsCompleted = true;
3355
                                }
3356 787a4489 KangIngu
3357 f67f164e humkyung
                                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 787a4489 KangIngu
                                    {
3366 f67f164e humkyung
                                        return;
3367 787a4489 KangIngu
                                    }
3368 e66f22eb KangIngu
3369 f67f164e humkyung
                                    var firstPoint = control.PointSet.First();
3370
                                    control.DashSize = ViewerDataModel.Instance.DashSize;
3371
                                    control.LineSize = ViewerDataModel.Instance.LineSize;
3372
                                    control.PointSet.Add(firstPoint);
3373 787a4489 KangIngu
3374 f67f164e humkyung
                                    control.ApplyOverViewData();
3375
3376
                                    CreateCommand.Instance.Execute(currentControl);
3377 0d00f9c8 humkyung
                                    control.UpdateControl();
3378 f67f164e humkyung
                                    currentControl = null;
3379
                                }
3380 787a4489 KangIngu
                            }
3381 f67f164e humkyung
                            else
3382 787a4489 KangIngu
                            {
3383 f67f164e humkyung
                                if (e.LeftButton == MouseButtonState.Pressed)
3384
                                {
3385
                                    currentControl = new PolygonControl
3386 787a4489 KangIngu
                                    {
3387 f67f164e humkyung
                                        PointSet = new List<Point>(),
3388
                                    };
3389 787a4489 KangIngu
3390 f67f164e humkyung
                                    var polygonControl = (currentControl as PolygonControl);
3391
                                    currentControl.CommentID = Commons.shortGuid();
3392
                                    currentControl.IsNew = true;
3393
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3394 c7fde400 taeseongkim
                                    polygonControl.StartPoint = CanvasDrawingMouseDownPoint;
3395
                                    polygonControl.EndPoint = CanvasDrawingMouseDownPoint;
3396
                                    polygonControl.PointSet.Add(CanvasDrawingMouseDownPoint);
3397
                                    polygonControl.PointSet.Add(CanvasDrawingMouseDownPoint);
3398 f67f164e humkyung
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3399
                                    polygonControl.ApplyTemplate();
3400
                                    polygonControl.Visibility = Visibility.Visible;
3401
                                }
3402 787a4489 KangIngu
                            }
3403
                        }
3404
                        break;
3405 233ef333 taeseongkim
3406 787a4489 KangIngu
                    case ControlType.ChainLine:
3407
                        {
3408
                            if (currentControl is PolygonControl)
3409
                            {
3410
                                var control = currentControl as PolygonControl;
3411
3412 e6a9ddaf humkyung
                                if (e.RightButton == MouseButtonState.Pressed)
3413 787a4489 KangIngu
                                {
3414 ca40e004 ljiyeon
                                    //20180906 LJY TEST IsRotationDrawingEnable
3415
                                    if (IsGetoutpoint((currentControl as PolygonControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3416 e66f22eb KangIngu
                                    {
3417
                                        return;
3418
                                    }
3419
3420 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3421 787a4489 KangIngu
3422
                                    currentControl = null;
3423 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
3424 787a4489 KangIngu
                                    return;
3425
                                }
3426
3427
                                if (!control.IsCompleted)
3428
                                {
3429
                                    control.PointSet.Add(control.EndPoint);
3430 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
3431 787a4489 KangIngu
                                }
3432
                            }
3433
                            else
3434
                            {
3435 e6a9ddaf humkyung
                                if (e.LeftButton == MouseButtonState.Pressed)
3436 787a4489 KangIngu
                                {
3437 2eac4f76 KangIngu
                                    MainAngle.Visibility = Visibility.Visible;
3438 787a4489 KangIngu
                                    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 e66f22eb KangIngu
                                    //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3449
                                    //{
3450 233ef333 taeseongkim
                                    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 e66f22eb KangIngu
                                    //}
3461 787a4489 KangIngu
                                }
3462
                            }
3463
                        }
3464
                        break;
3465 233ef333 taeseongkim
3466 787a4489 KangIngu
                    case ControlType.ArcLine:
3467
                        {
3468 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3469 787a4489 KangIngu
                            {
3470 f67f164e humkyung
                                if (currentControl is ArcControl)
3471
                                {
3472
                                    //20180906 LJY TEST IsRotationDrawingEnable
3473
                                    if (IsGetoutpoint((currentControl as ArcControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3474 787a4489 KangIngu
                                    {
3475 f67f164e humkyung
                                        return;
3476
                                    }
3477 e66f22eb KangIngu
3478 f67f164e humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3479 787a4489 KangIngu
3480 f67f164e humkyung
                                    currentControl = null;
3481 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
3482 f67f164e humkyung
                                }
3483
                                else
3484
                                {
3485
                                    currentControl = new ArcControl
3486 787a4489 KangIngu
                                    {
3487 c7fde400 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
3488 f67f164e humkyung
                                        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 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
3495 f67f164e humkyung
                                }
3496 787a4489 KangIngu
                            }
3497 e6a9ddaf humkyung
                            else if (e.RightButton == MouseButtonState.Pressed)
3498 787a4489 KangIngu
                            {
3499
                                if (currentControl != null)
3500
                                {
3501
                                    (currentControl as ArcControl).setClock();
3502 05f4d127 KangIngu
                                    (currentControl as ArcControl).MidPoint = new Point(0, 0);
3503 787a4489 KangIngu
                                }
3504
                            }
3505
                        }
3506
                        break;
3507 233ef333 taeseongkim
3508 787a4489 KangIngu
                    case ControlType.ArcArrow:
3509
                        {
3510 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3511 787a4489 KangIngu
                            {
3512 e66f22eb KangIngu
                                //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3513
                                //{
3514 40b3ce25 ljiyeon
                                if (currentControl is ArrowArcControl)
3515
                                {
3516
                                    //20180906 LJY TEST IsRotationDrawingEnable
3517
                                    if (IsGetoutpoint((currentControl as ArrowArcControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3518 787a4489 KangIngu
                                    {
3519 40b3ce25 ljiyeon
                                        return;
3520
                                    }
3521 e66f22eb KangIngu
3522 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3523 787a4489 KangIngu
3524 40b3ce25 ljiyeon
                                    currentControl = null;
3525 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
3526 40b3ce25 ljiyeon
                                }
3527
                                else
3528
                                {
3529
                                    currentControl = new ArrowArcControl
3530 787a4489 KangIngu
                                    {
3531 c7fde400 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
3532 40b3ce25 ljiyeon
                                        Background = new SolidColorBrush(Colors.Black)
3533
                                    };
3534 24678e06 humkyung
                                    currentControl.CommentID = Commons.shortGuid();
3535 40b3ce25 ljiyeon
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3536
                                    currentControl.IsNew = true;
3537
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3538 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
3539 40b3ce25 ljiyeon
                                }
3540 e66f22eb KangIngu
                                //}
3541 787a4489 KangIngu
                            }
3542 e6a9ddaf humkyung
                            else if (e.RightButton == MouseButtonState.Pressed)
3543 787a4489 KangIngu
                            {
3544 40b3ce25 ljiyeon
                                if (currentControl != null)
3545
                                {
3546
                                    (currentControl as ArrowArcControl).setClock();
3547 24c5e56c taeseongkim
                                    (currentControl as ArrowArcControl).MiddlePoint = new Point(0, 0);
3548 40b3ce25 ljiyeon
                                    //(currentControl as ArcControl).ApplyTemplate();
3549
                                }
3550 787a4489 KangIngu
                            }
3551
                        }
3552
                        break;
3553 233ef333 taeseongkim
3554 787a4489 KangIngu
                    case ControlType.ArrowMultiLine:
3555
                        {
3556 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3557 787a4489 KangIngu
                            {
3558 e66f22eb KangIngu
                                //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3559
                                //{
3560 233ef333 taeseongkim
                                if (currentControl is ArrowControl_Multi)
3561
                                {
3562
                                    var content = currentControl as ArrowControl_Multi;
3563
                                    if (content.MiddlePoint == new Point(0, 0))
3564 787a4489 KangIngu
                                    {
3565 233ef333 taeseongkim
                                        if (ViewerDataModel.Instance.IsAxisLock || ViewerDataModel.Instance.IsPressShift)
3566 787a4489 KangIngu
                                        {
3567 233ef333 taeseongkim
                                            content.MiddlePoint = content.EndPoint;
3568 787a4489 KangIngu
                                        }
3569
                                        else
3570
                                        {
3571 233ef333 taeseongkim
                                            content.MiddlePoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y);
3572 787a4489 KangIngu
                                        }
3573
                                    }
3574
                                    else
3575
                                    {
3576 233ef333 taeseongkim
                                        //20180906 LJY TEST IsRotationDrawingEnable
3577
                                        if (IsGetoutpoint((currentControl as ArrowControl_Multi).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3578 787a4489 KangIngu
                                        {
3579 233ef333 taeseongkim
                                            return;
3580
                                        }
3581
3582
                                        CreateCommand.Instance.Execute(currentControl);
3583
3584
                                        currentControl = null;
3585
                                        ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
3586 787a4489 KangIngu
                                    }
3587 233ef333 taeseongkim
                                }
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 e66f22eb KangIngu
                                //}
3602 787a4489 KangIngu
                            }
3603
                        }
3604
                        break;
3605 233ef333 taeseongkim
3606 787a4489 KangIngu
                    case ControlType.PolygonCloud:
3607
                        {
3608
                            if (currentControl is CloudControl)
3609
                            {
3610
                                var control = currentControl as CloudControl;
3611 e6a9ddaf humkyung
                                if (e.RightButton == MouseButtonState.Pressed)
3612 787a4489 KangIngu
                                {
3613
                                    control.IsCompleted = true;
3614
                                }
3615
3616
                                if (!control.IsCompleted)
3617
                                {
3618
                                    control.PointSet.Add(control.EndPoint);
3619
                                }
3620
                                else
3621
                                {
3622 ca40e004 ljiyeon
                                    //20180906 LJY TEST IsRotationDrawingEnable
3623
                                    if (IsGetoutpoint((currentControl as CloudControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3624 e66f22eb KangIngu
                                    {
3625
                                        return;
3626
                                    }
3627
3628 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3629 787a4489 KangIngu
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 e6a9ddaf humkyung
                                if (e.LeftButton == MouseButtonState.Pressed)
3643 787a4489 KangIngu
                                {
3644
                                    currentControl = new CloudControl
3645
                                    {
3646
                                        PointSet = new List<Point>(),
3647
                                        PointC = new StylusPointSet()
3648
                                    };
3649
3650 e66f22eb KangIngu
                                    //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3651
                                    //{
3652 233ef333 taeseongkim
                                    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 787a4489 KangIngu
3661 e66f22eb KangIngu
                                    //}
3662 787a4489 KangIngu
                                }
3663
                            }
3664
                        }
3665
                        break;
3666 233ef333 taeseongkim
3667 787a4489 KangIngu
                    case ControlType.ImgControl:
3668
                        {
3669 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3670 787a4489 KangIngu
                            {
3671 e66f22eb KangIngu
                                //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3672
                                //{
3673 233ef333 taeseongkim
                                if (currentControl is ImgControl)
3674
                                {
3675
                                    //20180906 LJY TEST IsRotationDrawingEnable
3676
                                    if (IsGetoutpoint((currentControl as ImgControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3677 787a4489 KangIngu
                                    {
3678 233ef333 taeseongkim
                                        return;
3679 787a4489 KangIngu
                                    }
3680 233ef333 taeseongkim
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 787a4489 KangIngu
                                    {
3690 b42dd24d taeseongkim
                                        UriBuilder downloadUri = new UriBuilder(App.BaseAddress);
3691
                                        UriBuilder uri = new UriBuilder(filename);
3692
                                        uri.Host = downloadUri.Host;
3693
                                        uri.Port = downloadUri.Port;
3694
3695 233ef333 taeseongkim
                                        Image img = new Image();
3696
                                        if (filename.Contains(".svg"))
3697 787a4489 KangIngu
                                        {
3698 233ef333 taeseongkim
                                            byte[] imageData = null;
3699
                                            DrawingImage image = null;
3700
                                            using (System.Net.WebClient web = new System.Net.WebClient())
3701 53880c83 ljiyeon
                                            {
3702 b42dd24d taeseongkim
                                                imageData = web.DownloadData(uri.Uri);
3703 233ef333 taeseongkim
                                                System.IO.Stream stream = new System.IO.MemoryStream(imageData);
3704
                                                image = SvgReader.Load(stream);
3705 53880c83 ljiyeon
                                            }
3706 233ef333 taeseongkim
                                            img.Source = image;
3707
                                        }
3708
                                        else
3709
                                        {
3710 b42dd24d taeseongkim
                                            img.Source = new BitmapImage(uri.Uri);
3711 233ef333 taeseongkim
                                        }
3712 787a4489 KangIngu
3713 233ef333 taeseongkim
                                        currentControl = new ImgControl
3714
                                        {
3715
                                            Background = new SolidColorBrush(Colors.Black),
3716
                                            PointSet = new List<Point>(),
3717 b42dd24d taeseongkim
                                            FilePath = uri.Uri.ToString(),
3718 233ef333 taeseongkim
                                            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 fa48eb85 taeseongkim
                                        (currentControl as ImgControl).CommentAngle -= rotate.Angle;
3733
                                    }
3734 233ef333 taeseongkim
                                }
3735 e66f22eb KangIngu
                                //}
3736 787a4489 KangIngu
                            }
3737
                        }
3738
                        break;
3739 233ef333 taeseongkim
3740 787a4489 KangIngu
                    case ControlType.Date:
3741
                        {
3742 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3743 787a4489 KangIngu
                            {
3744 e66f22eb KangIngu
                                //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3745
                                //{
3746 6b6e937c taeseongkim
                                if (currentControl is DateControl)
3747
                                {
3748
                                    //20180906 LJY TEST IsRotationDrawingEnable
3749
                                    if (IsGetoutpoint((currentControl as DateControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3750 787a4489 KangIngu
                                    {
3751 6b6e937c taeseongkim
                                        return;
3752
                                    }
3753 e66f22eb KangIngu
3754 6b6e937c taeseongkim
                                    CreateCommand.Instance.Execute(currentControl);
3755
                                    currentControl = null;
3756 787a4489 KangIngu
3757 6b6e937c taeseongkim
                                    if (Common.ViewerDataModel.Instance.SelectedControl == "Batch")
3758 b74a9c91 taeseongkim
                                    { 
3759 6b6e937c taeseongkim
                                        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 787a4489 KangIngu
                                    }
3767 6b6e937c taeseongkim
                                }
3768
                                else
3769
                                {
3770
                                    currentControl = new DateControl
3771 787a4489 KangIngu
                                    {
3772 6b6e937c taeseongkim
                                        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 ca40e004 ljiyeon
3780 233ef333 taeseongkim
                                    //20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정
3781 6b6e937c taeseongkim
                                    if (currentControl is ImgControl)
3782
                                    {
3783 fa48eb85 taeseongkim
                                        (currentControl as ImgControl).CommentAngle -= rotate.Angle;
3784 6b6e937c taeseongkim
                                    }
3785 ca40e004 ljiyeon
                                }
3786 e66f22eb KangIngu
                                //}
3787 787a4489 KangIngu
                            }
3788
                        }
3789
                        break;
3790 233ef333 taeseongkim
3791 787a4489 KangIngu
                    case ControlType.TextControl:
3792
                        {
3793 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3794 787a4489 KangIngu
                            {
3795
                                if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3796
                                {
3797
                                    currentControl = new TextControl
3798
                                    {
3799
                                        ControlType = controlType
3800
                                    };
3801 610a4b86 KangIngu
                                    (currentControl as TextControl).TextSize = ViewerDataModel.Instance.TextSize;
3802 24678e06 humkyung
                                    currentControl.CommentID = Commons.shortGuid();
3803 8742caa5 humkyung
                                    currentControl.IsNew = true;
3804
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3805
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3806 1066bae3 ljiyeon
                                    currentControl.SetValue(Canvas.ZIndexProperty, 3);
3807
3808 c7fde400 taeseongkim
                                    currentControl.SetValue(TextControl.CanvasXProperty, CanvasDrawingMouseDownPoint.X);
3809
                                    currentControl.SetValue(TextControl.CanvasYProperty, CanvasDrawingMouseDownPoint.Y);
3810 233ef333 taeseongkim
3811 8742caa5 humkyung
                                    (currentControl as TextControl).ControlType_No = 0;
3812 fa48eb85 taeseongkim
                                    (currentControl as TextControl).CommentAngle -= rotate.Angle;
3813 8742caa5 humkyung
                                    (currentControl as TextControl).IsHighLight = ViewerDataModel.Instance.checkHighShape;
3814 6b5d33c6 djkim
                                    (currentControl as TextControl).ApplyTemplate();
3815
                                    (currentControl as TextControl).Base_TextBox.Focus();
3816 55d4f382 송근호
                                    (currentControl as TextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text));
3817 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3818 787a4489 KangIngu
                                }
3819
                            }
3820
                        }
3821
                        break;
3822 233ef333 taeseongkim
3823 787a4489 KangIngu
                    case ControlType.TextBorder:
3824
                        {
3825 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3826 787a4489 KangIngu
                            {
3827
                                if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3828
                                {
3829
                                    currentControl = new TextControl
3830
                                    {
3831
                                        ControlType = controlType
3832
                                    };
3833
3834 610a4b86 KangIngu
                                    (currentControl as TextControl).TextSize = ViewerDataModel.Instance.TextSize;
3835 787a4489 KangIngu
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3836 24678e06 humkyung
                                    currentControl.CommentID = Commons.shortGuid();
3837 787a4489 KangIngu
                                    currentControl.IsNew = true;
3838
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3839
                                    currentControl.SetValue(Canvas.ZIndexProperty, 3);
3840 c7fde400 taeseongkim
                                    currentControl.SetValue(TextControl.CanvasXProperty, CanvasDrawingMouseDownPoint.X);
3841
                                    currentControl.SetValue(TextControl.CanvasYProperty, CanvasDrawingMouseDownPoint.Y);
3842 233ef333 taeseongkim
3843 787a4489 KangIngu
                                    (currentControl as TextControl).ControlType_No = 1;
3844 fa48eb85 taeseongkim
                                    (currentControl as TextControl).CommentAngle = Ang;
3845 787a4489 KangIngu
                                    (currentControl as TextControl).IsHighLight = ViewerDataModel.Instance.checkHighShape;
3846 6b5d33c6 djkim
                                    (currentControl as TextControl).ApplyTemplate();
3847
                                    (currentControl as TextControl).Base_TextBox.Focus();
3848 55d4f382 송근호
                                    (currentControl as TextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text));
3849 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3850 787a4489 KangIngu
                                }
3851
                            }
3852
                        }
3853
                        break;
3854 233ef333 taeseongkim
3855 787a4489 KangIngu
                    case ControlType.TextCloud:
3856
                        {
3857 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3858 787a4489 KangIngu
                            {
3859
                                if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3860
                                {
3861
                                    currentControl = new TextControl
3862
                                    {
3863
                                        ControlType = controlType
3864
                                    };
3865 610a4b86 KangIngu
3866
                                    (currentControl as TextControl).TextSize = ViewerDataModel.Instance.TextSize;
3867 24678e06 humkyung
                                    currentControl.CommentID = Commons.shortGuid();
3868 787a4489 KangIngu
                                    currentControl.IsNew = true;
3869
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3870
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3871
3872
                                    currentControl.SetValue(Canvas.ZIndexProperty, 3);
3873 c7fde400 taeseongkim
                                    currentControl.SetValue(TextControl.CanvasXProperty, CanvasDrawingMouseDownPoint.X);
3874
                                    currentControl.SetValue(TextControl.CanvasYProperty, CanvasDrawingMouseDownPoint.Y);
3875 787a4489 KangIngu
3876 fa48eb85 taeseongkim
                                    (currentControl as TextControl).CommentAngle = Ang;
3877 787a4489 KangIngu
                                    (currentControl as TextControl).ControlType_No = 2;
3878
                                    (currentControl as TextControl).IsHighLight = ViewerDataModel.Instance.checkHighShape;
3879 664ea2e1 taeseongkim
                                    (currentControl as TextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text));
3880
3881 6b5d33c6 djkim
                                    (currentControl as TextControl).ApplyTemplate();
3882
                                    (currentControl as TextControl).Base_TextBox.Focus();
3883 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3884 664ea2e1 taeseongkim
                                    
3885 49b217ad humkyung
                                    //currentControl = null;
3886 787a4489 KangIngu
                                }
3887
                            }
3888
                        }
3889
                        break;
3890 233ef333 taeseongkim
3891 787a4489 KangIngu
                    case ControlType.ArrowTextControl:
3892 233ef333 taeseongkim
                        {
3893 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3894 787a4489 KangIngu
                            {
3895
                                if (currentControl is ArrowTextControl)
3896
                                {
3897 ca40e004 ljiyeon
                                    //20180906 LJY TEST IsRotationDrawingEnable
3898
                                    if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3899 e66f22eb KangIngu
                                    {
3900
                                        return;
3901 f513c215 humkyung
                                    }
3902 e66f22eb KangIngu
3903 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3904 1305c420 taeseongkim
3905 b74a9c91 taeseongkim
                                    try
3906
                                    {
3907 1305c420 taeseongkim
                                        if(!(currentControl as ArrowTextControl).IsEditingMode)
3908
                                        {
3909
                                            ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
3910
                                        }
3911 b74a9c91 taeseongkim
                                    }
3912
                                    catch (Exception ex)
3913
                                    {
3914
                                        System.Diagnostics.Debug.WriteLine(ex.ToString());
3915
                                    }
3916 787a4489 KangIngu
3917
                                    (currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
3918
                                    (currentControl as ArrowTextControl).EnableEditing = false;
3919 49b217ad humkyung
                                    (currentControl as ArrowTextControl).IsNew = false;
3920 787a4489 KangIngu
                                    currentControl = null;
3921
                                }
3922
                                else
3923
                                {
3924 e66f22eb KangIngu
                                    //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3925
                                    //{
3926 907a99b3 taeseongkim
                                    currentControl = new ArrowTextControl()
3927
                                    {
3928
                                        PageAngle = ViewerDataModel.Instance.PageAngle
3929
                                    };
3930
3931 233ef333 taeseongkim
                                    currentControl.CommentID = Commons.shortGuid();
3932
                                    currentControl.IsNew = true;
3933
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
3934 1305c420 taeseongkim
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 787a4489 KangIngu
3944 233ef333 taeseongkim
                                    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 787a4489 KangIngu
3950 233ef333 taeseongkim
                                    //20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정
3951 fa48eb85 taeseongkim
                                    (currentControl as ArrowTextControl).CommentAngle -= rotate.Angle;
3952 787a4489 KangIngu
3953 fa48eb85 taeseongkim
                                    (currentControl as ArrowTextControl).ApplyTemplate();
3954 233ef333 taeseongkim
                                    (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 ca40e004 ljiyeon
3958 e66f22eb KangIngu
                                    //}
3959 787a4489 KangIngu
                                }
3960
                            }
3961
                        }
3962
                        break;
3963 233ef333 taeseongkim
3964 787a4489 KangIngu
                    case ControlType.ArrowTransTextControl:
3965
                        {
3966 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
3967 787a4489 KangIngu
                            {
3968
                                if (currentControl is ArrowTextControl)
3969
                                {
3970 ca40e004 ljiyeon
                                    //20180906 LJY TEST IsRotationDrawingEnable
3971
                                    if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
3972 e66f22eb KangIngu
                                    {
3973
                                        return;
3974 f513c215 humkyung
                                    }
3975 e66f22eb KangIngu
3976 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
3977 55d4f382 송근호
3978 787a4489 KangIngu
                                    (currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
3979 233ef333 taeseongkim
3980 49b217ad humkyung
                                    currentControl.IsNew = false;
3981 787a4489 KangIngu
                                    currentControl = null;
3982 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
3983 787a4489 KangIngu
                                }
3984
                                else
3985
                                {
3986 e66f22eb KangIngu
                                    //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
3987
                                    //{
3988 120b8b00 송근호
                                    currentControl = new ArrowTextControl()
3989
                                    {
3990 907a99b3 taeseongkim
                                        ControlType = ControlType.ArrowTransTextControl,
3991
                                        PageAngle = ViewerDataModel.Instance.PageAngle
3992 120b8b00 송근호
                                    };
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 c7fde400 taeseongkim
                                    currentControl.SetValue(ArrowTextControl.StartPointProperty, CanvasDrawingMouseDownPoint);
3999 233ef333 taeseongkim
                                    currentControl.SetValue(ArrowTextControl.EndPointProperty, CanvasDrawingMouseDownPoint);
4000 120b8b00 송근호
                                    (currentControl as ArrowTextControl).TextSize = ViewerDataModel.Instance.TextSize;
4001
                                    (currentControl as ArrowTextControl).isFixed = true;
4002
                                    (currentControl as ArrowTextControl).isHighLight = ViewerDataModel.Instance.checkHighShape;
4003 787a4489 KangIngu
4004 233ef333 taeseongkim
                                    //20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정
4005 fa48eb85 taeseongkim
                                    (currentControl as ArrowTextControl).CommentAngle -= rotate.Angle;
4006 ca40e004 ljiyeon
4007 120b8b00 송근호
                                    (currentControl as ArrowTextControl).ApplyTemplate();
4008
                                    (currentControl as ArrowTextControl).Base_TextBox.Focus();
4009
                                    (currentControl as ArrowTextControl).isTrans = true;
4010 55d4f382 송근호
                                    (currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text));
4011 787a4489 KangIngu
                                }
4012
                            }
4013
                        }
4014
                        break;
4015 233ef333 taeseongkim
4016 787a4489 KangIngu
                    case ControlType.ArrowTextBorderControl:
4017 233ef333 taeseongkim
                        {
4018 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4019 787a4489 KangIngu
                            {
4020
                                if (currentControl is ArrowTextControl)
4021
                                {
4022 ca40e004 ljiyeon
                                    //20180906 LJY TEST IsRotationDrawingEnable
4023
                                    if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4024 e66f22eb KangIngu
                                    {
4025
                                        return;
4026
                                    }
4027
4028 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
4029 787a4489 KangIngu
                                    (currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
4030 49b217ad humkyung
                                    currentControl.IsNew = false;
4031 787a4489 KangIngu
                                    currentControl = null;
4032 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
4033 787a4489 KangIngu
                                }
4034
                                else
4035
                                {
4036 e66f22eb KangIngu
                                    //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
4037
                                    //{
4038 233ef333 taeseongkim
                                    currentControl = new ArrowTextControl()
4039
                                    {
4040 907a99b3 taeseongkim
                                        ArrowTextStyle = MarkupToPDF.Controls.Text.ArrowTextControl.ArrowTextStyleSet.Rect,
4041
                                        PageAngle = ViewerDataModel.Instance.PageAngle
4042 233ef333 taeseongkim
                                    };
4043
                                    currentControl.CommentID = Commons.shortGuid();
4044
                                    currentControl.IsNew = true;
4045
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
4046
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
4047 787a4489 KangIngu
4048 233ef333 taeseongkim
                                    currentControl.SetValue(Canvas.ZIndexProperty, 3);
4049
4050
                                    currentControl.SetValue(ArrowTextControl.StartPointProperty, CanvasDrawingMouseDownPoint);
4051 787a4489 KangIngu
4052 233ef333 taeseongkim
                                    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 e66f22eb KangIngu
                                    //}
4062 787a4489 KangIngu
                                }
4063
                            }
4064
                        }
4065
                        break;
4066 233ef333 taeseongkim
4067 787a4489 KangIngu
                    case ControlType.ArrowTransTextBorderControl:
4068
                        {
4069 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4070 787a4489 KangIngu
                            {
4071
                                if (currentControl is ArrowTextControl)
4072
                                {
4073 ca40e004 ljiyeon
                                    //20180906 LJY TEST IsRotationDrawingEnable
4074
                                    if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4075 e66f22eb KangIngu
                                    {
4076
                                        return;
4077
                                    }
4078 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
4079 787a4489 KangIngu
                                    (currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
4080 49b217ad humkyung
                                    currentControl.IsNew = false;
4081 787a4489 KangIngu
                                    currentControl = null;
4082 55d4f382 송근호
4083 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
4084 787a4489 KangIngu
                                }
4085
                                else
4086
                                {
4087 e66f22eb KangIngu
                                    //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
4088
                                    //{
4089 ca40e004 ljiyeon
                                    currentControl = new ArrowTextControl()
4090 120b8b00 송근호
                                    {
4091
                                        ArrowTextStyle = MarkupToPDF.Controls.Text.ArrowTextControl.ArrowTextStyleSet.Rect,
4092 4f017ed3 taeseongkim
                                        ControlType = ControlType.ArrowTransTextBorderControl,
4093
                                        PageAngle = ViewerDataModel.Instance.PageAngle
4094 120b8b00 송근호
                                    };
4095 4f017ed3 taeseongkim
                                    
4096 233ef333 taeseongkim
                                    currentControl.CommentID = Commons.shortGuid();
4097
                                    currentControl.IsNew = true;
4098
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
4099
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
4100 787a4489 KangIngu
4101 233ef333 taeseongkim
                                    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 787a4489 KangIngu
4116 ca40e004 ljiyeon
                                    //20180911 LJY
4117 233ef333 taeseongkim
                                    (currentControl as ArrowTextControl).isTrans = true;
4118 ca40e004 ljiyeon
4119 e66f22eb KangIngu
                                    //}
4120 787a4489 KangIngu
                                }
4121
                            }
4122
                        }
4123
                        break;
4124 233ef333 taeseongkim
4125 787a4489 KangIngu
                    case ControlType.ArrowTextCloudControl:
4126
                        {
4127 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4128 787a4489 KangIngu
                            {
4129
                                if (currentControl is ArrowTextControl)
4130
                                {
4131 ca40e004 ljiyeon
                                    //20180906 LJY TEST IsRotationDrawingEnable
4132
                                    if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4133 e66f22eb KangIngu
                                    {
4134
                                        return;
4135
                                    }
4136 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
4137 787a4489 KangIngu
                                    (currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
4138 49b217ad humkyung
                                    currentControl.IsNew = false;
4139 787a4489 KangIngu
                                    currentControl = null;
4140 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
4141 787a4489 KangIngu
                                }
4142
                                else
4143
                                {
4144 e66f22eb KangIngu
                                    //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
4145
                                    //{
4146 233ef333 taeseongkim
                                    currentControl = new ArrowTextControl()
4147
                                    {
4148 907a99b3 taeseongkim
                                        ArrowTextStyle = MarkupToPDF.Controls.Text.ArrowTextControl.ArrowTextStyleSet.Cloud,
4149
                                        PageAngle = ViewerDataModel.Instance.PageAngle
4150 233ef333 taeseongkim
                                    };
4151
                                    currentControl.CommentID = Commons.shortGuid();
4152
                                    currentControl.IsNew = true;
4153
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
4154
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
4155 787a4489 KangIngu
4156 233ef333 taeseongkim
                                    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 e66f22eb KangIngu
                                    //}
4169 787a4489 KangIngu
                                }
4170
                            }
4171
                        }
4172
                        break;
4173 233ef333 taeseongkim
4174 787a4489 KangIngu
                    case ControlType.ArrowTransTextCloudControl:
4175
                        {
4176 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4177 787a4489 KangIngu
                            {
4178
                                if (currentControl is ArrowTextControl)
4179
                                {
4180 ca40e004 ljiyeon
                                    //20180906 LJY TEST IsRotationDrawingEnable
4181
                                    if (IsGetoutpoint((currentControl as ArrowTextControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4182 e66f22eb KangIngu
                                    {
4183
                                        return;
4184
                                    }
4185 f513c215 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
4186 787a4489 KangIngu
                                    (currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
4187 49b217ad humkyung
                                    currentControl.IsNew = false;
4188 787a4489 KangIngu
                                    currentControl = null;
4189 b643fcca taeseongkim
                                    ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
4190 787a4489 KangIngu
                                }
4191
                                else
4192
                                {
4193 e66f22eb KangIngu
                                    //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
4194
                                    //{
4195 233ef333 taeseongkim
                                    currentControl = new ArrowTextControl()
4196
                                    {
4197
                                        ArrowTextStyle = MarkupToPDF.Controls.Text.ArrowTextControl.ArrowTextStyleSet.Cloud,
4198 907a99b3 taeseongkim
                                        ControlType = ControlType.ArrowTransTextCloudControl,
4199
                                        PageAngle = ViewerDataModel.Instance.PageAngle
4200 233ef333 taeseongkim
                                    };
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 120b8b00 송근호
4207 233ef333 taeseongkim
                                    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 787a4489 KangIngu
4220 ca40e004 ljiyeon
                                    //20180911 LJY
4221 233ef333 taeseongkim
                                    (currentControl as ArrowTextControl).isTrans = true;
4222 e66f22eb KangIngu
                                    //}
4223 787a4489 KangIngu
                                }
4224
                            }
4225
                        }
4226
                        break;
4227
                    //강인구 추가
4228
                    case ControlType.Sign:
4229
                        {
4230 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4231 787a4489 KangIngu
                            {
4232 e66f22eb KangIngu
                                //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
4233
                                //{
4234 d7e20d2d taeseongkim
                                var _sign = await BaseTaskClient.GetSignDataAsync(App.ViewInfo.ProjectNO, App.ViewInfo.UserID);
4235 992a98b4 KangIngu
4236 d7e20d2d taeseongkim
                                if (_sign == null)
4237 233ef333 taeseongkim
                                {
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 74abcf6f taeseongkim
                                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 992a98b4 KangIngu
4258 233ef333 taeseongkim
                                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 992a98b4 KangIngu
                                        return;
4264
                                    }
4265
4266 233ef333 taeseongkim
                                    CreateCommand.Instance.Execute(currentControl);
4267
                                    currentControl = null;
4268
                                    if (Common.ViewerDataModel.Instance.SelectedControl == "Batch")
4269 787a4489 KangIngu
                                    {
4270 233ef333 taeseongkim
                                        txtBatch.Text = "Place Date";
4271
                                        controlType = ControlType.Date;
4272 787a4489 KangIngu
                                    }
4273 233ef333 taeseongkim
                                }
4274
                                else
4275
                                {
4276
                                    currentControl = new SignControl
4277 787a4489 KangIngu
                                    {
4278 233ef333 taeseongkim
                                        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 787a4489 KangIngu
4286 233ef333 taeseongkim
                                    currentControl.CommentID = Commons.shortGuid();
4287
                                    currentControl.IsNew = true;
4288
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
4289
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
4290 ca40e004 ljiyeon
4291 233ef333 taeseongkim
                                    //20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정
4292
                                    (currentControl as SignControl).CommentAngle -= rotate.Angle;
4293 ca40e004 ljiyeon
                                }
4294 e66f22eb KangIngu
                                //}
4295 787a4489 KangIngu
                            }
4296
                        }
4297
                        break;
4298 233ef333 taeseongkim
4299 787a4489 KangIngu
                    case ControlType.Mark:
4300
                        {
4301 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4302 787a4489 KangIngu
                            {
4303 e66f22eb KangIngu
                                //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
4304
                                //{
4305 233ef333 taeseongkim
                                if (currentControl is RectangleControl)
4306
                                {
4307
                                    //20180906 LJY TEST IsRotationDrawingEnable
4308
                                    if (IsGetoutpoint((currentControl as RectangleControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4309 787a4489 KangIngu
                                    {
4310 233ef333 taeseongkim
                                        return;
4311
                                    }
4312 e66f22eb KangIngu
4313 233ef333 taeseongkim
                                    CreateCommand.Instance.Execute(currentControl);
4314
                                    (currentControl as RectangleControl).ApplyOverViewData();
4315
                                    currentControl = null;
4316 787a4489 KangIngu
4317 902faaea taeseongkim
                                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
4318 233ef333 taeseongkim
4319
                                    if (Common.ViewerDataModel.Instance.SelectedControl == "Batch")
4320
                                    {
4321
                                        txtBatch.Text = "Place Signature";
4322
                                        controlType = ControlType.Sign;
4323 787a4489 KangIngu
                                    }
4324 233ef333 taeseongkim
                                }
4325
                                else
4326
                                {
4327
                                    currentControl = new RectangleControl
4328 787a4489 KangIngu
                                    {
4329 233ef333 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
4330
                                        Background = new SolidColorBrush(Colors.Black),
4331
                                        ControlType = ControlType.Mark,
4332
                                        Paint = PaintSet.Fill
4333
                                    };
4334 787a4489 KangIngu
4335 233ef333 taeseongkim
                                    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 e66f22eb KangIngu
                                //}
4342 787a4489 KangIngu
                            }
4343
                        }
4344
                        break;
4345 233ef333 taeseongkim
4346 787a4489 KangIngu
                    case ControlType.Symbol:
4347
                        {
4348 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4349 787a4489 KangIngu
                            {
4350 a6272c57 humkyung
                                if (currentControl is SymControl)
4351
                                {
4352
                                    //20180906 LJY TEST IsRotationDrawingEnable
4353
                                    if (IsGetoutpoint((currentControl as SymControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4354 787a4489 KangIngu
                                    {
4355 a6272c57 humkyung
                                        return;
4356 787a4489 KangIngu
                                    }
4357 a6272c57 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
4358
                                    currentControl = null;
4359 233ef333 taeseongkim
4360 902faaea taeseongkim
                                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
4361 a6272c57 humkyung
                                }
4362
                                else
4363
                                {
4364
                                    currentControl = new SymControl
4365 787a4489 KangIngu
                                    {
4366 c7fde400 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
4367 a6272c57 humkyung
                                        Background = new SolidColorBrush(Colors.Black),
4368
                                        LineSize = ViewerDataModel.Instance.LineSize + 3,
4369
                                        ControlType = ControlType.Symbol
4370
                                    };
4371 787a4489 KangIngu
4372 a6272c57 humkyung
                                    currentControl.IsNew = true;
4373
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
4374
                                    currentControl.CommentID = Commons.shortGuid();
4375
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
4376 ca40e004 ljiyeon
4377 233ef333 taeseongkim
                                    //20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정
4378 fa48eb85 taeseongkim
                                    (currentControl as SymControl).CommentAngle -= rotate.Angle;
4379 ca40e004 ljiyeon
                                }
4380 e66f22eb KangIngu
                                //}
4381 787a4489 KangIngu
                            }
4382
                        }
4383
                        break;
4384 233ef333 taeseongkim
4385 787a4489 KangIngu
                    case ControlType.Stamp:
4386
                        {
4387 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4388 787a4489 KangIngu
                            {
4389 e66f22eb KangIngu
                                //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
4390
                                //{
4391 233ef333 taeseongkim
                                if (currentControl is SymControlN)
4392
                                {
4393
                                    //20180906 LJY TEST IsRotationDrawingEnable
4394
                                    if (IsGetoutpoint((currentControl as SymControlN).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4395 787a4489 KangIngu
                                    {
4396 233ef333 taeseongkim
                                        return;
4397
                                    }
4398 e66f22eb KangIngu
4399 233ef333 taeseongkim
                                    CreateCommand.Instance.Execute(currentControl);
4400
                                    currentControl = null;
4401 510cbd2a ljiyeon
4402 902faaea taeseongkim
                                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
4403 233ef333 taeseongkim
                                }
4404
                                else
4405
                                {
4406
                                    currentControl = new SymControlN
4407 787a4489 KangIngu
                                    {
4408 233ef333 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
4409
                                        Background = new SolidColorBrush(Colors.Black),
4410
                                        STAMP = App.SystemInfo.STAMP,
4411
                                        ControlType = ControlType.Stamp
4412
                                    };
4413 787a4489 KangIngu
4414 233ef333 taeseongkim
                                    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 e66f22eb KangIngu
                                //}
4422 787a4489 KangIngu
                            }
4423
                        }
4424
                        break;
4425 233ef333 taeseongkim
4426 787a4489 KangIngu
                    case ControlType.PenControl:
4427
                        {
4428
                            if (inkBoard.Tag.ToString() == "Ink")
4429
                            {
4430
                                inkBoard.IsEnabled = true;
4431 c7fde400 taeseongkim
                                StartNewStroke(CanvasDrawingMouseDownPoint);
4432 787a4489 KangIngu
                            }
4433
                            else if (inkBoard.Tag.ToString() == "EraseByPoint")
4434
                            {
4435 c7fde400 taeseongkim
                                RemovePointStroke(CanvasDrawingMouseDownPoint);
4436 787a4489 KangIngu
                            }
4437
                            else if (inkBoard.Tag.ToString() == "EraseByStroke")
4438
                            {
4439 c7fde400 taeseongkim
                                RemoveLineStroke(CanvasDrawingMouseDownPoint);
4440 787a4489 KangIngu
                            }
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 fa48eb85 taeseongkim
4453 b74a9c91 taeseongkim
             
4454 1b2cf911 taeseongkim
                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 b74a9c91 taeseongkim
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 4f017ed3 taeseongkim
                //if (currentControl != null)
4480
                //{
4481
                //    currentControl.PageAngle = pageNavigator.CurrentPage.Angle;
4482
                //}
4483 787a4489 KangIngu
            }
4484 e6a9ddaf humkyung
            if (mouseHandlingMode != MouseHandlingMode.None && e.LeftButton == MouseButtonState.Pressed)
4485 787a4489 KangIngu
            {
4486 b74a9c91 taeseongkim
                // MACRO 버튼클릭하여 CLOUD RECT 그린 후
4487
             
4488
4489 787a4489 KangIngu
                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 4913851c humkyung
                            var over = (item as AdornerFinal).Members.Where(data => data.DrawingData.IsMouseOver).FirstOrDefault();
4497 787a4489 KangIngu
                            if (over != null)
4498
                            {
4499
                                mouseOff = true;
4500
                            }
4501
                        }
4502
                    }
4503
4504
                    if (!mouseOff)
4505
                    {
4506 077896be humkyung
                        SelectionSet.Instance.UnSelect(this);
4507 787a4489 KangIngu
                    }
4508
                }
4509
                zoomAndPanControl.CaptureMouse();
4510
                e.Handled = true;
4511
            }
4512
        }
4513 e54660e8 KangIngu
4514 a1716fa5 KangIngu
        private void zoomAndPanControl2_MouseDown(object sender, MouseButtonEventArgs e)
4515
        {
4516 e6a9ddaf humkyung
            ///mouseButtonDown = e.ChangedButton;
4517 a1716fa5 KangIngu
            canvasZoommovingMouseDownPoint = e.GetPosition(zoomAndPanCanvas2);
4518
        }
4519
4520 787a4489 KangIngu
        private void RemoveLineStroke(Point P)
4521
        {
4522 a342d378 taeseongkim
            var control = ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.IsMouseEnter).FirstOrDefault();
4523 787a4489 KangIngu
            if (control != null)
4524
            {
4525 f729ef4e humkyung
                DeleteCommand.Instance.Execute(new List<CommentUserInfo>() { control });
4526 787a4489 KangIngu
            }
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 b42dd24d taeseongkim
        private  void btnConsolidate_Click(object sender, RoutedEventArgs e)
4559 787a4489 KangIngu
        {
4560 b42dd24d taeseongkim
            //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 cf1cc862 taeseongkim
                btnFinalPDF.IsEnabled = false;
4569
4570 b42dd24d taeseongkim
                ConsolidationMethod();
4571
            //}
4572
            //else
4573
            //{
4574
            //    MessageBox.Show("오류");
4575
            //}
4576 787a4489 KangIngu
        }
4577
4578 102476f6 humkyung
        /// <summary>
4579
        /// execute TeamConsolidationCommand
4580
        /// </summary>
4581 04a7385a djkim
        public void TeamConsolidationMethod()
4582
        {
4583 102476f6 humkyung
            this.UpdateMyMarkupList();
4584 04a7385a djkim
            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 8129f2a5 ljiyeon
                ViewerDataModel.Instance.IsConsolidate = true;
4591
                this.ParentOfType<MainWindow>().dzTopMenu._SaveEvent(null, null);
4592
4593 04a7385a djkim
                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 233ef333 taeseongkim
                    }
4600 04a7385a djkim
                }
4601 102476f6 humkyung
                List<MarkupInfoItem> MarkupInfoList = new List<MarkupInfoItem>();
4602 04a7385a djkim
                foreach (MarkupInfoItem item in this.gridViewMarkup.SelectedItems)
4603 90e7968d ljiyeon
                {
4604 102476f6 humkyung
                    MarkupInfoList.Add(item);
4605 04a7385a djkim
                }
4606 102476f6 humkyung
                TeamConsolidateCommand.Instance.Execute(MarkupInfoList);
4607 04a7385a djkim
            }
4608
        }
4609 102476f6 humkyung
4610 1305c420 taeseongkim
        public bool ConsolidationMethod()
4611 787a4489 KangIngu
        {
4612 b42dd24d taeseongkim
            bool result = false;
4613
4614 787a4489 KangIngu
            if (this.gridViewMarkup.SelectedItems.Count == 0)
4615
            {
4616
                this.ParentOfType<MainWindow>().DialogMessage_Alert("Please select at least one user", "Alert");
4617
            }
4618
            else
4619 90e7968d ljiyeon
            {
4620 35a96e24 humkyung
                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 233ef333 taeseongkim
4627 1305c420 taeseongkim
                result = ConsolidateCommand.Instance.Execute(MySelectItem, iPageNo);
4628 787a4489 KangIngu
            }
4629 b42dd24d taeseongkim
4630
            return result;
4631 787a4489 KangIngu
        }
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 04a7385a djkim
            TeamConsolidationMethod();
4648 787a4489 KangIngu
        }
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 bae83c92 taeseongkim
        private async void FinalPDFEvent(object sender, RoutedEventArgs e)
4675 787a4489 KangIngu
        {
4676 b42dd24d taeseongkim
            SelectionSet.Instance.UnSelect(this.ParentOfType<MainWindow>().dzMainMenu);
4677
            // update mylist and gridview
4678
            this.UpdateMyMarkupList();
4679 a1e2ba68 taeseongkim
4680 bae83c92 taeseongkim
            var result = await this.ParentOfType<MainWindow>().dzTopMenu.ExecuteSaveCommand(this);
4681 b42dd24d taeseongkim
4682 bae83c92 taeseongkim
            if(!result)
4683
            {
4684 a1e2ba68 taeseongkim
4685 bae83c92 taeseongkim
            }
4686
            else
4687 787a4489 KangIngu
            {
4688 bae83c92 taeseongkim
                var item = gridViewMarkup.Items.Cast<MarkupInfoItem>().Where(d => d.Consolidate == 1 && d.AvoidConsolidate == 0).FirstOrDefault();
4689
4690
                if (item != null)
4691 81e3c9f6 ljiyeon
                {
4692 bae83c92 taeseongkim
                    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 a1e2ba68 taeseongkim
4696 bae83c92 taeseongkim
                        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 81e3c9f6 ljiyeon
                }
4705
                else
4706
                {
4707 bae83c92 taeseongkim
                    //Consolidate 가 없는 경우
4708
                    DialogMessage_Alert("Consolidation 된 코멘트가 존재하지 않습니다", "안내");
4709 81e3c9f6 ljiyeon
                }
4710 233ef333 taeseongkim
            }
4711 bae83c92 taeseongkim
4712 787a4489 KangIngu
        }
4713
4714
        private void btnFinalPDF_Loaded(object sender, RoutedEventArgs e)
4715
        {
4716
            btnFinalPDF = sender as RadRibbonButton;
4717
            if (App.ViewInfo != null)
4718
            {
4719 b42dd24d taeseongkim
                //btnFinalPDF.IsEnabled = false;
4720
4721 787a4489 KangIngu
                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 b42dd24d taeseongkim
        private async void ConsolidateFinalPDFEvent(object sender, RoutedEventArgs e)
4733 80458c15 ljiyeon
        {
4734 b42dd24d taeseongkim
            //UpdateMyMarkupList();
4735 80458c15 ljiyeon
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 b42dd24d taeseongkim
                //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 80458c15 ljiyeon
4748 b42dd24d taeseongkim
                //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 324fcf3e taeseongkim
4754 1305c420 taeseongkim
                Mouse.SetCursor(Cursors.Wait);
4755 324fcf3e taeseongkim
4756 1305c420 taeseongkim
                bool result = ConsolidationMethod();
4757 80458c15 ljiyeon
4758 1305c420 taeseongkim
                System.Threading.Thread.Sleep(600);
4759
4760
                if (result)
4761 80458c15 ljiyeon
                {
4762 1305c420 taeseongkim
                    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 bae83c92 taeseongkim
                    {
4767 1305c420 taeseongkim
                        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 80458c15 ljiyeon
4771 1305c420 taeseongkim
                            BaseClient.SetFinalPDFAsync(_ViewInfo.ProjectNO, _DocInfo.ID, item2.MarkupInfoID, _ViewInfo.UserID);
4772
                            BaseClient.GetMarkupInfoItemsAsync(App.ViewInfo.ProjectNO, _DocInfo.ID);
4773 bae83c92 taeseongkim
4774 1305c420 taeseongkim
                            ViewerDataModel.Instance.FinalPDFTime = DateTime.Now;
4775
4776
                            Mouse.SetCursor(Cursors.Arrow);
4777
                        }
4778
                        else
4779
                        {
4780
                            DialogMessage_Alert("Merged PDF가 수행중입니다. 잠시 후 수행가능합니다.", "안내");
4781
                        }
4782 bae83c92 taeseongkim
                    }
4783
                    else
4784
                    {
4785 1305c420 taeseongkim
                        DialogMessage_Alert("Consolidation 된 코멘트가 존재하지 않습니다", "안내");
4786 bae83c92 taeseongkim
                    }
4787 80458c15 ljiyeon
                }
4788
                else
4789
                {
4790 1305c420 taeseongkim
                    DialogMessage_Alert("서버가 원활하지 않습니다. 다시 수행 바랍니다.", "안내");
4791 80458c15 ljiyeon
                }
4792 1305c420 taeseongkim
4793
                Mouse.SetCursor(Cursors.Arrow);
4794 90e7968d ljiyeon
            }
4795 80458c15 ljiyeon
        }
4796
4797
        private void btnConsolidateFinalPDF_Loaded(object sender, RoutedEventArgs e)
4798 90e7968d ljiyeon
        {
4799 80458c15 ljiyeon
            btnConsolidateFinalPDF = (sender as RadRibbonButton);
4800 84605c0c taeseongkim
#if Hyosung
4801
            btnConsolidateFinalPDF.Visibility = System.Windows.Visibility.Collapsed;
4802
#else
4803 b42dd24d taeseongkim
4804
            //btnConsolidateFinalPDF.IsEnabled = false;
4805
4806 80458c15 ljiyeon
            if (App.ViewInfo != null)
4807
            {
4808
                if (!App.ViewInfo.NewCommentPermission || !App.ViewInfo.CreateFinalPDFPermission)
4809
                {
4810 90e7968d ljiyeon
                    btnConsolidateFinalPDF.Visibility = System.Windows.Visibility.Collapsed;
4811 80458c15 ljiyeon
                }
4812 90e7968d ljiyeon
            }
4813 84605c0c taeseongkim
#endif
4814 80458c15 ljiyeon
        }
4815
4816 787a4489 KangIngu
        private void SyncCompare_Click(object sender, RoutedEventArgs e)
4817
        {
4818 adce8360 humkyung
            SetCompareRect();
4819 787a4489 KangIngu
        }
4820
4821 9cd2865b KangIngu
        private void Sync_Click(object sender, RoutedEventArgs e)
4822
        {
4823 a1716fa5 KangIngu
            if (Sync.IsChecked)
4824 9cd2865b KangIngu
            {
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 787a4489 KangIngu
        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 752b18ef taeseongkim
            ViewerDataModel.Instance.SyncPageNumber = 0;
4863 787a4489 KangIngu
            ViewerDataModel.Instance.MarkupControls_Sync.Clear();
4864
            this.gridViewRevMarkup.Visibility = Visibility.Collapsed;
4865
            UserList.IsChecked = false;
4866
            BalanceMode.IsChecked = false;
4867
        }
4868
4869 ac4f1e13 taeseongkim
        private async void SyncPageChange_Click(object sender, RoutedEventArgs e)
4870 787a4489 KangIngu
        {
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 752b18ef taeseongkim
                
4877
                if (ViewerDataModel.Instance.SyncPageNumber == 0)
4878 787a4489 KangIngu
                {
4879 752b18ef taeseongkim
                    ViewerDataModel.Instance.SyncPageNumber = 1;
4880 787a4489 KangIngu
                }
4881
4882
                if (ViewerDataModel.Instance.PageBalanceNumber == pageNavigator.PageCount)
4883
                {
4884
                }
4885
                else
4886
                {
4887
                    ViewerDataModel.Instance.PageBalanceNumber += balancePoint;
4888
                }
4889
4890 752b18ef taeseongkim
                if (ViewerDataModel.Instance.SyncPageNumber == pageNavigator.PageCount && balancePoint > 0)
4891 787a4489 KangIngu
                {
4892
                }
4893 752b18ef taeseongkim
                else if ((ViewerDataModel.Instance.SyncPageNumber + balancePoint) >= 1)
4894 787a4489 KangIngu
                {
4895 752b18ef taeseongkim
                    ViewerDataModel.Instance.SyncPageNumber += balancePoint;
4896 787a4489 KangIngu
                }
4897
4898 d04e8ee9 taeseongkim
                //pageNavigator.GotoPage(ViewerDataModel.Instance.PageNumber);
4899 6b6e937c taeseongkim
4900 787a4489 KangIngu
                if (!testPanel2.IsHidden)
4901
                {
4902
                    if (IsSyncPDFMode)
4903
                    {
4904
                        Get_FinalImage.Get_PdfImage get_PdfImage = new Get_FinalImage.Get_PdfImage();
4905 752b18ef taeseongkim
                        var pdfpath = new BitmapImage(new Uri(get_PdfImage.Run(CurrentRev.TO_VENDOR, App.ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber)));
4906 787a4489 KangIngu
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 752b18ef taeseongkim
                        string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber);
4931 787a4489 KangIngu
4932 752b18ef taeseongkim
                        var isOriginalSize = !(ViewerDataModel.Instance.SyncPageNumber == pageNavigator.CurrentPage.PageNumber);
4933
                        ComparePageLoad(uri, isOriginalSize);
4934 787a4489 KangIngu
                    }
4935 4f017ed3 taeseongkim
                   
4936 787a4489 KangIngu
                    //강인구 추가(페이지 이동시 코멘트 재 호출)
4937
                    ViewerDataModel.Instance.MarkupControls_Sync.Clear();
4938
                    List<MarkupInfoItem> gridSelectionRevItem = gridViewRevMarkup.SelectedItems.Cast<MarkupInfoItem>().ToList();
4939
4940
                    foreach (var item in gridSelectionRevItem)
4941
                    {
4942 752b18ef taeseongkim
                        var markupitems = item.MarkupList.Where(pageItem => pageItem.PageNumber == ViewerDataModel.Instance.SyncPageNumber).ToList();
4943 ac4f1e13 taeseongkim
                        foreach (var markupitem in markupitems)
4944 787a4489 KangIngu
                        {
4945 a1e2ba68 taeseongkim
                            await MarkupParser.ParseExAsync(App.BaseAddress, ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, markupitem.Data, Common.ViewerDataModel.Instance.MarkupControls_Sync,0, item.DisplayColor, "", item.MarkupInfoID);
4946 ac4f1e13 taeseongkim
                        }
4947 787a4489 KangIngu
                    }
4948 e54660e8 KangIngu
4949 752b18ef taeseongkim
                    tlSyncPageNum.Text = String.Format("Current Page : {0}", ViewerDataModel.Instance.SyncPageNumber);
4950 787a4489 KangIngu
                }
4951
            }
4952
        }
4953
4954 43d2041c taeseongkim
        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 787a4489 KangIngu
        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 ae56d52d KangIngu
5028 752b18ef taeseongkim
                if (ViewerDataModel.Instance.SyncPageNumber == 0)
5029 787a4489 KangIngu
                {
5030 752b18ef taeseongkim
                    ViewerDataModel.Instance.SyncPageNumber = 1;
5031 787a4489 KangIngu
                }
5032
5033
                //PDF모드 잠시 대기(강인구)
5034
                Get_FinalImage.Get_PdfImage get_PdfImage = new Get_FinalImage.Get_PdfImage();
5035 752b18ef taeseongkim
                var pdfpath = new BitmapImage(new Uri(get_PdfImage.Run(CurrentRev.TO_VENDOR, App.ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber)));
5036 787a4489 KangIngu
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 69f41aab humkyung
                string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, pageNavigator.CurrentPage.PageNumber);
5062 787a4489 KangIngu
5063 752b18ef taeseongkim
                ComparePageLoad(uri,false);
5064 787a4489 KangIngu
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 adce8360 humkyung
        /// <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 233ef333 taeseongkim
        /// 문서 Comprare
5087 adce8360 humkyung
        /// </summary>
5088
        private void SetCompareRect()
5089
        {
5090 43d2041c taeseongkim
            canvas_compareBorder.Children.Clear();
5091
5092 adce8360 humkyung
            if (CompareMode.IsChecked)
5093
            {
5094
                if (ViewerDataModel.Instance.PageBalanceMode && ViewerDataModel.Instance.PageBalanceNumber == 0)
5095
                {
5096
                    ViewerDataModel.Instance.PageBalanceNumber = 1;
5097
                }
5098 752b18ef taeseongkim
                if (ViewerDataModel.Instance.SyncPageNumber == 0)
5099 adce8360 humkyung
                {
5100 752b18ef taeseongkim
                    ViewerDataModel.Instance.SyncPageNumber = 1;
5101 adce8360 humkyung
                }
5102
5103 664ea2e1 taeseongkim
                //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 adce8360 humkyung
5105 41c4405e taeseongkim
                /// 비교대상원본, 비교할 대상
5106 752b18ef taeseongkim
                BaseClient.GetCompareRectAsync(_ViewInfo.ProjectNO, _ViewInfo.DocumentItemID,  CurrentRev.DOCUMENT_ID,  ViewerDataModel.Instance.SyncPageNumber.ToString(), pageNavigator.CurrentPage.PageNumber.ToString(), userData.COMPANY != "EXT" ? "true" : "false");
5107 adce8360 humkyung
            }
5108
            else
5109
            {
5110 43d2041c taeseongkim
                canvas_compareBorder.Visibility = Visibility.Hidden;
5111 adce8360 humkyung
                ClearCompareRect();
5112
            }
5113
        }
5114
5115 3212270d taeseongkim
        private void btnSync_Click(object sender, RoutedEventArgs e)
5116 787a4489 KangIngu
        {
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 adce8360 humkyung
                System.EventHandler<ServiceDeepView.GetSyncMarkupInfoItemsCompletedEventArgs> GetSyncMarkupInfoItemshandler = null;
5124
5125
                GetSyncMarkupInfoItemshandler = (sen, ea) =>
5126 787a4489 KangIngu
                {
5127
                    if (ea.Error == null && ea.Result != null)
5128
                    {
5129
                        testPanel2.IsHidden = false;
5130
5131 d128ceb2 humkyung
                        ViewerDataModel.Instance._markupInfoRevList.Clear();
5132 233ef333 taeseongkim
                        foreach (var info in ea.Result)
5133 d128ceb2 humkyung
                        {
5134 233ef333 taeseongkim
                            if (info.UserID == App.ViewInfo.UserID)
5135 d128ceb2 humkyung
                            {
5136
                                info.userDelete = true;
5137 8f7f8073 taeseongkim
                                info.DisplayColor = "#FFFF0000";
5138 d128ceb2 humkyung
                            }
5139
                            else
5140
                            {
5141
                                info.userDelete = false;
5142
                            }
5143
                            ViewerDataModel.Instance._markupInfoRevList.Add(info);
5144
                        }
5145 787a4489 KangIngu
                        gridViewRevMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoRevList;
5146
5147 69f41aab humkyung
                        string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, pageNavigator.CurrentPage.PageNumber);
5148 752b18ef taeseongkim
                        ComparePageLoad(uri,false);
5149 787a4489 KangIngu
5150
                        Sync_Offset_Point = new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY);
5151
5152
                        zoomAndPanControl2.ApplyTemplate();
5153
                        zoomAndPanControl2.UpdateLayout();
5154 43d2041c taeseongkim
5155 787a4489 KangIngu
                        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 9cd2865b KangIngu
                        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 787a4489 KangIngu
                        tlSyncRev.Text = String.Format("Rev. {0}", CurrentRev.RevNo);
5166
                        tlSyncPageNum.Text = String.Format("Current Page : {0}", pageNavigator.CurrentPage.PageNumber);
5167 43d2041c taeseongkim
5168
                        zoomAndPanControl.ScaleToFit();
5169
                        zoomAndPanControl2.ScaleToFit();
5170
5171 787a4489 KangIngu
                        gridViewHistory_Busy.IsBusy = false;
5172
                    }
5173 0f065e57 ljiyeon
5174 664ea2e1 taeseongkim
                    //Logger.sendResLog("GetSyncMarkupInfoItemsCompleted", "UserState : " + ea.UserState + "\r Result :" + ea.Result + "\r Cancelled :" + ea.Cancelled + "\r Error :" + ea.Error, 1);
5175 adce8360 humkyung
5176
                    if (GetSyncMarkupInfoItemshandler != null)
5177
                    {
5178
                        BaseClient.GetSyncMarkupInfoItemsCompleted -= GetSyncMarkupInfoItemshandler;
5179
                    }
5180
5181 43d2041c taeseongkim
                    //ClearCompareRect();
5182 adce8360 humkyung
                    SetCompareRect();
5183 90e7968d ljiyeon
                };
5184 adce8360 humkyung
5185
                /// 중복 실행이 발생하여 수정함.
5186
                BaseClient.GetSyncMarkupInfoItemsCompleted += GetSyncMarkupInfoItemshandler;
5187 787a4489 KangIngu
                BaseClient.GetSyncMarkupInfoItemsAsync(_ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, _ViewInfo.UserID);
5188 adce8360 humkyung
5189 664ea2e1 taeseongkim
                //Logger.sendReqLog("GetSyncMarkupInfoItemsAsync", _ViewInfo.ProjectNO + "," + CurrentRev.DOCUMENT_ID + "," + _ViewInfo.UserID, 1);
5190 787a4489 KangIngu
            }
5191
        }
5192 4eb052e4 ljiyeon
5193 752b18ef taeseongkim
        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 ffa5dbc7 taeseongkim
            ComparePageLoad(uri, OriginalSizeMode.IsChecked);
5199 752b18ef taeseongkim
        }
5200
5201 94b7c12c djkim
        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 664ea2e1 taeseongkim
                //Logger.sendResLog("EnsembleLink_Button_Click", ex.Message, 0);
5221 94b7c12c djkim
            }
5222
        }
5223 787a4489 KangIngu
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 d128ceb2 humkyung
                    ViewerDataModel.Instance._markupInfoRevList.Clear();
5235 233ef333 taeseongkim
                    foreach (var info in ea.Result)
5236 d128ceb2 humkyung
                    {
5237 233ef333 taeseongkim
                        if (info.UserID == App.ViewInfo.UserID)
5238 d128ceb2 humkyung
                        {
5239
                            info.userDelete = true;
5240 cf1cc862 taeseongkim
                            info.DisplayColor = "#FFFF0000";
5241 d128ceb2 humkyung
                        }
5242
                        else
5243
                        {
5244
                            info.userDelete = false;
5245
                        }
5246
                        ViewerDataModel.Instance._markupInfoRevList.Add(info);
5247
                    }
5248 787a4489 KangIngu
                    gridViewRevMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoRevList;
5249
5250 69f41aab humkyung
                    string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, pageNavigator.CurrentPage.PageNumber);
5251 787a4489 KangIngu
5252
                    Sync_Offset_Point = new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY);
5253
5254 752b18ef taeseongkim
                    ComparePageLoad(uri,false);
5255 90e7968d ljiyeon
5256 787a4489 KangIngu
                    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 30878507 taeseongkim
                    
5268 787a4489 KangIngu
                    tlSyncRev.Text = String.Format("Rev. {0}", CurrentRev.RevNo);
5269
                    tlSyncPageNum.Text = String.Format("Current Page : {0}", pageNavigator.CurrentPage.PageNumber);
5270 90e7968d ljiyeon
                    gridViewHistory_Busy.IsBusy = false;
5271 787a4489 KangIngu
                }
5272 664ea2e1 taeseongkim
                //Logger.sendResLog("GetSyncMarkupInfoItemsCompleted", "UserState : " + ea.UserState + "\r Result :" + ea.Result + "\r Cancelled :" + ea.Cancelled + "\r Error :" + ea.Error, 1);
5273 787a4489 KangIngu
            };
5274 664ea2e1 taeseongkim
            //Logger.sendReqLog("GetSyncMarkupInfoItemsAsync", _ViewInfo.ProjectNO + "," + CurrentRev.DOCUMENT_ID + "," + _ViewInfo.UserID, 1);
5275 90e7968d ljiyeon
            BaseClient.GetSyncMarkupInfoItemsAsync(_ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, _ViewInfo.UserID);
5276 787a4489 KangIngu
        }
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 5529d2a2 humkyung
            MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn markupReturn = new MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn();
5297 787a4489 KangIngu
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 4913851c humkyung
                        foreach (var InnerItem in (item as Controls.AdornerFinal).Members.Cast<Controls.AdornerMember>())
5313 787a4489 KangIngu
                        {
5314
                            if (!ViewerDataModel.Instance.MarkupControls.Contains(InnerItem.DrawingData))
5315
                            {
5316 5529d2a2 humkyung
                                markupReturn = MarkupParser.MarkupToString(InnerItem.DrawingData as MarkupToPDF.Common.CommentUserInfo, App.ViewInfo.UserID);
5317 787a4489 KangIngu
                                MarkupData += markupReturn.ConvertData;
5318
                            }
5319
                        }
5320
                    }
5321
                }
5322
                DialogParameters parameters = new DialogParameters()
5323
                {
5324 b9b01f8e ljiyeon
                    Owner = Application.Current.MainWindow,
5325 787a4489 KangIngu
                    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 233ef333 taeseongkim
5336 53880c83 ljiyeon
        public int symbolselectindex = 0;
5337 233ef333 taeseongkim
5338 53880c83 ljiyeon
        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 76dc223b taeseongkim
                        kr.co.devdoftech.cloud.FileUpload fileUploader = App.FileUploader;
5349 24678e06 humkyung
                        string guid = Commons.shortGuid();
5350 53880c83 ljiyeon
5351
                        fileUploader.RunAsync(App.ViewInfo.ProjectNO, _DocItem.DOCUMENT_NO, App.ViewInfo.UserID, guid + ".png", Img_byte);
5352 c73426a9 ljiyeon
                        //Check_Uri.UriCheck();
5353 53880c83 ljiyeon
                        fileUploader.RunCompleted += (ex, arg) =>
5354
                        {
5355
                            filename = arg.Result;
5356
                            if (symbolpng == true)
5357
                            {
5358
                                if (filename != null)
5359 233ef333 taeseongkim
                                {
5360 53880c83 ljiyeon
                                    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 233ef333 taeseongkim
                                }
5370 53880c83 ljiyeon
                            }
5371
5372
                            if (symbolsvg == true)
5373
                            {
5374 c73426a9 ljiyeon
                                try
5375 53880c83 ljiyeon
                                {
5376 c73426a9 ljiyeon
                                    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 53880c83 ljiyeon
5384 c73426a9 ljiyeon
                                    System.Drawing.Bitmap image;
5385 53880c83 ljiyeon
5386 c73426a9 ljiyeon
                                    if (defaultBitmapImage.IsDownloading)
5387
                                    {
5388
                                        defaultBitmapImage.DownloadCompleted += (ex2, arg2) =>
5389 53880c83 ljiyeon
                                        {
5390 c73426a9 ljiyeon
                                            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 53880c83 ljiyeon
                                            {
5395 c73426a9 ljiyeon
                                                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 53880c83 ljiyeon
5408 c73426a9 ljiyeon
                                            StringBuilder svgBuilder = new StringBuilder();
5409
                                            potrace.OutputDataReceived += (object sender2, DataReceivedEventArgs e2) =>
5410 53880c83 ljiyeon
                                            {
5411 c73426a9 ljiyeon
                                                svgBuilder.AppendLine(e2.Data);
5412
                                            };
5413
5414
                                            potrace.EnableRaisingEvents = true;
5415
                                            potrace.Start();
5416
                                            potrace.Exited += (sender, e) =>
5417 53880c83 ljiyeon
                                            {
5418 c73426a9 ljiyeon
                                                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 53880c83 ljiyeon
5430 c73426a9 ljiyeon
                                                DataBind();
5431
                                            };
5432
                                            potrace.WaitForExit();
5433 53880c83 ljiyeon
                                        };
5434 c73426a9 ljiyeon
                                    }
5435
                                    else
5436
                                    {
5437
                                        //GC.Collect();
5438
                                    }
5439 53880c83 ljiyeon
                                }
5440 233ef333 taeseongkim
                                catch (Exception ee)
5441 90e7968d ljiyeon
                                {
5442 c73426a9 ljiyeon
                                    DialogMessage_Alert("" + ee, "Alert");
5443 90e7968d ljiyeon
                                }
5444 53880c83 ljiyeon
                            }
5445 233ef333 taeseongkim
                        };
5446 53880c83 ljiyeon
                    }
5447
                }
5448
            }
5449
            catch (Exception e)
5450
            {
5451
                //DialogMessage_Alert(e + "", "Alert");
5452 233ef333 taeseongkim
            }
5453 53880c83 ljiyeon
        }
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 24678e06 humkyung
                    ID = Commons.shortGuid(),
5462 53880c83 ljiyeon
                    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 664ea2e1 taeseongkim
                //Logger.sendReqLog("SaveSymbolAsync: ", symbol_private.ID + "," + symbol_private.MEMBER_USER_ID + "," + symbol_private.NAME + "," + symbol_private.IMAGE_URL + "," + symbol_private.DATA, 1);
5470 53880c83 ljiyeon
                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 24678e06 humkyung
                    ID = Commons.shortGuid(),
5485 53880c83 ljiyeon
                    DEPARTMENT = Department,
5486
                    NAME = Name,
5487
                    IMAGE_URL = Url,
5488
                    DATA = Data
5489
                };
5490
                Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.AddPublicSymbolCompleted += BaseClient_AddPublicSymbolCompleted;
5491 664ea2e1 taeseongkim
                //Logger.sendReqLog("AddPublicSymbol: ", symbol_public.ID + "," + symbol_public.DEPARTMENT + "," + symbol_public.NAME + "," + symbol_public.IMAGE_URL + "," + symbol_public.DATA, 1);
5492 53880c83 ljiyeon
                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 233ef333 taeseongkim
        {
5502 664ea2e1 taeseongkim
            //Logger.sendResLog("AddPublicSymbolCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1);
5503 53880c83 ljiyeon
            DataBind();
5504
        }
5505
5506
        private void BaseClient_SaveSymbolCompleted(object sender, ServiceDeepView.SaveSymbolCompletedEventArgs e)
5507
        {
5508 664ea2e1 taeseongkim
            //Logger.sendResLog("RenameSymbolCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1);
5509 53880c83 ljiyeon
            DataBind();
5510
        }
5511 233ef333 taeseongkim
5512 53880c83 ljiyeon
        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 233ef333 taeseongkim
5519 bb3a236d ljiyeon
                var symbol_Private = BaseClient.GetSymbolList(App.ViewInfo.UserID);
5520 53880c83 ljiyeon
                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 233ef333 taeseongkim
5530 53880c83 ljiyeon
                Custom = new Symbol_Custom();
5531
                Custom_List = new List<Symbol_Custom>();
5532
5533 bb3a236d ljiyeon
                symbolPanel_Instance.deptlist.ItemsSource = BaseClient.GetPublicSymbolDeptList();
5534 53880c83 ljiyeon
5535
                List<SYMBOL_PUBLIC> symbol_Public;
5536 787a4489 KangIngu
5537 53880c83 ljiyeon
                if (symbolPanel_Instance.deptlist.SelectedValue != null)
5538
                {
5539 bb3a236d ljiyeon
                    symbol_Public = BaseClient.GetPublicSymbolList(symbolPanel_Instance.deptlist.SelectedValue.ToString());
5540 53880c83 ljiyeon
                }
5541
                else
5542
                {
5543 bb3a236d ljiyeon
                    symbol_Public = BaseClient.GetPublicSymbolList(null);
5544 53880c83 ljiyeon
                }
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 233ef333 taeseongkim
                BaseClient.Close();
5555 53880c83 ljiyeon
            }
5556 233ef333 taeseongkim
            catch (Exception e)
5557 53880c83 ljiyeon
            {
5558
                //DialogMessage_Alert("DataBind", "Alert");
5559
            }
5560
        }
5561 233ef333 taeseongkim
5562 ac4f1e13 taeseongkim
        private async void MarkupNamePromptClose(string data, WindowClosedEventArgs args)
5563 787a4489 KangIngu
        {
5564 c73426a9 ljiyeon
            try
5565 787a4489 KangIngu
            {
5566 c73426a9 ljiyeon
                if (args.PromptResult != null)
5567 53880c83 ljiyeon
                {
5568 c73426a9 ljiyeon
                    if (args.DialogResult.Value)
5569
                    {
5570 ac4f1e13 taeseongkim
                        PngBitmapEncoder _Encoder = await symImageAsync(data);
5571 787a4489 KangIngu
5572 c73426a9 ljiyeon
                        System.IO.MemoryStream fs = new System.IO.MemoryStream();
5573
                        _Encoder.Save(fs);
5574
                        System.Drawing.Image ImgOut = System.Drawing.Image.FromStream(fs);
5575 787a4489 KangIngu
5576 c73426a9 ljiyeon
                        byte[] Img_byte = fs.ToArray();
5577 787a4489 KangIngu
5578 76dc223b taeseongkim
                        kr.co.devdoftech.cloud.FileUpload fileUploader = App.FileUploader;
5579 24678e06 humkyung
                        filename = fileUploader.Run(App.ViewInfo.ProjectNO, _DocItem.DOCUMENT_NO, App.ViewInfo.UserID, Commons.shortGuid() + ".png", Img_byte);
5580 c73426a9 ljiyeon
                        Check_Uri.UriCheck(filename);
5581
                        if (symbolPanel_Instance.RadTab.SelectedIndex == 0)
5582
                        {
5583 de6499db humkyung
                            SaveCommand.Instance.SymbolSave(args.PromptResult, filename, data);
5584 c73426a9 ljiyeon
                        }
5585
                        else
5586
                        {
5587 de6499db humkyung
                            SaveCommand.Instance.SymbolSave_Public(args.PromptResult, filename, data, ViewerDataModel.Instance.SystemMain.dzMainMenu.userData.DEPARTMENT);
5588 c73426a9 ljiyeon
                        }
5589
                        DataBind();
5590 53880c83 ljiyeon
                    }
5591
                }
5592 787a4489 KangIngu
            }
5593 233ef333 taeseongkim
            catch (Exception ex)
5594 c73426a9 ljiyeon
            {
5595
                DialogMessage_Alert("" + ex, "Alert");
5596
            }
5597 787a4489 KangIngu
        }
5598
5599 ac4f1e13 taeseongkim
        public async Task<PngBitmapEncoder> symImageAsync(string data)
5600 787a4489 KangIngu
        {
5601
            Canvas _canvas = new Canvas();
5602
            _canvas.Background = Brushes.White;
5603
            _canvas.Width = adorner_.BorderSize.Width;
5604
            _canvas.Height = adorner_.BorderSize.Height;
5605 a1e2ba68 taeseongkim
            await MarkupParser.ParseAsync(App.BaseAddress, App.ViewInfo.ProjectNO, data, _canvas,ViewerDataModel.Instance.PageAngle, "#FFFF0000", "", ViewerDataModel.Instance.CancellationToken());
5606 787a4489 KangIngu
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 2007ecaa taeseongkim
                GC.Collect(2);
5627 787a4489 KangIngu
                GC.WaitForPendingFinalizers();
5628 90e7968d ljiyeon
                //GC.Collect();
5629 787a4489 KangIngu
                // 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 53880c83 ljiyeon
            catch //(Exception ex)
5637 787a4489 KangIngu
            {
5638
                return null;
5639
            }
5640
        }
5641
5642
        public void DialogMessage_Alert(string content, string header)
5643
        {
5644 68e3cd94 taeseongkim
            App.splashScreen.Close();
5645 cf1cc862 taeseongkim
            App.FileLogger.Error(content + " " + header);
5646 68e3cd94 taeseongkim
5647 787a4489 KangIngu
            DialogParameters parameters = new DialogParameters()
5648
            {
5649 4279e717 djkim
                Owner = this.ParentOfType<MainWindow>(),
5650 0d32593b ljiyeon
                Content = new TextBlock()
5651 233ef333 taeseongkim
                {
5652 0d32593b ljiyeon
                    MinWidth = 400,
5653
                    FontSize = 11,
5654
                    Text = content,
5655
                    TextWrapping = System.Windows.TextWrapping.Wrap
5656
                },
5657 b79f786f 송근호
                DialogStartupLocation = WindowStartupLocation.CenterOwner,
5658 787a4489 KangIngu
                Header = header,
5659
                Theme = new VisualStudio2013Theme(),
5660
                ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 },
5661 233ef333 taeseongkim
            };
5662 787a4489 KangIngu
            RadWindow.Alert(parameters);
5663
        }
5664
5665 233ef333 taeseongkim
        #region 캡쳐 기능
5666 787a4489 KangIngu
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 233ef333 taeseongkim
        private System.Drawing.Bitmap GetBitmap(BitmapSource source)
5728 53880c83 ljiyeon
        {
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 233ef333 taeseongkim
5736 53880c83 ljiyeon
        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 233ef333 taeseongkim
                // Closed = (obj, args) => this.SymbolMarkupNamePromptClose(imageBytes, "", args),
5766 53880c83 ljiyeon
                Header = "Alert",
5767
                Content = symbolPrompt,
5768 233ef333 taeseongkim
                //DialogResult =
5769 53880c83 ljiyeon
                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 233ef333 taeseongkim
            };
5788 53880c83 ljiyeon
            RadWindow.Prompt(parameters);
5789
            */
5790
        }
5791
5792 787a4489 KangIngu
        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 6c781c0c djkim
            string projectno = App.ViewInfo.ProjectNO;
5799
            string checklist_id = ViewerDataModel.Instance.CheckList_ID;
5800 0f065e57 ljiyeon
5801 664ea2e1 taeseongkim
            //Logger.sendReqLog("GetCheckList", projectno + "," + checklist_id, 1);
5802 6c781c0c djkim
            Item = this.BaseClient.GetCheckList(projectno, checklist_id);
5803 90e7968d ljiyeon
            if (Item != null)
5804 0f065e57 ljiyeon
            {
5805 664ea2e1 taeseongkim
                //Logger.sendResLog("GetCheckList", "TRUE", 1);
5806 0f065e57 ljiyeon
            }
5807
            else
5808
            {
5809 664ea2e1 taeseongkim
                //Logger.sendResLog("GetCheckList", "FALSE", 1);
5810 0f065e57 ljiyeon
            }
5811 90e7968d ljiyeon
5812 6c781c0c djkim
            if (Item == null)
5813 787a4489 KangIngu
            {
5814 6c781c0c djkim
                check_ = new KCOMDataModel.DataModel.CHECK_LIST
5815 787a4489 KangIngu
                {
5816 24678e06 humkyung
                    ID = Commons.shortGuid(),
5817 6c781c0c djkim
                    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 274cde11 taeseongkim
                Logger.sendReqLog("AddCheckList", projectno + "," + check_, 1);
5831 664ea2e1 taeseongkim
                //Logger.sendResLog("AddCheckList", this.BaseClient.AddCheckList(projectno, check_).ToString(), 1);
5832 274cde11 taeseongkim
                this.BaseClient.AddCheckList(projectno, check_);
5833 787a4489 KangIngu
            }
5834 6c781c0c djkim
            else
5835
            {
5836
                Item.IMAGE_URL = Result;
5837
                Item.IMAGE_ANCHOR = x + "," + y + "," + width + "," + height;
5838 90e7968d ljiyeon
                Item.PAGENUMBER = this.pageNavigator.CurrentPage.PageNumber;
5839 274cde11 taeseongkim
                Logger.sendReqLog("SaveCheckList", projectno + "," + checklist_id + "," + Item, 1);
5840 664ea2e1 taeseongkim
                //Logger.sendResLog("SaveCheckList", this.BaseClient.SaveCheckList(projectno, checklist_id, Item).ToString(), 1);
5841 274cde11 taeseongkim
                this.BaseClient.SaveCheckList(projectno, checklist_id, Item);
5842 6c781c0c djkim
            }
5843 787a4489 KangIngu
        }
5844
5845
        public void Set_Capture()
5846 90e7968d ljiyeon
        {
5847 c7fde400 taeseongkim
            double x = CanvasDrawingMouseDownPoint.X;
5848
            double y = CanvasDrawingMouseDownPoint.Y;
5849 787a4489 KangIngu
            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 233ef333 taeseongkim
5860
        #endregion 캡쳐 기능
5861 787a4489 KangIngu
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 ac4f1e13 taeseongkim
        private async void Comment_Move(object sender, MouseButtonEventArgs e)
5889 787a4489 KangIngu
        {
5890 d2279f18 taeseongkim
            string Select_ID = (((e.Source as Telerik.Windows.Controls.RadButton).DataContext) as IKCOM.MarkupInfoItem).MarkupInfoID;
5891 787a4489 KangIngu
            foreach (var items in ViewerDataModel.Instance._markupInfoRevList)
5892
            {
5893 4f017ed3 taeseongkim
                if (items.MarkupInfoID == Select_ID)
5894 787a4489 KangIngu
                {
5895
                    foreach (var item in items.MarkupList)
5896
                    {
5897
                        if (item.PageNumber == pageNavigator.CurrentPage.PageNumber)
5898
                        {
5899 a1e2ba68 taeseongkim
                            await MarkupParser.ParseExAsync(App.BaseAddress, ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, item.Data, Common.ViewerDataModel.Instance.MarkupControls_USER,ViewerDataModel.Instance.PageAngle, "#FFFF0000", "",
5900 233ef333 taeseongkim
                                 items.MarkupInfoID, Commons.shortGuid());
5901 787a4489 KangIngu
                        }
5902
                    }
5903
                }
5904
            }
5905
        }
5906 d62c0439 humkyung
5907 f959ea6f humkyung
        /// <summary>
5908
        /// convert inkcontrol to polygoncontrol
5909
        /// </summary>
5910
        public void ConvertInkControlToPolygon()
5911 787a4489 KangIngu
        {
5912
            if (inkBoard.Strokes.Count > 0)
5913
            {
5914
                inkBoard.Strokes.ToList().ForEach(stroke =>
5915
                {
5916
                    InkToPath ip = new InkToPath();
5917 f959ea6f humkyung
5918 787a4489 KangIngu
                    List<Point> inkPointSet = new List<Point>();
5919 f959ea6f humkyung
                    inkPointSet.AddRange(ip.GetPointsFrom(stroke));
5920
5921
                    PolygonControl pc = new PolygonControl()
5922 787a4489 KangIngu
                    {
5923 fa48eb85 taeseongkim
                        CommentAngle = 0,
5924 f959ea6f humkyung
                        PointSet = inkPointSet,
5925 787a4489 KangIngu
                        ControlType = ControlType.Ink
5926
                    };
5927 f959ea6f humkyung
                    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 787a4489 KangIngu
5933 f959ea6f humkyung
                    if (pc.PointSet.Count > 0)
5934
                    {
5935
                        CreateCommand.Instance.Execute(pc);
5936 787a4489 KangIngu
                        ViewerDataModel.Instance.MarkupControls_USER.Add(pc);
5937
                    }
5938
                });
5939 f959ea6f humkyung
                inkBoard.Strokes.Clear();
5940 787a4489 KangIngu
            }
5941
        }
5942 17a22987 KangIngu
5943 4318fdeb KangIngu
        /// <summary>
5944 e66f22eb KangIngu
        /// 캔버스에 그릴때 모든 포인트가 캔버스를 벗어 났는지 체크하여 넘겨줌
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 670a4be2 humkyung
        {
5952 e66f22eb KangIngu
            if (getPoint == new Point())
5953 670a4be2 humkyung
            {
5954 e66f22eb KangIngu
                ViewerDataModel.Instance.MarkupControls_USER.Remove(currentControl);
5955
                currentControl = null;
5956
                return true;
5957 670a4be2 humkyung
            }
5958
5959 e66f22eb KangIngu
            return false;
5960 670a4be2 humkyung
        }
5961 e66f22eb KangIngu
5962 5b46312f djkim
        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 92442e4a taeseongkim
        private void ZoomAndPanControl_ScaleChanged(object sender, RoutedEventArgs e)
5978 cdfb57ff taeseongkim
        {
5979
            var pageWidth = ViewerDataModel.Instance.ImageViewWidth;
5980
            var pageHeight = ViewerDataModel.Instance.ImageViewHeight;
5981
5982 92442e4a taeseongkim
            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 233ef333 taeseongkim
        private void ScaleImage(double pageWidth, double pageHeight)
5992 92442e4a taeseongkim
        {
5993 7e2d682c taeseongkim
            //mainPanel.Scale = zoomAndPanControl.ContentScale;// (zoomAndPanControl.ContentScale >= 0.1) ? 1 : zoomAndPanControl.ContentScale;
5994 cdfb57ff taeseongkim
        }
5995
5996 d0eda156 ljiyeon
        private void thumbnailPanel_SizeChanged(object sender, SizeChangedEventArgs e)
5997
        {
5998
            CommonLib.Common.WriteConfigString("SetThumbnail", "WIDTH", thumbnailPanel.Width.ToString());
5999
        }
6000
6001 53deabaf taeseongkim
        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 c8dd192f taeseongkim
        
6018 e6a9ddaf humkyung
        /*
6019 5b46312f djkim
        private void zoomAndPanControl_Drop(object sender, DragEventArgs e)
6020
        {
6021 90e7968d ljiyeon
            try
6022 5b46312f djkim
            {
6023 90e7968d ljiyeon
                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 5b46312f djkim
            }
6030 90e7968d ljiyeon
            catch (Exception ex)
6031
            {
6032 664ea2e1 taeseongkim
                //Logger.sendResLog("zoomAndPanControl_Drop", ex.ToString(), 0);
6033 233ef333 taeseongkim
            }
6034 5b46312f djkim
        }
6035 e6a9ddaf humkyung
        */
6036 787a4489 KangIngu
    }
6037 f65e6c02 taeseongkim
6038
    public class testItem
6039
    {
6040
        public string Title { get; set; }
6041
    }
6042 233ef333 taeseongkim
}
클립보드 이미지 추가 (최대 크기: 500 MB)