프로젝트

일반

사용자정보

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

markus / KCOM / Views / MainMenu.xaml.cs @ 1305c420

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