프로젝트

일반

사용자정보

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

markus / KCOM / Views / MainMenu.xaml.cs @ cf1cc862

이력 | 보기 | 이력해설 | 다운로드 (275 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 992a98b4 KangIngu
4247 233ef333 taeseongkim
                                if (currentControl is SignControl)
4248
                                {
4249
                                    //20180906 LJY TEST IsRotationDrawingEnable
4250
                                    if (IsGetoutpoint((currentControl as SignControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4251
                                    {
4252 992a98b4 KangIngu
                                        return;
4253
                                    }
4254
4255 233ef333 taeseongkim
                                    CreateCommand.Instance.Execute(currentControl);
4256
                                    currentControl = null;
4257
                                    if (Common.ViewerDataModel.Instance.SelectedControl == "Batch")
4258 787a4489 KangIngu
                                    {
4259 233ef333 taeseongkim
                                        txtBatch.Text = "Place Date";
4260
                                        controlType = ControlType.Date;
4261 787a4489 KangIngu
                                    }
4262 233ef333 taeseongkim
                                }
4263
                                else
4264
                                {
4265
                                    currentControl = new SignControl
4266 787a4489 KangIngu
                                    {
4267 233ef333 taeseongkim
                                        Background = new SolidColorBrush(Colors.Black),
4268
                                        UserNumber = App.ViewInfo.UserID,
4269
                                        ProjectNO = App.ViewInfo.ProjectNO,
4270
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
4271
                                        EndPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
4272
                                        ControlType = ControlType.Sign
4273
                                    };
4274 787a4489 KangIngu
4275 233ef333 taeseongkim
                                    currentControl.CommentID = Commons.shortGuid();
4276
                                    currentControl.IsNew = true;
4277
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
4278
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
4279 ca40e004 ljiyeon
4280 233ef333 taeseongkim
                                    //20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정
4281
                                    (currentControl as SignControl).CommentAngle -= rotate.Angle;
4282 ca40e004 ljiyeon
                                }
4283 e66f22eb KangIngu
                                //}
4284 787a4489 KangIngu
                            }
4285
                        }
4286
                        break;
4287 233ef333 taeseongkim
4288 787a4489 KangIngu
                    case ControlType.Mark:
4289
                        {
4290 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4291 787a4489 KangIngu
                            {
4292 e66f22eb KangIngu
                                //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
4293
                                //{
4294 233ef333 taeseongkim
                                if (currentControl is RectangleControl)
4295
                                {
4296
                                    //20180906 LJY TEST IsRotationDrawingEnable
4297
                                    if (IsGetoutpoint((currentControl as RectangleControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4298 787a4489 KangIngu
                                    {
4299 233ef333 taeseongkim
                                        return;
4300
                                    }
4301 e66f22eb KangIngu
4302 233ef333 taeseongkim
                                    CreateCommand.Instance.Execute(currentControl);
4303
                                    (currentControl as RectangleControl).ApplyOverViewData();
4304
                                    currentControl = null;
4305 787a4489 KangIngu
4306 902faaea taeseongkim
                                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
4307 233ef333 taeseongkim
4308
                                    if (Common.ViewerDataModel.Instance.SelectedControl == "Batch")
4309
                                    {
4310
                                        txtBatch.Text = "Place Signature";
4311
                                        controlType = ControlType.Sign;
4312 787a4489 KangIngu
                                    }
4313 233ef333 taeseongkim
                                }
4314
                                else
4315
                                {
4316
                                    currentControl = new RectangleControl
4317 787a4489 KangIngu
                                    {
4318 233ef333 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
4319
                                        Background = new SolidColorBrush(Colors.Black),
4320
                                        ControlType = ControlType.Mark,
4321
                                        Paint = PaintSet.Fill
4322
                                    };
4323 787a4489 KangIngu
4324 233ef333 taeseongkim
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
4325
                                    currentControl.CommentID = Commons.shortGuid();
4326
                                    currentControl.IsNew = true;
4327
                                    (currentControl as RectangleControl).DashSize = ViewerDataModel.Instance.DashSize;
4328
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
4329
                                }
4330 e66f22eb KangIngu
                                //}
4331 787a4489 KangIngu
                            }
4332
                        }
4333
                        break;
4334 233ef333 taeseongkim
4335 787a4489 KangIngu
                    case ControlType.Symbol:
4336
                        {
4337 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4338 787a4489 KangIngu
                            {
4339 a6272c57 humkyung
                                if (currentControl is SymControl)
4340
                                {
4341
                                    //20180906 LJY TEST IsRotationDrawingEnable
4342
                                    if (IsGetoutpoint((currentControl as SymControl).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4343 787a4489 KangIngu
                                    {
4344 a6272c57 humkyung
                                        return;
4345 787a4489 KangIngu
                                    }
4346 a6272c57 humkyung
                                    CreateCommand.Instance.Execute(currentControl);
4347
                                    currentControl = null;
4348 233ef333 taeseongkim
4349 902faaea taeseongkim
                                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
4350 a6272c57 humkyung
                                }
4351
                                else
4352
                                {
4353
                                    currentControl = new SymControl
4354 787a4489 KangIngu
                                    {
4355 c7fde400 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
4356 a6272c57 humkyung
                                        Background = new SolidColorBrush(Colors.Black),
4357
                                        LineSize = ViewerDataModel.Instance.LineSize + 3,
4358
                                        ControlType = ControlType.Symbol
4359
                                    };
4360 787a4489 KangIngu
4361 a6272c57 humkyung
                                    currentControl.IsNew = true;
4362
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
4363
                                    currentControl.CommentID = Commons.shortGuid();
4364
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
4365 ca40e004 ljiyeon
4366 233ef333 taeseongkim
                                    //20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정
4367 fa48eb85 taeseongkim
                                    (currentControl as SymControl).CommentAngle -= rotate.Angle;
4368 ca40e004 ljiyeon
                                }
4369 e66f22eb KangIngu
                                //}
4370 787a4489 KangIngu
                            }
4371
                        }
4372
                        break;
4373 233ef333 taeseongkim
4374 787a4489 KangIngu
                    case ControlType.Stamp:
4375
                        {
4376 e6a9ddaf humkyung
                            if (e.LeftButton == MouseButtonState.Pressed)
4377 787a4489 KangIngu
                            {
4378 e66f22eb KangIngu
                                //if (IsDrawingEnable(canvasZoomPanningMouseDownPoint))
4379
                                //{
4380 233ef333 taeseongkim
                                if (currentControl is SymControlN)
4381
                                {
4382
                                    //20180906 LJY TEST IsRotationDrawingEnable
4383
                                    if (IsGetoutpoint((currentControl as SymControlN).PointSet.Where(data => IsRotationDrawingEnable(data) == true).FirstOrDefault()))
4384 787a4489 KangIngu
                                    {
4385 233ef333 taeseongkim
                                        return;
4386
                                    }
4387 e66f22eb KangIngu
4388 233ef333 taeseongkim
                                    CreateCommand.Instance.Execute(currentControl);
4389
                                    currentControl = null;
4390 510cbd2a ljiyeon
4391 902faaea taeseongkim
                                    this.cursor = new Cursor(App.DefaultArrowCursorStream);
4392 233ef333 taeseongkim
                                }
4393
                                else
4394
                                {
4395
                                    currentControl = new SymControlN
4396 787a4489 KangIngu
                                    {
4397 233ef333 taeseongkim
                                        StartPoint = new Point(CanvasDrawingMouseDownPoint.X, CanvasDrawingMouseDownPoint.Y),
4398
                                        Background = new SolidColorBrush(Colors.Black),
4399
                                        STAMP = App.SystemInfo.STAMP,
4400
                                        ControlType = ControlType.Stamp
4401
                                    };
4402 787a4489 KangIngu
4403 233ef333 taeseongkim
                                    currentControl.IsNew = true;
4404
                                    currentControl.MarkupInfoID = App.Custom_ViewInfoId;
4405
                                    currentControl.CommentID = Commons.shortGuid();
4406
                                    ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl);
4407
                                    //20180903 LJY 회전된 방향으로 화면에 출력되지 않는 문제 수정
4408
                                    (currentControl as SymControlN).CommentAngle -= rotate.Angle;
4409
                                }
4410 e66f22eb KangIngu
                                //}
4411 787a4489 KangIngu
                            }
4412
                        }
4413
                        break;
4414 233ef333 taeseongkim
4415 787a4489 KangIngu
                    case ControlType.PenControl:
4416
                        {
4417
                            if (inkBoard.Tag.ToString() == "Ink")
4418
                            {
4419
                                inkBoard.IsEnabled = true;
4420 c7fde400 taeseongkim
                                StartNewStroke(CanvasDrawingMouseDownPoint);
4421 787a4489 KangIngu
                            }
4422
                            else if (inkBoard.Tag.ToString() == "EraseByPoint")
4423
                            {
4424 c7fde400 taeseongkim
                                RemovePointStroke(CanvasDrawingMouseDownPoint);
4425 787a4489 KangIngu
                            }
4426
                            else if (inkBoard.Tag.ToString() == "EraseByStroke")
4427
                            {
4428 c7fde400 taeseongkim
                                RemoveLineStroke(CanvasDrawingMouseDownPoint);
4429 787a4489 KangIngu
                            }
4430
                            IsDrawing = true;
4431
                            return;
4432
                        }
4433
                    default:
4434
                        if (currentControl != null)
4435
                        {
4436
                            currentControl.CommentID = null;
4437
                            currentControl.IsNew = false;
4438
                        }
4439
                        break;
4440
                }
4441 fa48eb85 taeseongkim
4442 b74a9c91 taeseongkim
             
4443 1b2cf911 taeseongkim
                if (currentControl is ArrowTextControl)
4444
                {
4445
                    (currentControl as ArrowTextControl).EditEnded += (snd, evt) =>
4446
                    {
4447
                        var control = snd as ArrowTextControl;
4448
4449
                        if (string.IsNullOrEmpty(control.ArrowText))
4450
                        {
4451
                            DeleteCommand.Instance.Execute(new [] { control });
4452
                        }
4453
                    };
4454
4455
                }
4456 b74a9c91 taeseongkim
4457
                if (Common.ViewerDataModel.Instance.IsMacroCommand)
4458
                {
4459
                    if (currentControl == null && mouseHandlingMode == MouseHandlingMode.Drawing)
4460
                    {
4461
                        MacroHelper.MacroAction();
4462
                    }
4463
                    //if (currentControl.ControlType)
4464
                    //txtBatch.Text = "Draw a TextBox";
4465
                    //controlType = ControlType.ArrowTextBorderControl;
4466
                }
4467
4468 4f017ed3 taeseongkim
                //if (currentControl != null)
4469
                //{
4470
                //    currentControl.PageAngle = pageNavigator.CurrentPage.Angle;
4471
                //}
4472 787a4489 KangIngu
            }
4473 e6a9ddaf humkyung
            if (mouseHandlingMode != MouseHandlingMode.None && e.LeftButton == MouseButtonState.Pressed)
4474 787a4489 KangIngu
            {
4475 b74a9c91 taeseongkim
                // MACRO 버튼클릭하여 CLOUD RECT 그린 후
4476
             
4477
4478 787a4489 KangIngu
                if (mouseHandlingMode == MouseHandlingMode.Adorner && SelectLayer.Children.Count > 0)
4479
                {
4480
                    bool mouseOff = false;
4481
                    foreach (var item in SelectLayer.Children)
4482
                    {
4483
                        if (item is AdornerFinal)
4484
                        {
4485 4913851c humkyung
                            var over = (item as AdornerFinal).Members.Where(data => data.DrawingData.IsMouseOver).FirstOrDefault();
4486 787a4489 KangIngu
                            if (over != null)
4487
                            {
4488
                                mouseOff = true;
4489
                            }
4490
                        }
4491
                    }
4492
4493
                    if (!mouseOff)
4494
                    {
4495 077896be humkyung
                        SelectionSet.Instance.UnSelect(this);
4496 787a4489 KangIngu
                    }
4497
                }
4498
                zoomAndPanControl.CaptureMouse();
4499
                e.Handled = true;
4500
            }
4501
        }
4502 e54660e8 KangIngu
4503 a1716fa5 KangIngu
        private void zoomAndPanControl2_MouseDown(object sender, MouseButtonEventArgs e)
4504
        {
4505 e6a9ddaf humkyung
            ///mouseButtonDown = e.ChangedButton;
4506 a1716fa5 KangIngu
            canvasZoommovingMouseDownPoint = e.GetPosition(zoomAndPanCanvas2);
4507
        }
4508
4509 787a4489 KangIngu
        private void RemoveLineStroke(Point P)
4510
        {
4511 a342d378 taeseongkim
            var control = ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.IsMouseEnter).FirstOrDefault();
4512 787a4489 KangIngu
            if (control != null)
4513
            {
4514 f729ef4e humkyung
                DeleteCommand.Instance.Execute(new List<CommentUserInfo>() { control });
4515 787a4489 KangIngu
            }
4516
        }
4517
4518
        private void RemovePointStroke(Point P)
4519
        {
4520
            foreach (Stroke hits in inkBoard.Strokes)
4521
            {
4522
                foreach (StylusPoint sty in hits.StylusPoints)
4523
                {
4524
                }
4525
                if (hits.HitTest(P))
4526
                {
4527
                    inkBoard.Strokes.Remove(hits);
4528
                    return;
4529
                }
4530
            }
4531
        }
4532
4533
        private void StartNewStroke(Point P)
4534
        {
4535
            strokePoints = new StylusPointCollection();
4536
            StylusPoint segment1Start = new StylusPoint(P.X, P.Y);
4537
            strokePoints.Add(segment1Start);
4538
            stroke = new Stroke(strokePoints);
4539
4540
            stroke.DrawingAttributes.Color = Colors.Red;
4541
            stroke.DrawingAttributes.Width = 4;
4542
            stroke.DrawingAttributes.Height = 4;
4543
4544
            inkBoard.Strokes.Add(stroke);
4545
        }
4546
4547 b42dd24d taeseongkim
        private  void btnConsolidate_Click(object sender, RoutedEventArgs e)
4548 787a4489 KangIngu
        {
4549 b42dd24d taeseongkim
            //SelectionSet.Instance.UnSelect(this.ParentOfType<MainWindow>().dzMainMenu);
4550
            //// update mylist and gridview
4551
            //this.UpdateMyMarkupList();
4552
4553
            //bool result = await this.ParentOfType<MainWindow>().dzTopMenu.ExecuteSaveCommand(this);
4554
4555
            //if (result)
4556
            //{
4557 cf1cc862 taeseongkim
                btnFinalPDF.IsEnabled = false;
4558
4559 b42dd24d taeseongkim
                ConsolidationMethod();
4560
            //}
4561
            //else
4562
            //{
4563
            //    MessageBox.Show("오류");
4564
            //}
4565 787a4489 KangIngu
        }
4566
4567 102476f6 humkyung
        /// <summary>
4568
        /// execute TeamConsolidationCommand
4569
        /// </summary>
4570 04a7385a djkim
        public void TeamConsolidationMethod()
4571
        {
4572 102476f6 humkyung
            this.UpdateMyMarkupList();
4573 04a7385a djkim
            if (this.gridViewMarkup.SelectedItems.Count == 0)
4574
            {
4575
                this.ParentOfType<MainWindow>().DialogMessage_Alert("Please select at least one user", "Alert");
4576
            }
4577
            else
4578
            {
4579 8129f2a5 ljiyeon
                ViewerDataModel.Instance.IsConsolidate = true;
4580
                this.ParentOfType<MainWindow>().dzTopMenu._SaveEvent(null, null);
4581
4582 04a7385a djkim
                foreach (MarkupInfoItem item in this.gridViewMarkup.SelectedItems)
4583
                {
4584
                    if (!this.userData.DEPARTMENT.Equals(item.Depatment))
4585
                    {
4586
                        this.ParentOfType<MainWindow>().DialogMessage_Alert("Please select at your department", "Alert");
4587
                        return;
4588 233ef333 taeseongkim
                    }
4589 04a7385a djkim
                }
4590 102476f6 humkyung
                List<MarkupInfoItem> MarkupInfoList = new List<MarkupInfoItem>();
4591 04a7385a djkim
                foreach (MarkupInfoItem item in this.gridViewMarkup.SelectedItems)
4592 90e7968d ljiyeon
                {
4593 102476f6 humkyung
                    MarkupInfoList.Add(item);
4594 04a7385a djkim
                }
4595 102476f6 humkyung
                TeamConsolidateCommand.Instance.Execute(MarkupInfoList);
4596 04a7385a djkim
            }
4597
        }
4598 102476f6 humkyung
4599 1305c420 taeseongkim
        public bool ConsolidationMethod()
4600 787a4489 KangIngu
        {
4601 b42dd24d taeseongkim
            bool result = false;
4602
4603 787a4489 KangIngu
            if (this.gridViewMarkup.SelectedItems.Count == 0)
4604
            {
4605
                this.ParentOfType<MainWindow>().DialogMessage_Alert("Please select at least one user", "Alert");
4606
            }
4607
            else
4608 90e7968d ljiyeon
            {
4609 35a96e24 humkyung
                List<IKCOM.MarkupInfoItem> MySelectItem = new List<IKCOM.MarkupInfoItem>();
4610
                foreach (var item in this.gridViewMarkup.SelectedItems)
4611
                {
4612
                    MySelectItem.Add(item as IKCOM.MarkupInfoItem);
4613
                }
4614
                int iPageNo = Convert.ToInt32(this.ParentOfType<MainWindow>().dzTopMenu.tlcurrentPage.Text);
4615 233ef333 taeseongkim
4616 1305c420 taeseongkim
                result = ConsolidateCommand.Instance.Execute(MySelectItem, iPageNo);
4617 787a4489 KangIngu
            }
4618 b42dd24d taeseongkim
4619
            return result;
4620 787a4489 KangIngu
        }
4621
4622
        private void btnConsolidate_Loaded(object sender, RoutedEventArgs e)
4623
        {
4624
            if (App.ViewInfo != null)
4625
            {
4626
                btnConsolidate = (sender as RadRibbonButton);
4627
                if (!App.ViewInfo.NewCommentPermission)
4628
                {
4629
                    (sender as RadRibbonButton).Visibility = System.Windows.Visibility.Collapsed;
4630
                }
4631
            }
4632
        }
4633
4634
        private void btnTeamConsolidate_Click(object sender, RoutedEventArgs e)
4635
        {
4636 04a7385a djkim
            TeamConsolidationMethod();
4637 787a4489 KangIngu
        }
4638
4639
        private void btnTeamConsolidate_Loaded(object sender, RoutedEventArgs e)
4640
        {
4641
            btnTeamConsolidate = sender as RadRibbonButton;
4642
            if (App.ViewInfo != null)
4643
            {
4644
                if (!App.ViewInfo.CreateFinalPDFPermission) //파이널이 True가 아니면
4645
                {
4646
                    if (btnConsolidate != null)
4647
                    {
4648
                        btnConsolidate.Visibility = Visibility.Collapsed;
4649
                    }
4650
4651
                    if (!App.ViewInfo.NewCommentPermission)
4652
                    {
4653
                        btnTeamConsolidate.Visibility = Visibility.Collapsed;
4654
                    }
4655
                }
4656
                else
4657
                {
4658
                    btnTeamConsolidate.Visibility = Visibility.Collapsed;
4659
                }
4660
            }
4661
        }
4662
4663 bae83c92 taeseongkim
        private async void FinalPDFEvent(object sender, RoutedEventArgs e)
4664 787a4489 KangIngu
        {
4665 b42dd24d taeseongkim
            SelectionSet.Instance.UnSelect(this.ParentOfType<MainWindow>().dzMainMenu);
4666
            // update mylist and gridview
4667
            this.UpdateMyMarkupList();
4668 a1e2ba68 taeseongkim
4669 bae83c92 taeseongkim
            var result = await this.ParentOfType<MainWindow>().dzTopMenu.ExecuteSaveCommand(this);
4670 b42dd24d taeseongkim
4671 bae83c92 taeseongkim
            if(!result)
4672
            {
4673 a1e2ba68 taeseongkim
4674 bae83c92 taeseongkim
            }
4675
            else
4676 787a4489 KangIngu
            {
4677 bae83c92 taeseongkim
                var item = gridViewMarkup.Items.Cast<MarkupInfoItem>().Where(d => d.Consolidate == 1 && d.AvoidConsolidate == 0).FirstOrDefault();
4678
4679
                if (item != null)
4680 81e3c9f6 ljiyeon
                {
4681 bae83c92 taeseongkim
                    if (BaseClient.FinalPDF_GetFinalPDFStatus(_DocInfo.ID, item.MarkupInfoID, _ViewInfo.UserID))
4682
                    {
4683
                        //Logger.sendReqLog("SetFinalPDFAsync", _ViewInfo.ProjectNO + "," + _DocInfo.ID + "," + item.MarkupInfoID + "," + _ViewInfo.UserID, 1);
4684 a1e2ba68 taeseongkim
4685 bae83c92 taeseongkim
                        BaseClient.SetFinalPDFAsync(_ViewInfo.ProjectNO, _DocInfo.ID, item.MarkupInfoID, _ViewInfo.UserID);
4686
4687
                        ViewerDataModel.Instance.FinalPDFTime = DateTime.Now;
4688
                    }
4689
                    else
4690
                    {
4691
                        DialogMessage_Alert("Merged PDF가 수행중입니다", "안내");
4692
                    }
4693 81e3c9f6 ljiyeon
                }
4694
                else
4695
                {
4696 bae83c92 taeseongkim
                    //Consolidate 가 없는 경우
4697
                    DialogMessage_Alert("Consolidation 된 코멘트가 존재하지 않습니다", "안내");
4698 81e3c9f6 ljiyeon
                }
4699 233ef333 taeseongkim
            }
4700 bae83c92 taeseongkim
4701 787a4489 KangIngu
        }
4702
4703
        private void btnFinalPDF_Loaded(object sender, RoutedEventArgs e)
4704
        {
4705
            btnFinalPDF = sender as RadRibbonButton;
4706
            if (App.ViewInfo != null)
4707
            {
4708 b42dd24d taeseongkim
                //btnFinalPDF.IsEnabled = false;
4709
4710 787a4489 KangIngu
                if (!App.ViewInfo.CreateFinalPDFPermission) //파이널이 True가 아니면
4711
                {
4712
                    btnFinalPDF.Visibility = System.Windows.Visibility.Collapsed;
4713
                    if (btnConsolidate != null)
4714
                    {
4715
                        btnConsolidate.Visibility = Visibility.Collapsed;
4716
                    }
4717
                }
4718
            }
4719
        }
4720
4721 b42dd24d taeseongkim
        private async void ConsolidateFinalPDFEvent(object sender, RoutedEventArgs e)
4722 80458c15 ljiyeon
        {
4723 b42dd24d taeseongkim
            //UpdateMyMarkupList();
4724 80458c15 ljiyeon
4725
            if (this.gridViewMarkup.SelectedItems.Count == 0)
4726
            {
4727
                this.ParentOfType<MainWindow>().DialogMessage_Alert("Please select at least one user", "Alert");
4728
            }
4729
            else
4730
            {
4731 b42dd24d taeseongkim
                //if ((App.ViewInfo.CreateFinalPDFPermission || App.ViewInfo.NewCommentPermission))
4732
                //{
4733
                //컨트롤을 그리는 도중일 경우 컨트롤 삭제
4734
                //ViewerDataModel.Instance.MarkupControls_USER.Remove(ViewerDataModel.Instance.SystemMain.dzMainMenu.currentControl);
4735
                //ViewerDataModel.Instance.SystemMain.dzMainMenu.currentControl = null;
4736 80458c15 ljiyeon
4737 b42dd24d taeseongkim
                //SelectionSet.Instance.UnSelect(this.ParentOfType<MainWindow>().dzMainMenu);
4738
                //// update mylist and gridview
4739
                //this.UpdateMyMarkupList();
4740
4741
                //var result = await this.ParentOfType<MainWindow>().dzTopMenu.ExecuteSaveCommand(this);
4742 324fcf3e taeseongkim
4743 1305c420 taeseongkim
                Mouse.SetCursor(Cursors.Wait);
4744 324fcf3e taeseongkim
4745 1305c420 taeseongkim
                bool result = ConsolidationMethod();
4746 80458c15 ljiyeon
4747 1305c420 taeseongkim
                System.Threading.Thread.Sleep(600);
4748
4749
                if (result)
4750 80458c15 ljiyeon
                {
4751 1305c420 taeseongkim
                    var items = this.BaseClient.GetMarkupInfoItems(App.ViewInfo.ProjectNO, _DocInfo.ID);
4752
4753
                    var item2 = items.Where(d => d.Consolidate == 1 && d.AvoidConsolidate == 0).FirstOrDefault();
4754
                    if (item2 != null)
4755 bae83c92 taeseongkim
                    {
4756 1305c420 taeseongkim
                        if (BaseClient.FinalPDF_GetFinalPDFStatus(_DocInfo.ID, item2.MarkupInfoID, _ViewInfo.UserID))
4757
                        {
4758
                            //Logger.sendReqLog("SetFinalPDFAsync", _ViewInfo.ProjectNO + "," + _DocInfo.ID + "," + item2.MarkupInfoID + "," + _ViewInfo.UserID, 1);
4759 80458c15 ljiyeon
4760 1305c420 taeseongkim
                            BaseClient.SetFinalPDFAsync(_ViewInfo.ProjectNO, _DocInfo.ID, item2.MarkupInfoID, _ViewInfo.UserID);
4761
                            BaseClient.GetMarkupInfoItemsAsync(App.ViewInfo.ProjectNO, _DocInfo.ID);
4762 bae83c92 taeseongkim
4763 1305c420 taeseongkim
                            ViewerDataModel.Instance.FinalPDFTime = DateTime.Now;
4764
4765
                            Mouse.SetCursor(Cursors.Arrow);
4766
                        }
4767
                        else
4768
                        {
4769
                            DialogMessage_Alert("Merged PDF가 수행중입니다. 잠시 후 수행가능합니다.", "안내");
4770
                        }
4771 bae83c92 taeseongkim
                    }
4772
                    else
4773
                    {
4774 1305c420 taeseongkim
                        DialogMessage_Alert("Consolidation 된 코멘트가 존재하지 않습니다", "안내");
4775 bae83c92 taeseongkim
                    }
4776 80458c15 ljiyeon
                }
4777
                else
4778
                {
4779 1305c420 taeseongkim
                    DialogMessage_Alert("서버가 원활하지 않습니다. 다시 수행 바랍니다.", "안내");
4780 80458c15 ljiyeon
                }
4781 1305c420 taeseongkim
4782
                Mouse.SetCursor(Cursors.Arrow);
4783 90e7968d ljiyeon
            }
4784 80458c15 ljiyeon
        }
4785
4786
        private void btnConsolidateFinalPDF_Loaded(object sender, RoutedEventArgs e)
4787 90e7968d ljiyeon
        {
4788 80458c15 ljiyeon
            btnConsolidateFinalPDF = (sender as RadRibbonButton);
4789 84605c0c taeseongkim
#if Hyosung
4790
            btnConsolidateFinalPDF.Visibility = System.Windows.Visibility.Collapsed;
4791
#else
4792 b42dd24d taeseongkim
4793
            //btnConsolidateFinalPDF.IsEnabled = false;
4794
4795 80458c15 ljiyeon
            if (App.ViewInfo != null)
4796
            {
4797
                if (!App.ViewInfo.NewCommentPermission || !App.ViewInfo.CreateFinalPDFPermission)
4798
                {
4799 90e7968d ljiyeon
                    btnConsolidateFinalPDF.Visibility = System.Windows.Visibility.Collapsed;
4800 80458c15 ljiyeon
                }
4801 90e7968d ljiyeon
            }
4802 84605c0c taeseongkim
#endif
4803 80458c15 ljiyeon
        }
4804
4805 787a4489 KangIngu
        private void SyncCompare_Click(object sender, RoutedEventArgs e)
4806
        {
4807 adce8360 humkyung
            SetCompareRect();
4808 787a4489 KangIngu
        }
4809
4810 9cd2865b KangIngu
        private void Sync_Click(object sender, RoutedEventArgs e)
4811
        {
4812 a1716fa5 KangIngu
            if (Sync.IsChecked)
4813 9cd2865b KangIngu
            {
4814
                ViewerDataModel.Instance.Sync_ContentOffsetX = zoomAndPanControl.ContentOffsetX;
4815
                ViewerDataModel.Instance.Sync_ContentOffsetY = zoomAndPanControl.ContentOffsetY;
4816
                ViewerDataModel.Instance.Sync_ContentScale = zoomAndPanControl.ContentScale;
4817
            }
4818
        }
4819
4820 787a4489 KangIngu
        private void SyncUserListExpender_Click(object sender, RoutedEventArgs e)
4821
        {
4822
            if (UserList.IsChecked)
4823
            {
4824
                this.gridViewRevMarkup.Visibility = Visibility.Visible;
4825
            }
4826
            else
4827
            {
4828
                this.gridViewRevMarkup.Visibility = Visibility.Collapsed;
4829
            }
4830
        }
4831
4832
        private void SyncPageBalance_Click(object sender, RoutedEventArgs e)
4833
        {
4834
            if (BalanceMode.IsChecked)
4835
            {
4836
                ViewerDataModel.Instance.PageBalanceMode = true;
4837
            }
4838
            else
4839
            {
4840
                ViewerDataModel.Instance.PageBalanceMode = false;
4841
                ViewerDataModel.Instance.PageBalanceNumber = 0;
4842
            }
4843
        }
4844
4845
        private void SyncExit_Click(object sender, RoutedEventArgs e)
4846
        {
4847
            //초기화
4848
            testPanel2.IsHidden = true;
4849
            ViewerDataModel.Instance.PageBalanceMode = false;
4850
            ViewerDataModel.Instance.PageBalanceNumber = 0;
4851 752b18ef taeseongkim
            ViewerDataModel.Instance.SyncPageNumber = 0;
4852 787a4489 KangIngu
            ViewerDataModel.Instance.MarkupControls_Sync.Clear();
4853
            this.gridViewRevMarkup.Visibility = Visibility.Collapsed;
4854
            UserList.IsChecked = false;
4855
            BalanceMode.IsChecked = false;
4856
        }
4857
4858 ac4f1e13 taeseongkim
        private async void SyncPageChange_Click(object sender, RoutedEventArgs e)
4859 787a4489 KangIngu
        {
4860
            if ((sender as System.Windows.Controls.Control).Tag != null)
4861
            {
4862
                //Compare 초기화
4863
                CompareMode.IsChecked = false;
4864
                var balancePoint = Convert.ToInt32((sender as System.Windows.Controls.Control).Tag);
4865 752b18ef taeseongkim
                
4866
                if (ViewerDataModel.Instance.SyncPageNumber == 0)
4867 787a4489 KangIngu
                {
4868 752b18ef taeseongkim
                    ViewerDataModel.Instance.SyncPageNumber = 1;
4869 787a4489 KangIngu
                }
4870
4871
                if (ViewerDataModel.Instance.PageBalanceNumber == pageNavigator.PageCount)
4872
                {
4873
                }
4874
                else
4875
                {
4876
                    ViewerDataModel.Instance.PageBalanceNumber += balancePoint;
4877
                }
4878
4879 752b18ef taeseongkim
                if (ViewerDataModel.Instance.SyncPageNumber == pageNavigator.PageCount && balancePoint > 0)
4880 787a4489 KangIngu
                {
4881
                }
4882 752b18ef taeseongkim
                else if ((ViewerDataModel.Instance.SyncPageNumber + balancePoint) >= 1)
4883 787a4489 KangIngu
                {
4884 752b18ef taeseongkim
                    ViewerDataModel.Instance.SyncPageNumber += balancePoint;
4885 787a4489 KangIngu
                }
4886
4887 d04e8ee9 taeseongkim
                //pageNavigator.GotoPage(ViewerDataModel.Instance.PageNumber);
4888 6b6e937c taeseongkim
4889 787a4489 KangIngu
                if (!testPanel2.IsHidden)
4890
                {
4891
                    if (IsSyncPDFMode)
4892
                    {
4893
                        Get_FinalImage.Get_PdfImage get_PdfImage = new Get_FinalImage.Get_PdfImage();
4894 752b18ef taeseongkim
                        var pdfpath = new BitmapImage(new Uri(get_PdfImage.Run(CurrentRev.TO_VENDOR, App.ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber)));
4895 787a4489 KangIngu
4896
                        if (pdfpath.IsDownloading)
4897
                        {
4898
                            pdfpath.DownloadCompleted += (ex, arg) =>
4899
                            {
4900
                                ViewerDataModel.Instance.ImageViewPath_C = pdfpath;
4901
                                ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth;
4902
                                ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight;
4903
                                zoomAndPanCanvas2.Width = pdfpath.PixelWidth;
4904
                                zoomAndPanCanvas2.Height = pdfpath.PixelHeight;
4905
                            };
4906
                        }
4907
                        else
4908
                        {
4909
                            ViewerDataModel.Instance.ImageViewPath_C = pdfpath;
4910
                            ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth;
4911
                            ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight;
4912
4913
                            zoomAndPanCanvas2.Width = pdfpath.PixelWidth;
4914
                            zoomAndPanCanvas2.Height = pdfpath.PixelHeight;
4915
                        }
4916
                    }
4917
                    else
4918
                    {
4919 752b18ef taeseongkim
                        string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber);
4920 787a4489 KangIngu
4921 752b18ef taeseongkim
                        var isOriginalSize = !(ViewerDataModel.Instance.SyncPageNumber == pageNavigator.CurrentPage.PageNumber);
4922
                        ComparePageLoad(uri, isOriginalSize);
4923 787a4489 KangIngu
                    }
4924 4f017ed3 taeseongkim
                   
4925 787a4489 KangIngu
                    //강인구 추가(페이지 이동시 코멘트 재 호출)
4926
                    ViewerDataModel.Instance.MarkupControls_Sync.Clear();
4927
                    List<MarkupInfoItem> gridSelectionRevItem = gridViewRevMarkup.SelectedItems.Cast<MarkupInfoItem>().ToList();
4928
4929
                    foreach (var item in gridSelectionRevItem)
4930
                    {
4931 752b18ef taeseongkim
                        var markupitems = item.MarkupList.Where(pageItem => pageItem.PageNumber == ViewerDataModel.Instance.SyncPageNumber).ToList();
4932 ac4f1e13 taeseongkim
                        foreach (var markupitem in markupitems)
4933 787a4489 KangIngu
                        {
4934 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);
4935 ac4f1e13 taeseongkim
                        }
4936 787a4489 KangIngu
                    }
4937 e54660e8 KangIngu
4938 752b18ef taeseongkim
                    tlSyncPageNum.Text = String.Format("Current Page : {0}", ViewerDataModel.Instance.SyncPageNumber);
4939 787a4489 KangIngu
                }
4940
            }
4941
        }
4942
4943 43d2041c taeseongkim
        private void SyncRotation_Click(object sender,RoutedEventArgs e)
4944
        {
4945
            var direction = int.Parse((sender as Telerik.Windows.Controls.RadPathButton).Tag.ToString());
4946
4947
            double translateX = 0;
4948
            double translateY = 0;
4949
            double angle = rotate2.Angle;
4950
4951
            if (direction == 1)
4952
            {
4953
                if (angle < 270)
4954
                {
4955
                    angle += 90;
4956
                }
4957
                else
4958
                {
4959
                    angle = 0;
4960
                }
4961
            }
4962
            else
4963
            {
4964
                if (angle > 0)
4965
                {
4966
                    angle -= 90;
4967
                }
4968
                else
4969
                {
4970
                    angle = 270;
4971
                }
4972
            }
4973
            zoomAndPanControl2.RotationAngle = angle;
4974
            zoomAndPanControl2.ScaleToFit();
4975
4976
            //if (angle == 90 || angle == 270)
4977
            //{
4978
                double emptySize = zoomAndPanCanvas2.Width;
4979
                zoomAndPanCanvas2.Width = zoomAndPanCanvas2.Height;
4980
                zoomAndPanCanvas2.Height = emptySize;
4981
            //}
4982
4983
            if (angle == 90)
4984
            {
4985
                translateX = zoomAndPanCanvas2.Width;
4986
                translateY = 0;
4987
            }
4988
            else if (angle == 180)
4989
            {
4990
                translateX = zoomAndPanCanvas2.Width;
4991
                translateY = zoomAndPanCanvas2.Height;
4992
            }
4993
            else if (angle == 270)
4994
            {
4995
                translateX = 0;
4996
                translateY = zoomAndPanCanvas2.Height;
4997
            }
4998
            zoomAndPanControl2.ContentViewportWidth = zoomAndPanCanvas2.Width;
4999
            zoomAndPanControl2.ContentViewportHeight = zoomAndPanCanvas2.Height;
5000
            translate2.X = translateX;
5001
            translate2.Y = translateY;
5002
            rotate2.Angle = angle;
5003
            //translate2CompareBorder.X = translateX;
5004
            //translate2CompareBorder.Y = translateY;
5005
            //rotate2CompareBorder.Angle = angle;
5006
5007
        }
5008
5009 787a4489 KangIngu
        private void SyncChange_Click(object sender, RoutedEventArgs e)
5010
        {
5011
            if (MarkupMode.IsChecked)
5012
            {
5013
                IsSyncPDFMode = true;
5014
5015
                var uri = CurrentRev.TO_VENDOR;
5016 ae56d52d KangIngu
5017 752b18ef taeseongkim
                if (ViewerDataModel.Instance.SyncPageNumber == 0)
5018 787a4489 KangIngu
                {
5019 752b18ef taeseongkim
                    ViewerDataModel.Instance.SyncPageNumber = 1;
5020 787a4489 KangIngu
                }
5021
5022
                //PDF모드 잠시 대기(강인구)
5023
                Get_FinalImage.Get_PdfImage get_PdfImage = new Get_FinalImage.Get_PdfImage();
5024 752b18ef taeseongkim
                var pdfpath = new BitmapImage(new Uri(get_PdfImage.Run(CurrentRev.TO_VENDOR, App.ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber)));
5025 787a4489 KangIngu
5026
                if (pdfpath.IsDownloading)
5027
                {
5028
                    pdfpath.DownloadCompleted += (ex, arg) =>
5029
                    {
5030
                        ViewerDataModel.Instance.ImageViewPath_C = pdfpath;
5031
                        ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth;
5032
                        ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight;
5033
                        zoomAndPanCanvas2.Width = pdfpath.PixelWidth;
5034
                        zoomAndPanCanvas2.Height = pdfpath.PixelHeight;
5035
                    };
5036
                }
5037
                else
5038
                {
5039
                    ViewerDataModel.Instance.ImageViewPath_C = pdfpath;
5040
                    ViewerDataModel.Instance.ImageViewWidth_C = pdfpath.PixelWidth;
5041
                    ViewerDataModel.Instance.ImageViewHeight_C = pdfpath.PixelHeight;
5042
5043
                    zoomAndPanCanvas2.Width = pdfpath.PixelWidth;
5044
                    zoomAndPanCanvas2.Height = pdfpath.PixelHeight;
5045
                }
5046
            }
5047
            else
5048
            {
5049
                IsSyncPDFMode = false;
5050 69f41aab humkyung
                string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, pageNavigator.CurrentPage.PageNumber);
5051 787a4489 KangIngu
5052 752b18ef taeseongkim
                ComparePageLoad(uri,false);
5053 787a4489 KangIngu
5054
                zoomAndPanControl2.ApplyTemplate();
5055
                zoomAndPanControl2.UpdateLayout();
5056
                zoomAndPanCanvas2.Width = Convert.ToDouble(Common.ViewerDataModel.Instance.ContentWidth);
5057
                zoomAndPanCanvas2.Height = Convert.ToDouble(Common.ViewerDataModel.Instance.ContentHeight);
5058
            }
5059
        }
5060
5061 adce8360 humkyung
        /// <summary>
5062
        /// Compare된 영역을 초기화
5063
        /// </summary>
5064
        private void ClearCompareRect()
5065
        {
5066
            da.From = 1;
5067
            da.To = 1;
5068
            da.Duration = new Duration(TimeSpan.FromSeconds(9999));
5069
            da.AutoReverse = false;
5070
            canvas_compareBorder.Children.Clear();
5071
            canvas_compareBorder.BeginAnimation(OpacityProperty, da);
5072
        }
5073
5074
        /// <summary>
5075 233ef333 taeseongkim
        /// 문서 Comprare
5076 adce8360 humkyung
        /// </summary>
5077
        private void SetCompareRect()
5078
        {
5079 43d2041c taeseongkim
            canvas_compareBorder.Children.Clear();
5080
5081 adce8360 humkyung
            if (CompareMode.IsChecked)
5082
            {
5083
                if (ViewerDataModel.Instance.PageBalanceMode && ViewerDataModel.Instance.PageBalanceNumber == 0)
5084
                {
5085
                    ViewerDataModel.Instance.PageBalanceNumber = 1;
5086
                }
5087 752b18ef taeseongkim
                if (ViewerDataModel.Instance.SyncPageNumber == 0)
5088 adce8360 humkyung
                {
5089 752b18ef taeseongkim
                    ViewerDataModel.Instance.SyncPageNumber = 1;
5090 adce8360 humkyung
                }
5091
5092 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);
5093 adce8360 humkyung
5094 41c4405e taeseongkim
                /// 비교대상원본, 비교할 대상
5095 752b18ef taeseongkim
                BaseClient.GetCompareRectAsync(_ViewInfo.ProjectNO, _ViewInfo.DocumentItemID,  CurrentRev.DOCUMENT_ID,  ViewerDataModel.Instance.SyncPageNumber.ToString(), pageNavigator.CurrentPage.PageNumber.ToString(), userData.COMPANY != "EXT" ? "true" : "false");
5096 adce8360 humkyung
            }
5097
            else
5098
            {
5099 43d2041c taeseongkim
                canvas_compareBorder.Visibility = Visibility.Hidden;
5100 adce8360 humkyung
                ClearCompareRect();
5101
            }
5102
        }
5103
5104 3212270d taeseongkim
        private void btnSync_Click(object sender, RoutedEventArgs e)
5105 787a4489 KangIngu
        {
5106
            gridViewHistory_Busy.IsBusy = true;
5107
5108
            RadButton instance = sender as RadButton;
5109
            if (instance.CommandParameter != null)
5110
            {
5111
                CurrentRev = instance.CommandParameter as VPRevision;
5112 adce8360 humkyung
                System.EventHandler<ServiceDeepView.GetSyncMarkupInfoItemsCompletedEventArgs> GetSyncMarkupInfoItemshandler = null;
5113
5114
                GetSyncMarkupInfoItemshandler = (sen, ea) =>
5115 787a4489 KangIngu
                {
5116
                    if (ea.Error == null && ea.Result != null)
5117
                    {
5118
                        testPanel2.IsHidden = false;
5119
5120 d128ceb2 humkyung
                        ViewerDataModel.Instance._markupInfoRevList.Clear();
5121 233ef333 taeseongkim
                        foreach (var info in ea.Result)
5122 d128ceb2 humkyung
                        {
5123 233ef333 taeseongkim
                            if (info.UserID == App.ViewInfo.UserID)
5124 d128ceb2 humkyung
                            {
5125
                                info.userDelete = true;
5126 8f7f8073 taeseongkim
                                info.DisplayColor = "#FFFF0000";
5127 d128ceb2 humkyung
                            }
5128
                            else
5129
                            {
5130
                                info.userDelete = false;
5131
                            }
5132
                            ViewerDataModel.Instance._markupInfoRevList.Add(info);
5133
                        }
5134 787a4489 KangIngu
                        gridViewRevMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoRevList;
5135
5136 69f41aab humkyung
                        string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, pageNavigator.CurrentPage.PageNumber);
5137 752b18ef taeseongkim
                        ComparePageLoad(uri,false);
5138 787a4489 KangIngu
5139
                        Sync_Offset_Point = new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY);
5140
5141
                        zoomAndPanControl2.ApplyTemplate();
5142
                        zoomAndPanControl2.UpdateLayout();
5143 43d2041c taeseongkim
5144 787a4489 KangIngu
                        if (Sync_Offset_Point != new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY))
5145
                        {
5146
                            zoomAndPanControl.ContentOffsetX = Sync_Offset_Point.X;
5147
                            zoomAndPanControl.ContentOffsetY = Sync_Offset_Point.Y;
5148
                        }
5149
5150 9cd2865b KangIngu
                        ViewerDataModel.Instance.Sync_ContentOffsetX = Sync_Offset_Point.X;
5151
                        ViewerDataModel.Instance.Sync_ContentOffsetY = Sync_Offset_Point.Y;
5152
                        ViewerDataModel.Instance.Sync_ContentScale = zoomAndPanControl.ContentScale;
5153
5154 787a4489 KangIngu
                        tlSyncRev.Text = String.Format("Rev. {0}", CurrentRev.RevNo);
5155
                        tlSyncPageNum.Text = String.Format("Current Page : {0}", pageNavigator.CurrentPage.PageNumber);
5156 43d2041c taeseongkim
5157
                        zoomAndPanControl.ScaleToFit();
5158
                        zoomAndPanControl2.ScaleToFit();
5159
5160 787a4489 KangIngu
                        gridViewHistory_Busy.IsBusy = false;
5161
                    }
5162 0f065e57 ljiyeon
5163 664ea2e1 taeseongkim
                    //Logger.sendResLog("GetSyncMarkupInfoItemsCompleted", "UserState : " + ea.UserState + "\r Result :" + ea.Result + "\r Cancelled :" + ea.Cancelled + "\r Error :" + ea.Error, 1);
5164 adce8360 humkyung
5165
                    if (GetSyncMarkupInfoItemshandler != null)
5166
                    {
5167
                        BaseClient.GetSyncMarkupInfoItemsCompleted -= GetSyncMarkupInfoItemshandler;
5168
                    }
5169
5170 43d2041c taeseongkim
                    //ClearCompareRect();
5171 adce8360 humkyung
                    SetCompareRect();
5172 90e7968d ljiyeon
                };
5173 adce8360 humkyung
5174
                /// 중복 실행이 발생하여 수정함.
5175
                BaseClient.GetSyncMarkupInfoItemsCompleted += GetSyncMarkupInfoItemshandler;
5176 787a4489 KangIngu
                BaseClient.GetSyncMarkupInfoItemsAsync(_ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, _ViewInfo.UserID);
5177 adce8360 humkyung
5178 664ea2e1 taeseongkim
                //Logger.sendReqLog("GetSyncMarkupInfoItemsAsync", _ViewInfo.ProjectNO + "," + CurrentRev.DOCUMENT_ID + "," + _ViewInfo.UserID, 1);
5179 787a4489 KangIngu
            }
5180
        }
5181 4eb052e4 ljiyeon
5182 752b18ef taeseongkim
        private void OriginalSizeMode_Click(object sender,RoutedEventArgs e)
5183
        {
5184
            string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, ViewerDataModel.Instance.SyncPageNumber);
5185
            var isOriginalSize = !(ViewerDataModel.Instance.SyncPageNumber == pageNavigator.CurrentPage.PageNumber);
5186
5187 ffa5dbc7 taeseongkim
            ComparePageLoad(uri, OriginalSizeMode.IsChecked);
5188 752b18ef taeseongkim
        }
5189
5190 94b7c12c djkim
        private void EnsembleLink_Button_Click(object sender, RoutedEventArgs e)
5191
        {
5192
            try
5193
            {
5194
                if (sender is RadButton)
5195
                {
5196
                    if ((sender as RadButton).Tag != null)
5197
                    {
5198
                        var url = (sender as RadButton).Tag.ToString();
5199
                        System.Diagnostics.Process.Start(url);
5200
                    }
5201
                    else
5202
                    {
5203
                        this.ParentOfType<MainWindow>().DialogMessage_Alert("Link 정보가 잘못 되었습니다", "안내");
5204
                    }
5205
                }
5206
            }
5207
            catch (Exception ex)
5208
            {
5209 664ea2e1 taeseongkim
                //Logger.sendResLog("EnsembleLink_Button_Click", ex.Message, 0);
5210 94b7c12c djkim
            }
5211
        }
5212 787a4489 KangIngu
5213
        public void Sync_Event(VPRevision Currnet_Rev)
5214
        {
5215
            CurrentRev = Currnet_Rev;
5216
5217
            BaseClient.GetSyncMarkupInfoItemsCompleted += (sen, ea) =>
5218
            {
5219
                if (ea.Error == null && ea.Result != null)
5220
                {
5221
                    testPanel2.IsHidden = false;
5222
5223 d128ceb2 humkyung
                    ViewerDataModel.Instance._markupInfoRevList.Clear();
5224 233ef333 taeseongkim
                    foreach (var info in ea.Result)
5225 d128ceb2 humkyung
                    {
5226 233ef333 taeseongkim
                        if (info.UserID == App.ViewInfo.UserID)
5227 d128ceb2 humkyung
                        {
5228
                            info.userDelete = true;
5229 cf1cc862 taeseongkim
                            info.DisplayColor = "#FFFF0000";
5230 d128ceb2 humkyung
                        }
5231
                        else
5232
                        {
5233
                            info.userDelete = false;
5234
                        }
5235
                        ViewerDataModel.Instance._markupInfoRevList.Add(info);
5236
                    }
5237 787a4489 KangIngu
                    gridViewRevMarkup.ItemsSource = ViewerDataModel.Instance._markupInfoRevList;
5238
5239 69f41aab humkyung
                    string uri = this.GetImageURL(CurrentRev.DOCUMENT_ID, pageNavigator.CurrentPage.PageNumber);
5240 787a4489 KangIngu
5241
                    Sync_Offset_Point = new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY);
5242
5243 752b18ef taeseongkim
                    ComparePageLoad(uri,false);
5244 90e7968d ljiyeon
5245 787a4489 KangIngu
                    zoomAndPanCanvas2.Width = Convert.ToDouble(Common.ViewerDataModel.Instance.ContentWidth);
5246
                    zoomAndPanCanvas2.Height = Convert.ToDouble(Common.ViewerDataModel.Instance.ContentHeight);
5247
                    zoomAndPanControl2.ApplyTemplate();
5248
                    zoomAndPanControl2.UpdateLayout();
5249
5250
                    if (Sync_Offset_Point != new Point(zoomAndPanControl.ContentOffsetX, zoomAndPanControl.ContentOffsetY))
5251
                    {
5252
                        zoomAndPanControl.ContentOffsetX = Sync_Offset_Point.X;
5253
                        zoomAndPanControl.ContentOffsetY = Sync_Offset_Point.Y;
5254
                    }
5255
                    //}
5256 30878507 taeseongkim
                    
5257 787a4489 KangIngu
                    tlSyncRev.Text = String.Format("Rev. {0}", CurrentRev.RevNo);
5258
                    tlSyncPageNum.Text = String.Format("Current Page : {0}", pageNavigator.CurrentPage.PageNumber);
5259 90e7968d ljiyeon
                    gridViewHistory_Busy.IsBusy = false;
5260 787a4489 KangIngu
                }
5261 664ea2e1 taeseongkim
                //Logger.sendResLog("GetSyncMarkupInfoItemsCompleted", "UserState : " + ea.UserState + "\r Result :" + ea.Result + "\r Cancelled :" + ea.Cancelled + "\r Error :" + ea.Error, 1);
5262 787a4489 KangIngu
            };
5263 664ea2e1 taeseongkim
            //Logger.sendReqLog("GetSyncMarkupInfoItemsAsync", _ViewInfo.ProjectNO + "," + CurrentRev.DOCUMENT_ID + "," + _ViewInfo.UserID, 1);
5264 90e7968d ljiyeon
            BaseClient.GetSyncMarkupInfoItemsAsync(_ViewInfo.ProjectNO, CurrentRev.DOCUMENT_ID, _ViewInfo.UserID);
5265 787a4489 KangIngu
        }
5266
5267
        private void PdfLink_ButtonDown(object sender, MouseButtonEventArgs e)
5268
        {
5269
            if (sender is Image)
5270
            {
5271
                if ((sender as Image).Tag != null)
5272
                {
5273
                    var pdfUrl = (sender as Image).Tag.ToString();
5274
                    System.Diagnostics.Process.Start(pdfUrl);
5275
                }
5276
                else
5277
                {
5278
                    this.ParentOfType<MainWindow>().DialogMessage_Alert("문서 정보가 잘못 되었습니다", "안내");
5279
                }
5280
            }
5281
        }
5282
5283
        private void Create_Symbol(object sender, RoutedEventArgs e)
5284
        {
5285 5529d2a2 humkyung
            MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn markupReturn = new MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn();
5286 787a4489 KangIngu
5287
            if (SelectLayer.Children.Count < 1) //선택된 것이 없으면
5288
            {
5289
                DialogMessage_Alert("Please Select Controls", "Alert");
5290
            }
5291
            else //선택된 것이 있으면
5292
            {
5293
                string MarkupData = "";
5294
                adorner_ = new AdornerFinal();
5295
5296
                foreach (var item in SelectLayer.Children)
5297
                {
5298
                    if (item.GetType().Name == "AdornerFinal")
5299
                    {
5300
                        adorner_ = (item as Controls.AdornerFinal);
5301 4913851c humkyung
                        foreach (var InnerItem in (item as Controls.AdornerFinal).Members.Cast<Controls.AdornerMember>())
5302 787a4489 KangIngu
                        {
5303
                            if (!ViewerDataModel.Instance.MarkupControls.Contains(InnerItem.DrawingData))
5304
                            {
5305 5529d2a2 humkyung
                                markupReturn = MarkupParser.MarkupToString(InnerItem.DrawingData as MarkupToPDF.Common.CommentUserInfo, App.ViewInfo.UserID);
5306 787a4489 KangIngu
                                MarkupData += markupReturn.ConvertData;
5307
                            }
5308
                        }
5309
                    }
5310
                }
5311
                DialogParameters parameters = new DialogParameters()
5312
                {
5313 b9b01f8e ljiyeon
                    Owner = Application.Current.MainWindow,
5314 787a4489 KangIngu
                    Closed = (obj, args) => this.MarkupNamePromptClose(MarkupData, args),
5315
                    DefaultPromptResultValue = "Custom State",
5316
                    Content = "Name :",
5317
                    Header = "Insert Custom Symbol Name",
5318
                    Theme = new VisualStudio2013Theme(),
5319
                    ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 },
5320
                };
5321
                RadWindow.Prompt(parameters);
5322
            }
5323
        }
5324 233ef333 taeseongkim
5325 53880c83 ljiyeon
        public int symbolselectindex = 0;
5326 233ef333 taeseongkim
5327 53880c83 ljiyeon
        private void SymbolMarkupNamePromptClose(byte[] Img_byte, string data, WindowClosedEventArgs args)
5328
        {
5329
            //Save save = new Save();
5330
            try
5331
            {
5332
                string svgfilename = null;
5333
                if (symbolname != null)
5334
                {
5335
                    if (symbolpng == true || symbolsvg == true)
5336
                    {
5337 76dc223b taeseongkim
                        kr.co.devdoftech.cloud.FileUpload fileUploader = App.FileUploader;
5338 24678e06 humkyung
                        string guid = Commons.shortGuid();
5339 53880c83 ljiyeon
5340
                        fileUploader.RunAsync(App.ViewInfo.ProjectNO, _DocItem.DOCUMENT_NO, App.ViewInfo.UserID, guid + ".png", Img_byte);
5341 c73426a9 ljiyeon
                        //Check_Uri.UriCheck();
5342 53880c83 ljiyeon
                        fileUploader.RunCompleted += (ex, arg) =>
5343
                        {
5344
                            filename = arg.Result;
5345
                            if (symbolpng == true)
5346
                            {
5347
                                if (filename != null)
5348 233ef333 taeseongkim
                                {
5349 53880c83 ljiyeon
                                    if (symbolselectindex == 0)
5350
                                    {
5351
                                        SymbolSave(symbolname, filename, data);
5352
                                    }
5353
                                    else
5354
                                    {
5355
                                        SymbolSave_Public(symbolname, filename, data, ViewerDataModel.Instance.SystemMain.dzMainMenu.userData.DEPARTMENT);
5356
                                    }
5357
                                    DataBind();
5358 233ef333 taeseongkim
                                }
5359 53880c83 ljiyeon
                            }
5360
5361
                            if (symbolsvg == true)
5362
                            {
5363 c73426a9 ljiyeon
                                try
5364 53880c83 ljiyeon
                                {
5365 c73426a9 ljiyeon
                                    var defaultBitmapImage = new BitmapImage();
5366
                                    defaultBitmapImage.BeginInit();
5367
                                    defaultBitmapImage.CreateOptions = BitmapCreateOptions.IgnoreImageCache;
5368
                                    defaultBitmapImage.CacheOption = BitmapCacheOption.OnLoad;
5369
                                    Check_Uri.UriCheck(filename);
5370
                                    defaultBitmapImage.UriSource = new Uri(filename);
5371
                                    defaultBitmapImage.EndInit();
5372 53880c83 ljiyeon
5373 c73426a9 ljiyeon
                                    System.Drawing.Bitmap image;
5374 53880c83 ljiyeon
5375 c73426a9 ljiyeon
                                    if (defaultBitmapImage.IsDownloading)
5376
                                    {
5377
                                        defaultBitmapImage.DownloadCompleted += (ex2, arg2) =>
5378 53880c83 ljiyeon
                                        {
5379 c73426a9 ljiyeon
                                            defaultBitmapImage.Freeze();
5380
                                            image = GetBitmap(defaultBitmapImage);
5381
                                            image.Save(@AppDomain.CurrentDomain.BaseDirectory + "potrace.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
5382
                                            Process potrace = new Process
5383 53880c83 ljiyeon
                                            {
5384 c73426a9 ljiyeon
                                                StartInfo = new ProcessStartInfo
5385
                                                {
5386
                                                    FileName = @AppDomain.CurrentDomain.BaseDirectory + "potrace.exe",
5387
                                                    Arguments = "-b svg " + @AppDomain.CurrentDomain.BaseDirectory + "potrace.bmp",
5388
                                                    RedirectStandardInput = true,
5389
                                                    RedirectStandardOutput = true,
5390
                                                    RedirectStandardError = true,
5391
                                                    UseShellExecute = false,
5392
                                                    CreateNoWindow = true,
5393
                                                    WindowStyle = ProcessWindowStyle.Hidden
5394
                                                },
5395
                                            };
5396 53880c83 ljiyeon
5397 c73426a9 ljiyeon
                                            StringBuilder svgBuilder = new StringBuilder();
5398
                                            potrace.OutputDataReceived += (object sender2, DataReceivedEventArgs e2) =>
5399 53880c83 ljiyeon
                                            {
5400 c73426a9 ljiyeon
                                                svgBuilder.AppendLine(e2.Data);
5401
                                            };
5402
5403
                                            potrace.EnableRaisingEvents = true;
5404
                                            potrace.Start();
5405
                                            potrace.Exited += (sender, e) =>
5406 53880c83 ljiyeon
                                            {
5407 c73426a9 ljiyeon
                                                byte[] bytes = System.IO.File.ReadAllBytes(@AppDomain.CurrentDomain.BaseDirectory + "potrace.svg");
5408
                                                svgfilename = fileUploader.Run(App.ViewInfo.ProjectNO, _DocItem.DOCUMENT_NO, App.ViewInfo.UserID, guid + ".svg", bytes);
5409
                                                Check_Uri.UriCheck(svgfilename);
5410
                                                if (symbolselectindex == 0)
5411
                                                {
5412
                                                    SymbolSave(symbolname, svgfilename, data);
5413
                                                }
5414
                                                else
5415
                                                {
5416
                                                    SymbolSave_Public(symbolname, svgfilename, data, ViewerDataModel.Instance.SystemMain.dzMainMenu.userData.DEPARTMENT);
5417
                                                }
5418 53880c83 ljiyeon
5419 c73426a9 ljiyeon
                                                DataBind();
5420
                                            };
5421
                                            potrace.WaitForExit();
5422 53880c83 ljiyeon
                                        };
5423 c73426a9 ljiyeon
                                    }
5424
                                    else
5425
                                    {
5426
                                        //GC.Collect();
5427
                                    }
5428 53880c83 ljiyeon
                                }
5429 233ef333 taeseongkim
                                catch (Exception ee)
5430 90e7968d ljiyeon
                                {
5431 c73426a9 ljiyeon
                                    DialogMessage_Alert("" + ee, "Alert");
5432 90e7968d ljiyeon
                                }
5433 53880c83 ljiyeon
                            }
5434 233ef333 taeseongkim
                        };
5435 53880c83 ljiyeon
                    }
5436
                }
5437
            }
5438
            catch (Exception e)
5439
            {
5440
                //DialogMessage_Alert(e + "", "Alert");
5441 233ef333 taeseongkim
            }
5442 53880c83 ljiyeon
        }
5443
5444
        public void SymbolSave(string Name, string Url, string Data)
5445
        {
5446
            try
5447
            {
5448
                SYMBOL_PRIVATE symbol_private = new SYMBOL_PRIVATE
5449
                {
5450 24678e06 humkyung
                    ID = Commons.shortGuid(),
5451 53880c83 ljiyeon
                    MEMBER_USER_ID = App.ViewInfo.UserID,
5452
                    NAME = Name,
5453
                    IMAGE_URL = Url,
5454
                    DATA = Data
5455
                };
5456
5457
                Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.SaveSymbolCompleted += BaseClient_SaveSymbolCompleted;
5458 664ea2e1 taeseongkim
                //Logger.sendReqLog("SaveSymbolAsync: ", symbol_private.ID + "," + symbol_private.MEMBER_USER_ID + "," + symbol_private.NAME + "," + symbol_private.IMAGE_URL + "," + symbol_private.DATA, 1);
5459 53880c83 ljiyeon
                Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.SaveSymbolAsync(symbol_private);
5460
            }
5461
            catch (Exception)
5462
            {
5463
                throw;
5464
            }
5465
        }
5466
5467
        public void SymbolSave_Public(string Name, string Url, string Data, string Department)
5468
        {
5469
            try
5470
            {
5471
                SYMBOL_PUBLIC symbol_public = new SYMBOL_PUBLIC
5472
                {
5473 24678e06 humkyung
                    ID = Commons.shortGuid(),
5474 53880c83 ljiyeon
                    DEPARTMENT = Department,
5475
                    NAME = Name,
5476
                    IMAGE_URL = Url,
5477
                    DATA = Data
5478
                };
5479
                Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.AddPublicSymbolCompleted += BaseClient_AddPublicSymbolCompleted;
5480 664ea2e1 taeseongkim
                //Logger.sendReqLog("AddPublicSymbol: ", symbol_public.ID + "," + symbol_public.DEPARTMENT + "," + symbol_public.NAME + "," + symbol_public.IMAGE_URL + "," + symbol_public.DATA, 1);
5481 53880c83 ljiyeon
                Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.AddPublicSymbol(symbol_public);
5482
            }
5483
            catch (Exception)
5484
            {
5485
                throw;
5486
            }
5487
        }
5488
5489
        private void BaseClient_AddPublicSymbolCompleted(object sender, ServiceDeepView.AddPublicSymbolCompletedEventArgs e)
5490 233ef333 taeseongkim
        {
5491 664ea2e1 taeseongkim
            //Logger.sendResLog("AddPublicSymbolCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1);
5492 53880c83 ljiyeon
            DataBind();
5493
        }
5494
5495
        private void BaseClient_SaveSymbolCompleted(object sender, ServiceDeepView.SaveSymbolCompletedEventArgs e)
5496
        {
5497 664ea2e1 taeseongkim
            //Logger.sendResLog("RenameSymbolCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1);
5498 53880c83 ljiyeon
            DataBind();
5499
        }
5500 233ef333 taeseongkim
5501 53880c83 ljiyeon
        private void DataBind()
5502
        {
5503
            try
5504
            {
5505
                Symbol_Custom Custom = new Symbol_Custom();
5506
                List<Symbol_Custom> Custom_List = new List<Symbol_Custom>();
5507 233ef333 taeseongkim
5508 bb3a236d ljiyeon
                var symbol_Private = BaseClient.GetSymbolList(App.ViewInfo.UserID);
5509 53880c83 ljiyeon
                foreach (var item in symbol_Private)
5510
                {
5511
                    Custom.Name = item.NAME;
5512
                    Custom.ImageUri = item.IMAGE_URL;
5513
                    Custom.ID = item.ID;
5514
                    Custom_List.Add(Custom);
5515
                    Custom = new Symbol_Custom();
5516
                }
5517
                symbolPanel_Instance.lstSymbolPrivate.ItemsSource = Custom_List;
5518 233ef333 taeseongkim
5519 53880c83 ljiyeon
                Custom = new Symbol_Custom();
5520
                Custom_List = new List<Symbol_Custom>();
5521
5522 bb3a236d ljiyeon
                symbolPanel_Instance.deptlist.ItemsSource = BaseClient.GetPublicSymbolDeptList();
5523 53880c83 ljiyeon
5524
                List<SYMBOL_PUBLIC> symbol_Public;
5525 787a4489 KangIngu
5526 53880c83 ljiyeon
                if (symbolPanel_Instance.deptlist.SelectedValue != null)
5527
                {
5528 bb3a236d ljiyeon
                    symbol_Public = BaseClient.GetPublicSymbolList(symbolPanel_Instance.deptlist.SelectedValue.ToString());
5529 53880c83 ljiyeon
                }
5530
                else
5531
                {
5532 bb3a236d ljiyeon
                    symbol_Public = BaseClient.GetPublicSymbolList(null);
5533 53880c83 ljiyeon
                }
5534
                foreach (var item in symbol_Public)
5535
                {
5536
                    Custom.Name = item.NAME;
5537
                    Custom.ImageUri = item.IMAGE_URL;
5538
                    Custom.ID = item.ID;
5539
                    Custom_List.Add(Custom);
5540
                    Custom = new Symbol_Custom();
5541
                }
5542
                symbolPanel_Instance.lstSymbolPublic.ItemsSource = Custom_List;
5543 233ef333 taeseongkim
                BaseClient.Close();
5544 53880c83 ljiyeon
            }
5545 233ef333 taeseongkim
            catch (Exception e)
5546 53880c83 ljiyeon
            {
5547
                //DialogMessage_Alert("DataBind", "Alert");
5548
            }
5549
        }
5550 233ef333 taeseongkim
5551 ac4f1e13 taeseongkim
        private async void MarkupNamePromptClose(string data, WindowClosedEventArgs args)
5552 787a4489 KangIngu
        {
5553 c73426a9 ljiyeon
            try
5554 787a4489 KangIngu
            {
5555 c73426a9 ljiyeon
                if (args.PromptResult != null)
5556 53880c83 ljiyeon
                {
5557 c73426a9 ljiyeon
                    if (args.DialogResult.Value)
5558
                    {
5559 ac4f1e13 taeseongkim
                        PngBitmapEncoder _Encoder = await symImageAsync(data);
5560 787a4489 KangIngu
5561 c73426a9 ljiyeon
                        System.IO.MemoryStream fs = new System.IO.MemoryStream();
5562
                        _Encoder.Save(fs);
5563
                        System.Drawing.Image ImgOut = System.Drawing.Image.FromStream(fs);
5564 787a4489 KangIngu
5565 c73426a9 ljiyeon
                        byte[] Img_byte = fs.ToArray();
5566 787a4489 KangIngu
5567 76dc223b taeseongkim
                        kr.co.devdoftech.cloud.FileUpload fileUploader = App.FileUploader;
5568 24678e06 humkyung
                        filename = fileUploader.Run(App.ViewInfo.ProjectNO, _DocItem.DOCUMENT_NO, App.ViewInfo.UserID, Commons.shortGuid() + ".png", Img_byte);
5569 c73426a9 ljiyeon
                        Check_Uri.UriCheck(filename);
5570
                        if (symbolPanel_Instance.RadTab.SelectedIndex == 0)
5571
                        {
5572 de6499db humkyung
                            SaveCommand.Instance.SymbolSave(args.PromptResult, filename, data);
5573 c73426a9 ljiyeon
                        }
5574
                        else
5575
                        {
5576 de6499db humkyung
                            SaveCommand.Instance.SymbolSave_Public(args.PromptResult, filename, data, ViewerDataModel.Instance.SystemMain.dzMainMenu.userData.DEPARTMENT);
5577 c73426a9 ljiyeon
                        }
5578
                        DataBind();
5579 53880c83 ljiyeon
                    }
5580
                }
5581 787a4489 KangIngu
            }
5582 233ef333 taeseongkim
            catch (Exception ex)
5583 c73426a9 ljiyeon
            {
5584
                DialogMessage_Alert("" + ex, "Alert");
5585
            }
5586 787a4489 KangIngu
        }
5587
5588 ac4f1e13 taeseongkim
        public async Task<PngBitmapEncoder> symImageAsync(string data)
5589 787a4489 KangIngu
        {
5590
            Canvas _canvas = new Canvas();
5591
            _canvas.Background = Brushes.White;
5592
            _canvas.Width = adorner_.BorderSize.Width;
5593
            _canvas.Height = adorner_.BorderSize.Height;
5594 a1e2ba68 taeseongkim
            await MarkupParser.ParseAsync(App.BaseAddress, App.ViewInfo.ProjectNO, data, _canvas,ViewerDataModel.Instance.PageAngle, "#FFFF0000", "", ViewerDataModel.Instance.CancellationToken());
5595 787a4489 KangIngu
5596
            BitmapEncoder encoder = new PngBitmapEncoder();
5597
5598
            RenderTargetBitmap renderBitmap = new RenderTargetBitmap((int)_canvas.Width + 50, (int)_canvas.Height + 50, 96d, 96d, PixelFormats.Pbgra32);
5599
5600
            DrawingVisual dv = new DrawingVisual();
5601
5602
            _canvas.Measure(new System.Windows.Size(adorner_.BorderSize.Width + 50, adorner_.BorderSize.Height + 50));
5603
            _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)));
5604
5605
            using (DrawingContext ctx = dv.RenderOpen())
5606
            {
5607
                VisualBrush vb = new VisualBrush(_canvas);
5608
                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)));
5609
            }
5610
5611
            try
5612
            {
5613
                renderBitmap.Render(dv);
5614
5615 2007ecaa taeseongkim
                GC.Collect(2);
5616 787a4489 KangIngu
                GC.WaitForPendingFinalizers();
5617 90e7968d ljiyeon
                //GC.Collect();
5618 787a4489 KangIngu
                // encode png data
5619
                PngBitmapEncoder pngEncoder = new PngBitmapEncoder();
5620
                // puch rendered bitmap into it
5621
                pngEncoder.Interlace = PngInterlaceOption.Off;
5622
                pngEncoder.Frames.Add(BitmapFrame.Create(renderBitmap));
5623
                return pngEncoder;
5624
            }
5625 53880c83 ljiyeon
            catch //(Exception ex)
5626 787a4489 KangIngu
            {
5627
                return null;
5628
            }
5629
        }
5630
5631
        public void DialogMessage_Alert(string content, string header)
5632
        {
5633 68e3cd94 taeseongkim
            App.splashScreen.Close();
5634 cf1cc862 taeseongkim
            App.FileLogger.Error(content + " " + header);
5635 68e3cd94 taeseongkim
5636 787a4489 KangIngu
            DialogParameters parameters = new DialogParameters()
5637
            {
5638 4279e717 djkim
                Owner = this.ParentOfType<MainWindow>(),
5639 0d32593b ljiyeon
                Content = new TextBlock()
5640 233ef333 taeseongkim
                {
5641 0d32593b ljiyeon
                    MinWidth = 400,
5642
                    FontSize = 11,
5643
                    Text = content,
5644
                    TextWrapping = System.Windows.TextWrapping.Wrap
5645
                },
5646 b79f786f 송근호
                DialogStartupLocation = WindowStartupLocation.CenterOwner,
5647 787a4489 KangIngu
                Header = header,
5648
                Theme = new VisualStudio2013Theme(),
5649
                ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 },
5650 233ef333 taeseongkim
            };
5651 787a4489 KangIngu
            RadWindow.Alert(parameters);
5652
        }
5653
5654 233ef333 taeseongkim
        #region 캡쳐 기능
5655 787a4489 KangIngu
5656
        public BitmapSource CutAreaToImage(int x, int y, int width, int height)
5657
        {
5658
            if (x < 0)
5659
            {
5660
                width += x;
5661
                x = 0;
5662
            }
5663
            if (y < 0)
5664
            {
5665
                height += y;
5666
                y = 0;
5667
5668
                width = (int)zoomAndPanCanvas.ActualWidth - x;
5669
            }
5670
            if (x + width > zoomAndPanCanvas.ActualWidth)
5671
            {
5672
                width = (int)zoomAndPanCanvas.ActualWidth - x;
5673
            }
5674
            if (y + height > zoomAndPanCanvas.ActualHeight)
5675
            {
5676
                height = (int)zoomAndPanCanvas.ActualHeight - y;
5677
            }
5678
5679
            byte[] pixels = CopyPixels(x, y, width, height);
5680
5681
            int stride = (width * canvasImage.Format.BitsPerPixel + 7) / 8;
5682
5683
            return BitmapSource.Create(width, height, 96, 96, PixelFormats.Pbgra32, null, pixels, stride);
5684
        }
5685
5686
        public byte[] CopyPixels(int x, int y, int width, int height)
5687
        {
5688
            byte[] pixels = new byte[width * height * 4];
5689
            int stride = (width * canvasImage.Format.BitsPerPixel + 7) / 8;
5690
5691
            // Canvas 이미지에서 객체 역역만큼 픽셀로 복사
5692
            canvasImage.CopyPixels(new Int32Rect(x, y, width, height), pixels, stride, 0);
5693
5694
            return pixels;
5695
        }
5696
5697
        public RenderTargetBitmap ConverterBitmapImage(FrameworkElement element)
5698
        {
5699
            DrawingVisual drawingVisual = new DrawingVisual();
5700
            DrawingContext drawingContext = drawingVisual.RenderOpen();
5701
5702
            // 해당 객체의 그래픽요소로 사각형의 그림을 그립니다.
5703
            drawingContext.DrawRectangle(new VisualBrush(element), null,
5704
                new Rect(new Point(0, 0), new Point(element.ActualWidth, element.ActualHeight)));
5705
            drawingContext.Close();
5706
5707
            // 비트맵으로 변환합니다.
5708
            RenderTargetBitmap target =
5709
                new RenderTargetBitmap((int)element.ActualWidth, (int)element.ActualHeight,
5710
                96, 96, System.Windows.Media.PixelFormats.Pbgra32);
5711
5712
            target.Render(drawingVisual);
5713
            return target;
5714
        }
5715
5716 233ef333 taeseongkim
        private System.Drawing.Bitmap GetBitmap(BitmapSource source)
5717 53880c83 ljiyeon
        {
5718
            System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(source.PixelWidth, source.PixelHeight, System.Drawing.Imaging.PixelFormat.Format32bppPArgb);
5719
            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);
5720
            source.CopyPixels(Int32Rect.Empty, data.Scan0, data.Height * data.Stride, data.Stride);
5721
            bmp.UnlockBits(data);
5722
            return bmp;
5723
        }
5724 233ef333 taeseongkim
5725 53880c83 ljiyeon
        public string symbolname = null;
5726
        public bool symbolsvg = true;
5727
        public bool symbolpng = true;
5728
5729
        public void Save_Symbol_Capture(BitmapSource source, int x, int y, int width, int height)
5730
        {
5731
            System.Drawing.Bitmap image = GetBitmap(source);
5732
            //흰색 제거
5733
            //image.MakeTransparent(System.Drawing.Color.White);
5734
5735
            var imageStream = new System.IO.MemoryStream();
5736
            byte[] imageBytes = null;
5737
            using (imageStream)
5738
            {
5739
                image.Save(imageStream, System.Drawing.Imaging.ImageFormat.Png);
5740
                // test.Save(@"E:\test.png", System.Drawing.Imaging.ImageFormat.Png);
5741
                imageStream.Position = 0;
5742
                imageBytes = imageStream.ToArray();
5743
            }
5744
5745
            SymbolPrompt symbolPrompt = new SymbolPrompt();
5746
5747
            RadWindow CheckPop = new RadWindow();
5748
            //Alert check = new Alert(Msg);
5749
5750
            CheckPop = new RadWindow
5751
            {
5752
                MinWidth = 400,
5753
                MinHeight = 100,
5754 233ef333 taeseongkim
                // Closed = (obj, args) => this.SymbolMarkupNamePromptClose(imageBytes, "", args),
5755 53880c83 ljiyeon
                Header = "Alert",
5756
                Content = symbolPrompt,
5757 233ef333 taeseongkim
                //DialogResult =
5758 53880c83 ljiyeon
                ResizeMode = System.Windows.ResizeMode.NoResize,
5759
                WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen,
5760
                IsTopmost = true,
5761
            };
5762
            CheckPop.Closed += (obj, args) => this.SymbolMarkupNamePromptClose(imageBytes, "", args);
5763
            StyleManager.SetTheme(CheckPop, new Office2013Theme());
5764
            CheckPop.ShowDialog();
5765
5766
            /*
5767
            DialogParameters parameters = new DialogParameters()
5768
            {
5769
                Owner = Application.Current.MainWindow,
5770
                Closed = (obj, args) => this.SymbolMarkupNamePromptClose(imageBytes, "", args),
5771
                DefaultPromptResultValue = "Custom State",
5772
                Content = "Name :",
5773
                Header = "Insert Custom Symbol Name",
5774
                Theme = new VisualStudio2013Theme(),
5775
                ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 },
5776 233ef333 taeseongkim
            };
5777 53880c83 ljiyeon
            RadWindow.Prompt(parameters);
5778
            */
5779
        }
5780
5781 787a4489 KangIngu
        public void Save_Capture(BitmapSource source, int x, int y, int width, int height)
5782
        {
5783
            KCOM.Common.Converter.FileStreamToBase64 streamToBase64 = new Common.Converter.FileStreamToBase64();
5784
            KCOMDataModel.DataModel.CHECK_LIST check_;
5785
            string Result = streamToBase64.ImageToBase64(source);
5786
            KCOMDataModel.DataModel.CHECK_LIST Item = new KCOMDataModel.DataModel.CHECK_LIST();
5787 6c781c0c djkim
            string projectno = App.ViewInfo.ProjectNO;
5788
            string checklist_id = ViewerDataModel.Instance.CheckList_ID;
5789 0f065e57 ljiyeon
5790 664ea2e1 taeseongkim
            //Logger.sendReqLog("GetCheckList", projectno + "," + checklist_id, 1);
5791 6c781c0c djkim
            Item = this.BaseClient.GetCheckList(projectno, checklist_id);
5792 90e7968d ljiyeon
            if (Item != null)
5793 0f065e57 ljiyeon
            {
5794 664ea2e1 taeseongkim
                //Logger.sendResLog("GetCheckList", "TRUE", 1);
5795 0f065e57 ljiyeon
            }
5796
            else
5797
            {
5798 664ea2e1 taeseongkim
                //Logger.sendResLog("GetCheckList", "FALSE", 1);
5799 0f065e57 ljiyeon
            }
5800 90e7968d ljiyeon
5801 6c781c0c djkim
            if (Item == null)
5802 787a4489 KangIngu
            {
5803 6c781c0c djkim
                check_ = new KCOMDataModel.DataModel.CHECK_LIST
5804 787a4489 KangIngu
                {
5805 24678e06 humkyung
                    ID = Commons.shortGuid(),
5806 6c781c0c djkim
                    USER_ID = App.ViewInfo.UserID,
5807
                    IMAGE_URL = Result,
5808
                    IMAGE_ANCHOR = x + "," + y + "," + width + "," + height,
5809
                    PAGENUMBER = this.pageNavigator.CurrentPage.PageNumber,
5810
                    REVISION = ViewerDataModel.Instance.SystemMain.dzMainMenu.CurrentDoc.Revision,
5811
                    DOCUMENT_ID = App.ViewInfo.DocumentItemID,
5812
                    PROJECT_NO = App.ViewInfo.ProjectNO,
5813
                    STATUS = "False",
5814
                    CREATE_TIME = DateTime.Now,
5815
                    UPDATE_TIME = DateTime.Now,
5816
                    DOCUMENT_NO = _DocItem.DOCUMENT_NO,
5817
                    STATUS_DESC_OPEN = "Vendor 반영 필요",
5818
                };
5819 274cde11 taeseongkim
                Logger.sendReqLog("AddCheckList", projectno + "," + check_, 1);
5820 664ea2e1 taeseongkim
                //Logger.sendResLog("AddCheckList", this.BaseClient.AddCheckList(projectno, check_).ToString(), 1);
5821 274cde11 taeseongkim
                this.BaseClient.AddCheckList(projectno, check_);
5822 787a4489 KangIngu
            }
5823 6c781c0c djkim
            else
5824
            {
5825
                Item.IMAGE_URL = Result;
5826
                Item.IMAGE_ANCHOR = x + "," + y + "," + width + "," + height;
5827 90e7968d ljiyeon
                Item.PAGENUMBER = this.pageNavigator.CurrentPage.PageNumber;
5828 274cde11 taeseongkim
                Logger.sendReqLog("SaveCheckList", projectno + "," + checklist_id + "," + Item, 1);
5829 664ea2e1 taeseongkim
                //Logger.sendResLog("SaveCheckList", this.BaseClient.SaveCheckList(projectno, checklist_id, Item).ToString(), 1);
5830 274cde11 taeseongkim
                this.BaseClient.SaveCheckList(projectno, checklist_id, Item);
5831 6c781c0c djkim
            }
5832 787a4489 KangIngu
        }
5833
5834
        public void Set_Capture()
5835 90e7968d ljiyeon
        {
5836 c7fde400 taeseongkim
            double x = CanvasDrawingMouseDownPoint.X;
5837
            double y = CanvasDrawingMouseDownPoint.Y;
5838 787a4489 KangIngu
            double width = dragCaptureBorder.Width;
5839
            double height = dragCaptureBorder.Height;
5840
5841
            if (width > 5 || height > 5)
5842
            {
5843
                canvasImage = ConverterBitmapImage(zoomAndPanCanvas);
5844
                BitmapSource source = CutAreaToImage((int)x, (int)y, (int)width, (int)height);
5845
                Save_Capture(source, (int)x, (int)y, (int)width, (int)height);
5846
            }
5847
        }
5848 233ef333 taeseongkim
5849
        #endregion 캡쳐 기능
5850 787a4489 KangIngu
5851
        public Multi_Undo_data Control_Style(CommentUserInfo control)
5852
        {
5853
            multi_Undo_Data = new Multi_Undo_data();
5854
5855
            multi_Undo_Data.Markup = control;
5856
5857
            if ((control as IShapeControl) != null)
5858
            {
5859
                multi_Undo_Data.paint = (control as IShapeControl).Paint;
5860
            }
5861
            if ((control as IDashControl) != null)
5862
            {
5863
                multi_Undo_Data.DashSize = (control as IDashControl).DashSize;
5864
            }
5865
            if ((control as IPath) != null)
5866
            {
5867
                multi_Undo_Data.LineSize = (control as IPath).LineSize;
5868
            }
5869
            if ((control as UIElement) != null)
5870
            {
5871
                multi_Undo_Data.Opacity = (control as UIElement).Opacity;
5872
            }
5873
5874
            return multi_Undo_Data;
5875
        }
5876
5877 ac4f1e13 taeseongkim
        private async void Comment_Move(object sender, MouseButtonEventArgs e)
5878 787a4489 KangIngu
        {
5879 d2279f18 taeseongkim
            string Select_ID = (((e.Source as Telerik.Windows.Controls.RadButton).DataContext) as IKCOM.MarkupInfoItem).MarkupInfoID;
5880 787a4489 KangIngu
            foreach (var items in ViewerDataModel.Instance._markupInfoRevList)
5881
            {
5882 4f017ed3 taeseongkim
                if (items.MarkupInfoID == Select_ID)
5883 787a4489 KangIngu
                {
5884
                    foreach (var item in items.MarkupList)
5885
                    {
5886
                        if (item.PageNumber == pageNavigator.CurrentPage.PageNumber)
5887
                        {
5888 a1e2ba68 taeseongkim
                            await MarkupParser.ParseExAsync(App.BaseAddress, ViewerDataModel.Instance.CancellationToken(), App.ViewInfo.ProjectNO, item.Data, Common.ViewerDataModel.Instance.MarkupControls_USER,ViewerDataModel.Instance.PageAngle, "#FFFF0000", "",
5889 233ef333 taeseongkim
                                 items.MarkupInfoID, Commons.shortGuid());
5890 787a4489 KangIngu
                        }
5891
                    }
5892
                }
5893
            }
5894
        }
5895 d62c0439 humkyung
5896 f959ea6f humkyung
        /// <summary>
5897
        /// convert inkcontrol to polygoncontrol
5898
        /// </summary>
5899
        public void ConvertInkControlToPolygon()
5900 787a4489 KangIngu
        {
5901
            if (inkBoard.Strokes.Count > 0)
5902
            {
5903
                inkBoard.Strokes.ToList().ForEach(stroke =>
5904
                {
5905
                    InkToPath ip = new InkToPath();
5906 f959ea6f humkyung
5907 787a4489 KangIngu
                    List<Point> inkPointSet = new List<Point>();
5908 f959ea6f humkyung
                    inkPointSet.AddRange(ip.GetPointsFrom(stroke));
5909
5910
                    PolygonControl pc = new PolygonControl()
5911 787a4489 KangIngu
                    {
5912 fa48eb85 taeseongkim
                        CommentAngle = 0,
5913 f959ea6f humkyung
                        PointSet = inkPointSet,
5914 787a4489 KangIngu
                        ControlType = ControlType.Ink
5915
                    };
5916 f959ea6f humkyung
                    pc.StartPoint = inkPointSet[0];
5917
                    pc.EndPoint = inkPointSet[inkPointSet.Count - 1];
5918
                    pc.LineSize = 3;
5919
                    pc.CommentID = Commons.shortGuid();
5920
                    pc.StrokeColor = new SolidColorBrush(Colors.Red);
5921 787a4489 KangIngu
5922 f959ea6f humkyung
                    if (pc.PointSet.Count > 0)
5923
                    {
5924
                        CreateCommand.Instance.Execute(pc);
5925 787a4489 KangIngu
                        ViewerDataModel.Instance.MarkupControls_USER.Add(pc);
5926
                    }
5927
                });
5928 f959ea6f humkyung
                inkBoard.Strokes.Clear();
5929 787a4489 KangIngu
            }
5930
        }
5931 17a22987 KangIngu
5932 4318fdeb KangIngu
        /// <summary>
5933 e66f22eb KangIngu
        /// 캔버스에 그릴때 모든 포인트가 캔버스를 벗어 났는지 체크하여 넘겨줌
5934
        /// </summary>
5935
        /// <author>ingu</author>
5936
        /// <date>2018.06.05</date>
5937
        /// <param name="getPoint"></param>
5938
        /// <returns></returns>
5939
        private bool IsGetoutpoint(Point getPoint)
5940 670a4be2 humkyung
        {
5941 e66f22eb KangIngu
            if (getPoint == new Point())
5942 670a4be2 humkyung
            {
5943 e66f22eb KangIngu
                ViewerDataModel.Instance.MarkupControls_USER.Remove(currentControl);
5944
                currentControl = null;
5945
                return true;
5946 670a4be2 humkyung
            }
5947
5948 e66f22eb KangIngu
            return false;
5949 670a4be2 humkyung
        }
5950 e66f22eb KangIngu
5951 5b46312f djkim
        private void zoomAndPanControl_DragOver(object sender, DragEventArgs e)
5952
        {
5953
            e.Effects = DragDropEffects.Copy;
5954
        }
5955
5956
        private void zoomAndPanControl_DragEnter(object sender, DragEventArgs e)
5957
        {
5958
            e.Effects = DragDropEffects.Copy;
5959
        }
5960
5961
        private void zoomAndPanControl_DragLeave(object sender, DragEventArgs e)
5962
        {
5963
            e.Effects = DragDropEffects.None;
5964
        }
5965
5966 92442e4a taeseongkim
        private void ZoomAndPanControl_ScaleChanged(object sender, RoutedEventArgs e)
5967 cdfb57ff taeseongkim
        {
5968
            var pageWidth = ViewerDataModel.Instance.ImageViewWidth;
5969
            var pageHeight = ViewerDataModel.Instance.ImageViewHeight;
5970
5971 92442e4a taeseongkim
            ScaleImage(pageWidth, pageHeight);
5972
        }
5973
5974
        /// <summary>
5975
        /// 페이지를 scale의 변화에 맞춰서 DecodePixel을 변경한다.
5976
        /// </summary>
5977
        /// <param name="pageWidth">원본 사이즈</param>
5978
        /// <param name="pageHeight">원본 사이즈</param>
5979
        /// <returns></returns>
5980 233ef333 taeseongkim
        private void ScaleImage(double pageWidth, double pageHeight)
5981 92442e4a taeseongkim
        {
5982 7e2d682c taeseongkim
            //mainPanel.Scale = zoomAndPanControl.ContentScale;// (zoomAndPanControl.ContentScale >= 0.1) ? 1 : zoomAndPanControl.ContentScale;
5983 cdfb57ff taeseongkim
        }
5984
5985 d0eda156 ljiyeon
        private void thumbnailPanel_SizeChanged(object sender, SizeChangedEventArgs e)
5986
        {
5987
            CommonLib.Common.WriteConfigString("SetThumbnail", "WIDTH", thumbnailPanel.Width.ToString());
5988
        }
5989
5990 53deabaf taeseongkim
        private void gridViewMarkupAllSelect_Click(object sender, RoutedEventArgs e)
5991
        {
5992
            var checkbox = (sender as CheckBox);
5993
5994
            if (checkbox != null)
5995
            {
5996
                if (checkbox.IsChecked.GetValueOrDefault())
5997
                {
5998
                    gridViewMarkup.SelectAll();
5999
                }
6000
                else
6001
                {
6002
                    gridViewMarkup.UnselectAll();
6003
                }
6004
            }
6005
        }
6006 c8dd192f taeseongkim
        
6007 e6a9ddaf humkyung
        /*
6008 5b46312f djkim
        private void zoomAndPanControl_Drop(object sender, DragEventArgs e)
6009
        {
6010 90e7968d ljiyeon
            try
6011 5b46312f djkim
            {
6012 90e7968d ljiyeon
                if (e.Data.GetDataPresent(typeof(string)))
6013
                {
6014
                    this.getCurrentPoint = e.GetPosition(drawingRotateCanvas);
6015
                    string dragData = e.Data.GetData(typeof(string)) as string;
6016
                    Move_Symbol(sender, dragData);
6017
                }
6018 5b46312f djkim
            }
6019 90e7968d ljiyeon
            catch (Exception ex)
6020
            {
6021 664ea2e1 taeseongkim
                //Logger.sendResLog("zoomAndPanControl_Drop", ex.ToString(), 0);
6022 233ef333 taeseongkim
            }
6023 5b46312f djkim
        }
6024 e6a9ddaf humkyung
        */
6025 787a4489 KangIngu
    }
6026 f65e6c02 taeseongkim
6027
    public class testItem
6028
    {
6029
        public string Title { get; set; }
6030
    }
6031 233ef333 taeseongkim
}
클립보드 이미지 추가 (최대 크기: 500 MB)