markus / KCOM / Controls / Symbol.xaml.cs @ 02a9f323
이력 | 보기 | 이력해설 | 다운로드 (45.4 KB)
1 |
using IKCOM; |
---|---|
2 |
using KCOM.Common; |
3 |
using KCOM.Events; |
4 |
using KCOMDataModel.Common; |
5 |
using KCOMDataModel.DataModel; |
6 |
using MarkupToPDF.Common; |
7 |
using MarkupToPDF.Controls.Parsing; |
8 |
using System; |
9 |
using System.Collections.Generic; |
10 |
using System.ComponentModel; |
11 |
using System.Linq; |
12 |
using System.Text; |
13 |
using System.Threading.Tasks; |
14 |
using System.Windows; |
15 |
using System.Windows.Controls; |
16 |
using System.Windows.Data; |
17 |
using System.Windows.Documents; |
18 |
using System.Windows.Input; |
19 |
using System.Windows.Media; |
20 |
using System.Windows.Media.Imaging; |
21 |
using System.Windows.Navigation; |
22 |
using System.Windows.Shapes; |
23 |
using Telerik.Windows.Controls; |
24 |
using Telerik.Windows.Controls.DragDrop; |
25 |
|
26 |
namespace KCOM.Controls |
27 |
{ |
28 |
public class Symbol_Custom |
29 |
{ |
30 |
public string ID { get; set; } |
31 |
public string Name { get; set; } |
32 |
public string ImageUri { get; set; } |
33 |
} |
34 |
|
35 |
/// <summary> |
36 |
/// Symbol.xaml에 대한 상호 작용 논리 |
37 |
/// </summary> |
38 |
public partial class Symbol : UserControl |
39 |
{ |
40 |
AdornerFinal finalItem; |
41 |
bool IsMouseDown = false; |
42 |
string moveItem_id = ""; |
43 |
public string filename { get; set; } |
44 |
bool _Initialize = false; |
45 |
|
46 |
public Symbol() |
47 |
{ |
48 |
//App.splashString(ISplashMessage.SYMBOL); |
49 |
InitializeComponent(); |
50 |
|
51 |
//RadDragAndDropManager.AddDragInfoHandler(lstSymbolPrivate, OnDragPrivateInfo); |
52 |
//RadDragAndDropManager.AddDragQueryHandler(lstSymbolPrivate, OnDragPrivateQuery); |
53 |
//RadDragAndDropManager.SetAllowDrag(lstSymbolPrivate, true); |
54 |
this.Loaded += Symbol_Loaded; |
55 |
|
56 |
} |
57 |
|
58 |
|
59 |
|
60 |
private async void Symbol_Loaded(object sender, RoutedEventArgs e) |
61 |
{ |
62 |
if (!App.IsDesignMode) |
63 |
{ |
64 |
if (!_Initialize) |
65 |
{ |
66 |
_Initialize = true; |
67 |
await DataBindAsync(); |
68 |
|
69 |
} |
70 |
} |
71 |
} |
72 |
|
73 |
private void OnDragPrivateInfo(object sender, DragDropEventArgs e) |
74 |
{ |
75 |
} |
76 |
|
77 |
private void OnDragPrivateQuery(object sender, DragDropQueryEventArgs e) |
78 |
{ |
79 |
if (e.Options.Status == DragStatus.DragQuery) |
80 |
{ |
81 |
//var draggedListBoxItem = (e.Options.Source as System.Windows.Controls.ListBox).SelectedItem; |
82 |
//BitmapImage im = new BitmapImage(new Uri((draggedListBoxItem as DeepView.ServiceDeepView_Symbol.SymbolPrivate).ImageUri)); |
83 |
//ImageSource _source = im; |
84 |
//Image img = new Image(); |
85 |
//img.Source = _source; |
86 |
|
87 |
//e.Options.Payload = im; |
88 |
//var dragCue = new Image(); |
89 |
//dragCue.Source = img.Source; |
90 |
//dragCue.Width = 0; |
91 |
//dragCue.Height = 0; |
92 |
//e.Options.DragCue = dragCue; |
93 |
|
94 |
|
95 |
//PayLoadAdorner = new AdornerFinal(); |
96 |
//DeepView.ServiceDeepView_Symbol.SymbolPrivate tempDragableControl = (e.Options.Source as System.Windows.Controls.ListBox).SelectedItem as DeepView.ServiceDeepView_Symbol.SymbolPrivate; |
97 |
//var xamldata = tempDragableControl.Data; |
98 |
////this.DeepLayer.markupParse(xamldata, this.DeepLayer._TempLayer, "복사된 데이터_이름으로 수정해야함"); |
99 |
//PayLoadAdorner = this.DeepLayer.markupParseToAdorner(xamldata, this.DeepLayer._SelectLayer, ""); |
100 |
//this.DeepLayer._SelectLayer.Children.Add(PayLoadAdorner); |
101 |
} |
102 |
|
103 |
e.QueryResult = true; |
104 |
e.Handled = true; |
105 |
} |
106 |
|
107 |
private async Task DataBindAsync() |
108 |
{ |
109 |
try |
110 |
{ |
111 |
List<Symbol_Custom> PrivateSymbolList = new List<Symbol_Custom>(); |
112 |
|
113 |
var symbol_Private = await ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseTaskClient.GetSymbolListAsync(App.ViewInfo.UserID); |
114 |
foreach (var item in symbol_Private) |
115 |
{ |
116 |
var Custom = new Symbol_Custom(); |
117 |
Custom.Name = item.NAME; |
118 |
Custom.ImageUri = CommonLib.Common.IPReplace(item.IMAGE_URL.Replace("//","/").Replace(":/", "://"), App.isExternal); |
119 |
Custom.ID = item.ID; |
120 |
PrivateSymbolList.Add(Custom); |
121 |
} |
122 |
lstSymbolPrivate.ItemsSource = PrivateSymbolList; |
123 |
} |
124 |
catch (Exception ex) |
125 |
{ |
126 |
System.Diagnostics.Debug.WriteLine(ex.ToString()); |
127 |
} |
128 |
|
129 |
deptlist.ItemsSource = await ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseTaskClient.GetPublicSymbolDeptListAsync(); |
130 |
|
131 |
List<SYMBOL_PUBLIC> symbol_Public; |
132 |
if (deptlist.SelectedValue != null) |
133 |
{ |
134 |
symbol_Public = await ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseTaskClient.GetPublicSymbolListAsync(deptlist.SelectedValue.ToString()); |
135 |
} |
136 |
else |
137 |
{ |
138 |
symbol_Public = await ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseTaskClient.GetPublicSymbolListAsync(null); |
139 |
} |
140 |
|
141 |
if (symbol_Public != null) |
142 |
{ |
143 |
var PublicSymbolList = new List<Symbol_Custom>(); |
144 |
foreach (var item in symbol_Public) |
145 |
{ |
146 |
var Custom = new Symbol_Custom(); |
147 |
Custom.Name = item.NAME; |
148 |
Custom.ImageUri = CommonLib.Common.IPReplace(item.IMAGE_URL.Replace("//", "/").Replace(":/", "://"), App.isExternal); |
149 |
Custom.ID = item.ID; |
150 |
PublicSymbolList.Add(Custom); |
151 |
} |
152 |
|
153 |
lstSymbolPublic.ItemsSource = PublicSymbolList; |
154 |
} |
155 |
} |
156 |
|
157 |
public async Task<PngBitmapEncoder> symImageAsync_old(string data,double PageAngle) |
158 |
{ |
159 |
Canvas _canvas = new Canvas(); |
160 |
_canvas.Background = Brushes.White; |
161 |
_canvas.Width = finalItem.BorderSize.Width; |
162 |
_canvas.Height = finalItem.BorderSize.Height; |
163 |
await MarkupParser.ParseAsync(App.BaseAddress, App.ViewInfo.ProjectNO, data, _canvas, PageAngle, "#FFFF0000", "", ViewerDataModel.Instance.NewMarkupCancelToken(), |
164 |
STAMP_Contents: App.SystemInfo.STAMP_CONTENTS); |
165 |
|
166 |
BitmapEncoder encoder = new PngBitmapEncoder(); |
167 |
|
168 |
|
169 |
RenderTargetBitmap renderBitmap = new RenderTargetBitmap((int)_canvas.Width + 50, (int)_canvas.Height + 50, 96d, 96d, PixelFormats.Pbgra32); |
170 |
|
171 |
DrawingVisual dv = new DrawingVisual(); |
172 |
|
173 |
_canvas.Measure(new System.Windows.Size(finalItem.BorderSize.Width + 50, finalItem.BorderSize.Height + 50)); |
174 |
//_canvas.Arrange(new Rect(new System.Windows.Point { X = -finalItem.BorderSize.X - 50, Y = -finalItem.BorderSize.Y - 50 }, new Point(finalItem.BorderSize.Width + 20, finalItem.BorderSize.Height + 20))); |
175 |
_canvas.Arrange(new Rect(new System.Windows.Point { X = -finalItem.BorderSize.X - 20, Y = -finalItem.BorderSize.Y - 20 }, new Point(finalItem.BorderSize.Width + 20, finalItem.BorderSize.Height + 20))); |
176 |
|
177 |
using (DrawingContext ctx = dv.RenderOpen()) |
178 |
{ |
179 |
VisualBrush vb = new VisualBrush(_canvas); |
180 |
//ctx.DrawRectangle(vb, null, new Rect(new System.Windows.Point { X = -finalItem.BorderSize.X - 20, Y = -finalItem.BorderSize.Y - 20 }, new Point(finalItem.BorderSize.Width + 20, finalItem.BorderSize.Height + 20))); |
181 |
ctx.DrawRectangle(vb, null, new Rect(new System.Windows.Point { X = -finalItem.BorderSize.X, Y = -finalItem.BorderSize.Y }, new Point(finalItem.BorderSize.Width + 20, finalItem.BorderSize.Height + 20))); |
182 |
} |
183 |
|
184 |
try |
185 |
{ |
186 |
renderBitmap.Render(dv); |
187 |
|
188 |
GC.Collect(); |
189 |
GC.WaitForPendingFinalizers(); |
190 |
GC.Collect(); |
191 |
//bitmap.Render(controlToConvert); |
192 |
// encode png data |
193 |
PngBitmapEncoder pngEncoder = new PngBitmapEncoder(); |
194 |
// puch rendered bitmap into it |
195 |
pngEncoder.Interlace = PngInterlaceOption.Off; |
196 |
pngEncoder.Frames.Add(BitmapFrame.Create(renderBitmap)); |
197 |
return pngEncoder; |
198 |
|
199 |
} |
200 |
catch //(Exception ex) |
201 |
{ |
202 |
return null; |
203 |
} |
204 |
|
205 |
} |
206 |
|
207 |
public async Task<PngBitmapEncoder> symImageAsync(string data, double PageAngle) |
208 |
{ |
209 |
|
210 |
Canvas _canvas = new Canvas(); |
211 |
_canvas.Background = Brushes.White; |
212 |
|
213 |
List<Rect> rects = new List<Rect>(); |
214 |
|
215 |
finalItem.Members.ForEach(member => |
216 |
{ |
217 |
if(member?.DrawingData is MarkupToPDF.ICommentRect comment) |
218 |
{ |
219 |
rects.Add(comment.GetCommentRect()); |
220 |
} |
221 |
}); |
222 |
|
223 |
var rect = MathHelper.CombineRects(rects); |
224 |
|
225 |
_canvas.Width = rect.Width; |
226 |
_canvas.Height = rect.Height; |
227 |
|
228 |
await MarkupParser.ParseAsync(App.BaseAddress, App.ViewInfo.ProjectNO, data, _canvas, PageAngle, "#FFFF0000", "", ViewerDataModel.Instance.NewMarkupCancelToken(), |
229 |
STAMP_Contents: App.SystemInfo.STAMP_CONTENTS); |
230 |
|
231 |
BitmapEncoder encoder = new PngBitmapEncoder(); |
232 |
RenderTargetBitmap renderBitmap = new RenderTargetBitmap((int)rect.Width, (int)rect.Height, 96d, 96d, PixelFormats.Pbgra32); |
233 |
|
234 |
DrawingVisual dv = new DrawingVisual(); |
235 |
//Window window = new Window(); |
236 |
//window.Content = _canvas; |
237 |
//var result = window.ShowDialog(); |
238 |
//if(result.GetValueOrDefault()) |
239 |
//{ |
240 |
|
241 |
//} |
242 |
|
243 |
_canvas.Measure(rect.Size); |
244 |
_canvas.Arrange(new Rect(new System.Windows.Point { X = -rect.X + 35, Y = -rect.Y + 35 }, new Point(rect.Width + 35, rect.Height + 35))); |
245 |
|
246 |
using (DrawingContext ctx = dv.RenderOpen()) |
247 |
{ |
248 |
VisualBrush vb = new VisualBrush(_canvas); |
249 |
ctx.DrawRectangle(vb, null, new Rect(new System.Windows.Point { X = -rect.X, Y = -rect.Y }, new Point(rect.Width, rect.Height))); |
250 |
} |
251 |
Window window2 = new Window(); |
252 |
window2.Content = _canvas; |
253 |
var result2 = window2.ShowDialog(); |
254 |
if (result2.GetValueOrDefault()) |
255 |
{ |
256 |
|
257 |
} |
258 |
try |
259 |
{ |
260 |
renderBitmap.Render(dv); |
261 |
|
262 |
GC.Collect(); |
263 |
GC.WaitForPendingFinalizers(); |
264 |
GC.Collect(); |
265 |
//bitmap.Render(controlToConvert); |
266 |
// encode png data |
267 |
PngBitmapEncoder pngEncoder = new PngBitmapEncoder(); |
268 |
// puch rendered bitmap into it |
269 |
pngEncoder.Interlace = PngInterlaceOption.Off; |
270 |
pngEncoder.Frames.Add(BitmapFrame.Create(renderBitmap)); |
271 |
return pngEncoder; |
272 |
|
273 |
} |
274 |
catch //(Exception ex) |
275 |
{ |
276 |
return null; |
277 |
} |
278 |
|
279 |
} |
280 |
|
281 |
public void DialogMessage_Alert(string content, string header) |
282 |
{ |
283 |
App.splashScreen.Close(); |
284 |
|
285 |
DialogParameters parameters = new DialogParameters() |
286 |
{ |
287 |
Owner = Application.Current.MainWindow, |
288 |
Content = new TextBlock() |
289 |
{ |
290 |
MinWidth = 400, |
291 |
FontSize = 11, |
292 |
Text = content, |
293 |
TextWrapping = System.Windows.TextWrapping.Wrap |
294 |
}, |
295 |
Header = header, |
296 |
Theme = new VisualStudio2013Theme(), |
297 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
298 |
}; |
299 |
RadWindow.Alert(parameters); |
300 |
} |
301 |
|
302 |
#region Event |
303 |
|
304 |
#region Private Symbol Add Event |
305 |
private void Create_Symbol(object sender, RoutedEventArgs e) |
306 |
{ |
307 |
MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn markupReturn = new MarkupToPDF.Controls.Parsing.MarkupParser.MarkupReturn(); |
308 |
|
309 |
if (Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.SelectLayer.Children.Count < 1) //선택된 것이 없으면 |
310 |
{ |
311 |
DialogMessage_Alert("Please Select Controls", "Alert"); |
312 |
} |
313 |
else //선택된 것이 있으면 |
314 |
{ |
315 |
string MarkupData = ""; |
316 |
finalItem = new AdornerFinal(); |
317 |
|
318 |
foreach (var item in Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.SelectLayer.Children) |
319 |
{ |
320 |
if (item.GetType().Name == "AdornerFinal") |
321 |
{ |
322 |
finalItem = (item as Controls.AdornerFinal); |
323 |
foreach (var InnerItem in (item as Controls.AdornerFinal).Members.Cast<Controls.AdornerMember>()) |
324 |
{ |
325 |
if (!ViewerDataModel.Instance.MarkupControls.Contains(InnerItem.DrawingData)) |
326 |
{ |
327 |
markupReturn = MarkupParser.MarkupToString(InnerItem.DrawingData as MarkupToPDF.Common.CommentUserInfo, App.ViewInfo.UserID); |
328 |
MarkupData += markupReturn.ConvertData; |
329 |
} |
330 |
} |
331 |
} |
332 |
} |
333 |
DialogParameters parameters = new DialogParameters() |
334 |
{ |
335 |
Owner = Application.Current.MainWindow, |
336 |
Closed = (obj, args) => this.MarkupNamePromptClose(MarkupData, args), |
337 |
DefaultPromptResultValue = "Custom State", |
338 |
Content = "Name :", |
339 |
Header = "Insert Custom Symbol Name", |
340 |
Theme = new VisualStudio2013Theme(), |
341 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
342 |
}; |
343 |
RadWindow.Prompt(parameters); |
344 |
} |
345 |
|
346 |
} |
347 |
#endregion |
348 |
|
349 |
#region Symbol Add Close Event |
350 |
private async void MarkupNamePromptClose(string data, WindowClosedEventArgs args) |
351 |
{ |
352 |
try |
353 |
{ |
354 |
if (args.PromptResult != null) |
355 |
{ |
356 |
if (args.DialogResult.Value) |
357 |
{ |
358 |
PngBitmapEncoder _Encoder = null; |
359 |
|
360 |
if (finalItem.Members.Any(x=> x.DrawingData is MarkupToPDF.ICommentRect comment)) |
361 |
{ |
362 |
_Encoder = await symImageAsync(data, ViewerDataModel.Instance.MarkupAngle); |
363 |
} |
364 |
else |
365 |
{ |
366 |
_Encoder = await symImageAsync_old(data, ViewerDataModel.Instance.MarkupAngle); |
367 |
} |
368 |
|
369 |
System.IO.MemoryStream fs = new System.IO.MemoryStream(); |
370 |
_Encoder.Save(fs); |
371 |
System.Drawing.Image ImgOut = System.Drawing.Image.FromStream(fs); |
372 |
|
373 |
byte[] Img_byte = fs.ToArray(); |
374 |
|
375 |
kr.co.devdoftech.cloud.FileUpload fileUploader = App.FileUploader; |
376 |
filename = fileUploader.RunSymbol(App.ViewInfo.ProjectNO, Common.ViewerDataModel.Instance.SystemMain.dzMainMenu._DocItem.DOCUMENT_NO, App.ViewInfo.UserID, Commons.ShortGuid() + ".png", Img_byte); |
377 |
Check_Uri.UriCheck(filename); |
378 |
if (RadTab.SelectedIndex == 0) |
379 |
{ |
380 |
SymbolSave(args.PromptResult, filename, data); |
381 |
} |
382 |
else |
383 |
{ |
384 |
SymbolSave_Public(args.PromptResult, filename, data, Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.userData.DEPARTMENT); |
385 |
} |
386 |
|
387 |
await DataBindAsync(); |
388 |
} |
389 |
} |
390 |
} |
391 |
catch(Exception ex) |
392 |
{ |
393 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.DialogMessage_Alert("" + ex, "Alert"); |
394 |
} |
395 |
} |
396 |
#endregion |
397 |
|
398 |
public void SymbolSave(string Name, string Url, string Data) |
399 |
{ |
400 |
try |
401 |
{ |
402 |
SYMBOL_PRIVATE symbol_private = new SYMBOL_PRIVATE |
403 |
{ |
404 |
ID = Commons.ShortGuid(), |
405 |
MEMBER_USER_ID = App.ViewInfo.UserID, |
406 |
NAME = Name, |
407 |
IMAGE_URL = Url, |
408 |
DATA = Data |
409 |
}; |
410 |
|
411 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.SaveSymbolCompleted += BaseClient_SaveSymbolCompleted; |
412 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.SaveSymbolAsync(symbol_private); |
413 |
} |
414 |
catch (Exception) |
415 |
{ |
416 |
throw; |
417 |
} |
418 |
} |
419 |
|
420 |
public void SymbolSave_Public(string Name, string Url, string Data, string Department) |
421 |
{ |
422 |
try |
423 |
{ |
424 |
SYMBOL_PUBLIC symbol_public = new SYMBOL_PUBLIC |
425 |
{ |
426 |
ID = Commons.ShortGuid(), |
427 |
DEPARTMENT = Department, |
428 |
NAME = Name, |
429 |
IMAGE_URL = Url, |
430 |
DATA = Data |
431 |
}; |
432 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.AddPublicSymbolCompleted += BaseClient_AddPublicSymbolCompleted; |
433 |
//Logger.sendReqLog("AddPublicSymbol: ", symbol_public.ID + "," + symbol_public.DEPARTMENT + "," + symbol_public.NAME + "," + symbol_public.IMAGE_URL + "," + symbol_public.DATA, 1); |
434 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.AddPublicSymbol(symbol_public); |
435 |
} |
436 |
catch (Exception) |
437 |
{ |
438 |
throw; |
439 |
} |
440 |
} |
441 |
|
442 |
private async void BaseClient_AddPublicSymbolCompleted(object sender, ServiceDeepView.AddPublicSymbolCompletedEventArgs e) |
443 |
{ |
444 |
await DataBindAsync(); |
445 |
} |
446 |
|
447 |
private async void BaseClient_SaveSymbolCompleted(object sender, ServiceDeepView.SaveSymbolCompletedEventArgs e) |
448 |
{ |
449 |
await DataBindAsync(); |
450 |
} |
451 |
|
452 |
#region Private Symbol Delete Event |
453 |
private void Remove_Symbol(object sender, RoutedEventArgs e) |
454 |
{ |
455 |
if (lstSymbolPrivate.SelectedItem == null) |
456 |
{ |
457 |
DialogMessage_Alert("Please Select Symbol", "Alert"); |
458 |
return; |
459 |
} |
460 |
string delItem_ID = (lstSymbolPrivate.SelectedItem as Symbol_Custom).ID; |
461 |
|
462 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.DeleteSymbolCompleted += BaseClient_DeleteSymbolCompleted; |
463 |
//Logger.sendReqLog("DeleteSymbolAsync: ", delItem_ID, 1); |
464 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.DeleteSymbolAsync(delItem_ID, RadTab.SelectedIndex); |
465 |
} |
466 |
#endregion |
467 |
#region Public Symbol Delete Event |
468 |
private void Remove_Symbol_Public(object sender, RoutedEventArgs e) |
469 |
{ |
470 |
if (lstSymbolPublic.SelectedItem == null) |
471 |
{ |
472 |
DialogMessage_Alert("Please Select Symbol", "Alert"); |
473 |
return; |
474 |
} |
475 |
string delItem_ID = (lstSymbolPublic.SelectedItem as Symbol_Custom).ID; |
476 |
|
477 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.DeleteSymbolCompleted += BaseClient_DeleteSymbolCompleted; |
478 |
//Logger.sendReqLog("DeleteSymbolAsync: ", delItem_ID, 1); |
479 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.DeleteSymbolAsync(delItem_ID, RadTab.SelectedIndex); |
480 |
} |
481 |
|
482 |
private async void BaseClient_DeleteSymbolCompleted(object sender, ServiceDeepView.DeleteSymbolCompletedEventArgs e) |
483 |
{ |
484 |
//Logger.sendResLog("DeleteSymbolCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
485 |
await DataBindAsync(); |
486 |
} |
487 |
#endregion |
488 |
|
489 |
public UndoDataGroup UndoDataGroup { get; set; } |
490 |
|
491 |
/// <summary> |
492 |
/// place symbol which has given id to original position which is created |
493 |
/// </summary> |
494 |
/// <date>2018.06.14</date> |
495 |
/// <param name="id"></param> |
496 |
private async Task PlaceSymbol(string id, Point CurrentMousePoint) |
497 |
{ |
498 |
var systemMain = Common.ViewerDataModel.Instance.SystemMain; |
499 |
var mainMenu = systemMain.dzMainMenu; |
500 |
|
501 |
SelectionSet.Instance.UnSelect(mainMenu); /// unselect alreay selected items |
502 |
|
503 |
try |
504 |
{ |
505 |
string Data_ = mainMenu.BaseClient.GetSymbolData(id, RadTab.SelectedIndex); |
506 |
if (!string.IsNullOrEmpty(Data_) && Data_.Contains("|DZ|")) |
507 |
{ |
508 |
List<MarkupToPDF.Common.CommentUserInfo> adornerSet = new List<MarkupToPDF.Common.CommentUserInfo>(); |
509 |
|
510 |
string[] delimiterChars = { "|DZ|" }; |
511 |
string[] data = Data_.Split(delimiterChars, StringSplitOptions.RemoveEmptyEntries); |
512 |
|
513 |
UndoDataGroup = new UndoDataGroup() |
514 |
{ |
515 |
IsUndo = false, |
516 |
Event = EventType.Create |
517 |
}; |
518 |
ViewerDataModel.Instance.UndoDataList.Where(x => x.IsUndo).ToList().ForEach(i => |
519 |
{ |
520 |
ViewerDataModel.Instance.UndoDataList.Remove(i); |
521 |
}); |
522 |
|
523 |
string GroupID = Guid.NewGuid().ToString(); |
524 |
foreach (string parse in data) |
525 |
{ |
526 |
if (!string.IsNullOrEmpty(parse)) |
527 |
{ |
528 |
System.Windows.Controls.Control item = await MarkupParser.ParseExAsync(App.BaseAddress, ViewerDataModel.Instance.NewMarkupCancelToken(),App.ViewInfo.ProjectNO, parse, ViewerDataModel.Instance.MarkupControls_USER, ViewerDataModel.Instance.PageAngle, string.Empty, string.Empty, |
529 |
STAMP_Contents: App.SystemInfo.STAMP_CONTENTS); |
530 |
(item as MarkupToPDF.Common.CommentUserInfo).CommentID = Commons.ShortGuid(); |
531 |
(item as MarkupToPDF.Common.CommentUserInfo).SymbolID = id; |
532 |
(item as MarkupToPDF.Common.CommentUserInfo).GroupID = GroupID; |
533 |
|
534 |
adornerSet.Add(item as MarkupToPDF.Common.CommentUserInfo); |
535 |
|
536 |
var multi_UndoData = this.ParentOfType<MainWindow>().dzMainMenu.Control_Style(item as MarkupToPDF.Common.CommentUserInfo); |
537 |
UndoDataGroup.MarkupDataColl.Add(multi_UndoData); |
538 |
ViewerDataModel.Instance.UndoDataList.Add(UndoDataGroup); |
539 |
} |
540 |
} |
541 |
|
542 |
Controls.AdornerFinal final = new Controls.AdornerFinal(adornerSet); |
543 |
|
544 |
// 마우스 클릭된 페이지 위치 |
545 |
|
546 |
var pageWidth = ViewerDataModel.Instance.ImageViewWidth; |
547 |
var pageHeight = ViewerDataModel.Instance.ImageViewHeight; |
548 |
var angle = Common.ViewerDataModel.Instance.MarkupAngle; |
549 |
|
550 |
Point pagePoint = new Point(pageWidth/2, pageHeight/2); |
551 |
|
552 |
var rotatePoint = Rotate(mainMenu.CanvasDrawingMouseDownPoint,pagePoint,angle); |
553 |
|
554 |
var diff = Point.Subtract(rotatePoint, final.Centeroid); |
555 |
final.TranslateItems(diff.X, diff.Y); |
556 |
|
557 |
mainMenu.SelectLayer.Children.Add(final); |
558 |
|
559 |
//var finalPosition = new Point(Canvas.GetLeft(final), Canvas.GetTop(final)); |
560 |
//Rect rect = new Rect(finalPosition, Point.Add(finalPosition,new Vector(final.Width,final.Height))); |
561 |
|
562 |
//SelectionSet.Instance.SelectItemByRect(final.getAdornerSize(), mainMenu); |
563 |
|
564 |
} |
565 |
else |
566 |
{ |
567 |
await PlaceImageSymbol(id, string.Empty); |
568 |
} |
569 |
} |
570 |
catch (Exception ex) |
571 |
{ |
572 |
this.ParentOfType<MainWindow>().dzMainMenu.DialogMessage_Alert(ex.Message, "Error"); |
573 |
} |
574 |
} |
575 |
|
576 |
|
577 |
//출처: https://icodebroker.tistory.com/3189 [ICODEBROKER] |
578 |
public Point Rotate(Point sourcePoint, Point centerPoint, double rotateAngle) |
579 |
{ |
580 |
Point targetPoint = new Point(); |
581 |
|
582 |
double radian = rotateAngle / 180 * Math.PI; |
583 |
|
584 |
targetPoint.X = Math.Cos(radian) * (sourcePoint.X - centerPoint.X) - Math.Sin(radian) * (sourcePoint.Y - centerPoint.Y) + centerPoint.X; |
585 |
targetPoint.Y = Math.Sin(radian) * (sourcePoint.X - centerPoint.X) + Math.Cos(radian) * (sourcePoint.Y - centerPoint.Y) + centerPoint.Y; |
586 |
|
587 |
return targetPoint; |
588 |
} |
589 |
|
590 |
/// <summary> |
591 |
/// 이미지 심볼을 배치한다. |
592 |
/// </summary> |
593 |
/// <param name="id"></param> |
594 |
/// <param name="group_id"></param> |
595 |
private async Task PlaceImageSymbol(string id, string groupID) |
596 |
{ |
597 |
try |
598 |
{ |
599 |
string FilePath = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetSymbolImageURL(id, RadTab.SelectedIndex); |
600 |
if (!string.IsNullOrEmpty(FilePath)) |
601 |
{ |
602 |
bool exists = await Commons.DoesFileExist(FilePath); |
603 |
if (!exists) |
604 |
{ |
605 |
this.ParentOfType<MainWindow>().dzMainMenu.DialogMessage_Alert($"{FilePath} doesn't exist", "Warning"); |
606 |
return; |
607 |
} |
608 |
|
609 |
Image img = new Image(); |
610 |
if (FilePath.Contains(".svg")) |
611 |
{ |
612 |
SharpVectors.Converters.SvgImageExtension svgImage = new SharpVectors.Converters.SvgImageExtension(FilePath); |
613 |
img.Source = (DrawingImage)svgImage.ProvideValue(null); |
614 |
} |
615 |
else |
616 |
{ |
617 |
img.Source = new BitmapImage(new Uri(FilePath)); |
618 |
} |
619 |
|
620 |
var currentControl = new MarkupToPDF.Controls.Etc.ImgControl |
621 |
{ |
622 |
PointSet = new List<Point>(), |
623 |
FilePath = FilePath, |
624 |
ImageData = img.Source, |
625 |
StartPoint = new Point(0, 0), |
626 |
EndPoint = new Point(img.Source.Width, img.Source.Height), |
627 |
TopRightPoint = new Point(img.Source.Width, 0), |
628 |
LeftBottomPoint = new Point(0, img.Source.Height) |
629 |
}; |
630 |
|
631 |
currentControl.PointSet = new List<Point> |
632 |
{ |
633 |
currentControl.StartPoint, |
634 |
currentControl.LeftBottomPoint, |
635 |
currentControl.EndPoint, |
636 |
currentControl.TopRightPoint, |
637 |
}; |
638 |
UndoDataGroup = new UndoDataGroup() |
639 |
{ |
640 |
IsUndo = false, |
641 |
Event = EventType.Create |
642 |
}; |
643 |
ViewerDataModel.Instance.UndoDataList.Where(data1 => data1.IsUndo).ToList().ForEach(i => |
644 |
{ |
645 |
ViewerDataModel.Instance.UndoDataList.Remove(i); |
646 |
}); |
647 |
|
648 |
var multi_UndoData = this.ParentOfType<MainWindow>().dzMainMenu.Control_Style(currentControl as MarkupToPDF.Common.CommentUserInfo); |
649 |
UndoDataGroup.MarkupDataColl.Add(multi_UndoData); |
650 |
ViewerDataModel.Instance.UndoDataList.Add(UndoDataGroup); |
651 |
|
652 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl as MarkupToPDF.Common.CommentUserInfo); |
653 |
currentControl.CommentID = Commons.ShortGuid(); |
654 |
currentControl.SymbolID = id; |
655 |
currentControl.GroupID = groupID; |
656 |
currentControl.ApplyTemplate(); |
657 |
currentControl.SetImage(); |
658 |
|
659 |
///ViewerDataModel.Instance.MarkupControls_USER.Remove(currentControl as MarkupToPDF.Common.CommentUserInfo); |
660 |
Controls.AdornerFinal final = new Controls.AdornerFinal(currentControl as MarkupToPDF.Common.CommentUserInfo); |
661 |
this.ParentOfType<MainWindow>().dzMainMenu.SelectLayer.Children.Add(final); |
662 |
|
663 |
#region 마우스 위치에 배치 |
664 |
/* |
665 |
// this.ParentOfType<MainWindow>().dzMainMenu.isLeftMouseButtonDownOnWindow = true; |
666 |
// final.MoveAdorner(new System.Windows.Controls.Primitives.DragDeltaEventArgs(realPointX, realPointY)); |
667 |
double realPointX = this.ParentOfType<MainWindow>().dzMainMenu.getCurrentPoint.X - final.BorderSize.X - (final.BorderSize.Width / 2); |
668 |
double realPointY = this.ParentOfType<MainWindow>().dzMainMenu.getCurrentPoint.Y - final.BorderSize.Y - (final.BorderSize.Height / 2); |
669 |
final.TranslateItems(realPointX, realPointY); |
670 |
// move.control_Select(item, dragRect); |
671 |
ApplyDragSelectionRect(); |
672 |
//this.ParentOfType<MainWindow>().dzMainMenu.mouseHandlingMode = MouseHandlingMode.DragSymbol; |
673 |
///this.ParentOfType<MainWindow>().dzMainMenu.mouseButtonDown = MouseButton.Left; |
674 |
//this.ParentOfType<MainWindow>().dzMainMenu.symboldata(id, group_id, RadTab.SelectedIndex, Data_, img.Source);*/ |
675 |
#endregion |
676 |
} |
677 |
} |
678 |
catch(Exception ex) |
679 |
{ |
680 |
this.ParentOfType<MainWindow>().dzMainMenu.DialogMessage_Alert(ex.Message, "Error"); |
681 |
} |
682 |
} |
683 |
|
684 |
/// <summary> |
685 |
/// |
686 |
/// </summary> |
687 |
/* |
688 |
private void ApplyDragSelectionRect() |
689 |
{ |
690 |
var multi_UndoData = new UndoData(); |
691 |
|
692 |
UndoDataGroup = new UndoDataGroup() |
693 |
{ |
694 |
IsUndo = false, |
695 |
Event = EventType.Operation, |
696 |
EventTime = DateTime.Now, |
697 |
MarkupDataColl = new List<UndoData>() |
698 |
}; |
699 |
|
700 |
this.ParentOfType<MainWindow>().dzMainMenu.dragSelectionBorder.Visibility = Visibility.Collapsed; |
701 |
|
702 |
double x = Canvas.GetLeft(this.ParentOfType<MainWindow>().dzMainMenu.dragSelectionBorder); |
703 |
double y = Canvas.GetTop(this.ParentOfType<MainWindow>().dzMainMenu.dragSelectionBorder); |
704 |
double width = this.ParentOfType<MainWindow>().dzMainMenu.dragSelectionBorder.Width; |
705 |
double height = this.ParentOfType<MainWindow>().dzMainMenu.dragSelectionBorder.Height; |
706 |
Rect dragRect = new Rect(x, y, width, height); |
707 |
Boolean Flag = false; |
708 |
dragRect.Inflate(width / 10, height / 10); |
709 |
List<MarkupToPDF.Common.CommentUserInfo> adornerSet = new List<MarkupToPDF.Common.CommentUserInfo>(); |
710 |
var Items = ViewerDataModel.Instance.MarkupControls_USER.ToList(); |
711 |
|
712 |
dragRect = new Rect(x, y, width, height); |
713 |
dragRect.Inflate(width / 10, height / 10); |
714 |
|
715 |
//move.mousemode = MarkupToPDF.Controls.Common.MouseMode.Selecting; |
716 |
//move. |
717 |
foreach (var item in Items) |
718 |
{ |
719 |
Flag = SelectionSet.Instance.SelectControl(item, dragRect); |
720 |
|
721 |
if (Flag) |
722 |
{ |
723 |
adornerSet.Add(item); |
724 |
ViewerDataModel.Instance.MarkupControls_USER.Remove(item); |
725 |
|
726 |
this.ParentOfType<MainWindow>().dzMainMenu.Control_Style(item); |
727 |
UndoDataGroup.MarkupDataColl.Add(multi_UndoData); |
728 |
multi_UndoData = new UndoData(); |
729 |
if (item.GroupID > 0) |
730 |
{ |
731 |
} |
732 |
} |
733 |
} |
734 |
if (adornerSet.Count > 0) |
735 |
{ |
736 |
ViewerDataModel.Instance.UndoDataList.Where(data => data.IsUndo == true).ToList().ForEach(i => |
737 |
{ |
738 |
ViewerDataModel.Instance.UndoDataList.Remove(i); |
739 |
}); |
740 |
ViewerDataModel.Instance.UndoDataList.Add(UndoDataGroup); |
741 |
|
742 |
Controls.AdornerFinal final = new Controls.AdornerFinal(adornerSet); |
743 |
this.ParentOfType<MainWindow>().dzMainMenu.SelectLayer.Children.Add(final); |
744 |
} |
745 |
} |
746 |
*/ |
747 |
|
748 |
///private Move move; |
749 |
#region Symbol DoubleClick Event |
750 |
private void Move_Symbol(object sender, MouseButtonEventArgs e) |
751 |
{ |
752 |
try |
753 |
{ |
754 |
Type type = e.OriginalSource.GetType(); |
755 |
string id = string.Empty; |
756 |
//Logger.sendResLog("Move_Symbol", type.Name, 0); |
757 |
if (type.Name == "Image") |
758 |
{ |
759 |
id = ((e.OriginalSource as Image).DataContext as Symbol_Custom).ID; |
760 |
} |
761 |
else if (type.Name == "Border") |
762 |
{ |
763 |
id = ((e.OriginalSource as Border).DataContext as Symbol_Custom).ID; |
764 |
} |
765 |
else if (type.Name == "TextBox") |
766 |
{ |
767 |
id = ((e.OriginalSource as TextBox).DataContext as Symbol_Custom).ID; |
768 |
} |
769 |
|
770 |
IsMouseDown = true; |
771 |
|
772 |
if (e.ClickCount > 1) |
773 |
{ |
774 |
this.PlaceSymbol(id,ViewerDataModel.Instance.SystemMain.dzMainMenu.CanvasDrawingMouseDownPoint); |
775 |
} |
776 |
} |
777 |
catch(Exception ex) |
778 |
{ |
779 |
//Logger.sendResLog("Move_Symbol", ex.Message, 0); |
780 |
} |
781 |
} |
782 |
#endregion |
783 |
|
784 |
#region Private Symbol Rename Event |
785 |
private void Rename_Symbol(object sender, RoutedEventArgs e) |
786 |
{ |
787 |
if (lstSymbolPrivate.SelectedItem == null) |
788 |
{ |
789 |
DialogMessage_Alert("Please Select Symbol", "Alert"); |
790 |
return; |
791 |
} |
792 |
|
793 |
DialogParameters parameters = new DialogParameters() |
794 |
{ |
795 |
Owner = Application.Current.MainWindow, |
796 |
Closed = (obj, args) => this.MarkupReNamePromptClose("", args), |
797 |
//DefaultPromptResultValue = "Custom State", |
798 |
DefaultPromptResultValue = (lstSymbolPrivate.SelectedItem as Symbol_Custom).Name, |
799 |
Content = "Name :", |
800 |
Header = "Update Custom Symbol Name", |
801 |
Theme = new VisualStudio2013Theme(), |
802 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
803 |
}; |
804 |
RadWindow.Prompt(parameters); |
805 |
|
806 |
} |
807 |
#endregion |
808 |
|
809 |
#region Public Symbol Rename Event |
810 |
private void Rename_Symbol_Public(object sender, RoutedEventArgs e) |
811 |
{ |
812 |
if (lstSymbolPublic.SelectedItem == null) |
813 |
{ |
814 |
DialogMessage_Alert("Please Select Symbol", "Alert"); |
815 |
return; |
816 |
} |
817 |
|
818 |
DialogParameters parameters = new DialogParameters() |
819 |
{ |
820 |
Owner = Application.Current.MainWindow, |
821 |
Closed = (obj, args) => this.MarkupReNamePromptClose("", args), |
822 |
//DefaultPromptResultValue = "Custom State", |
823 |
DefaultPromptResultValue = (lstSymbolPublic.SelectedItem as Symbol_Custom).Name, |
824 |
Content = "Name :", |
825 |
Header = "Update Custom Symbol Name", |
826 |
Theme = new VisualStudio2013Theme(), |
827 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
828 |
}; |
829 |
RadWindow.Prompt(parameters); |
830 |
|
831 |
} |
832 |
#endregion |
833 |
#region Symbol Rename Close Event |
834 |
private void MarkupReNamePromptClose(string data, WindowClosedEventArgs args) |
835 |
{ |
836 |
if (args.DialogResult != null && args.DialogResult.Value) |
837 |
{ |
838 |
if(RadTab.SelectedIndex == 0) |
839 |
{ |
840 |
string _id = (lstSymbolPrivate.SelectedItem as Symbol_Custom).ID; |
841 |
string _name = args.PromptResult; |
842 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.RenameSymbolCompleted += BaseClient_RenameSymbolCompleted; |
843 |
//Logger.sendReqLog("RenameSymbolAsync: ", _id + "," + _name, 1); |
844 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.RenameSymbolAsync(_id, _name, RadTab.SelectedIndex); |
845 |
} |
846 |
else |
847 |
{ |
848 |
string _id = (lstSymbolPublic.SelectedItem as Symbol_Custom).ID; |
849 |
string _name = args.PromptResult; |
850 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.RenameSymbolCompleted += BaseClient_RenameSymbolCompleted; |
851 |
//Logger.sendReqLog("RenameSymbolAsync: ", _id + "," + _name, 1); |
852 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.RenameSymbolAsync(_id, _name, RadTab.SelectedIndex); |
853 |
} |
854 |
} |
855 |
} |
856 |
|
857 |
private async void BaseClient_RenameSymbolCompleted(object sender, ServiceDeepView.RenameSymbolCompletedEventArgs e) |
858 |
{ |
859 |
//Logger.sendResLog("RenameSymbolCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
860 |
await DataBindAsync(); |
861 |
} |
862 |
#endregion |
863 |
|
864 |
#region Wheel Event |
865 |
private void lstSymbolPrivate_PreviewMouseWheel(object sender, MouseWheelEventArgs e) |
866 |
{ |
867 |
ScView.ScrollToVerticalOffset(ScView.ContentVerticalOffset - (e.Delta / 2)); |
868 |
} |
869 |
private void lstSymbolPublic_PreviewMouseWheel(object sender, MouseWheelEventArgs e) |
870 |
{ |
871 |
ScView_Public.ScrollToVerticalOffset(ScView_Public.ContentVerticalOffset - (e.Delta / 2)); |
872 |
} |
873 |
#endregion |
874 |
|
875 |
#region Tab Selection Event |
876 |
private void RadTabControl_PreviewSelectionChanged(object sender, RadSelectionChangedEventArgs e) |
877 |
{ |
878 |
foreach (var item in (e.OriginalSource as RadTabControl).Items) |
879 |
{ |
880 |
(item as RadTabItem).FontWeight = FontWeights.Normal; |
881 |
} |
882 |
((e.OriginalSource as RadTabControl).SelectedItem as RadTabItem).FontWeight = FontWeights.Bold; |
883 |
} |
884 |
#endregion |
885 |
|
886 |
#region Department Selection Event |
887 |
private async void deptlist_SelectionChanged(object sender, SelectionChangedEventArgs e) |
888 |
{ |
889 |
await DataBindAsync(); |
890 |
} |
891 |
#endregion |
892 |
|
893 |
#endregion |
894 |
|
895 |
private void lstSymbolPrivate_PreviewMouseUp(object sender, MouseButtonEventArgs e) |
896 |
{ |
897 |
|
898 |
} |
899 |
|
900 |
private void lstSymbolPrivate_MouseLeave(object sender, MouseEventArgs e) |
901 |
{ |
902 |
|
903 |
} |
904 |
|
905 |
private void lstSymbolPrivate_MouseDown(object sender, MouseButtonEventArgs e) |
906 |
{ |
907 |
|
908 |
} |
909 |
|
910 |
private void StackPanel_MouseLeave(object sender, MouseEventArgs e) |
911 |
{ |
912 |
if(IsMouseDown && e.LeftButton == MouseButtonState.Pressed) |
913 |
{ |
914 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.Symbol_ID = moveItem_id; |
915 |
} |
916 |
else |
917 |
{ |
918 |
IsMouseDown = false; |
919 |
} |
920 |
} |
921 |
|
922 |
private void StackPanel_MouseUp(object sender, MouseButtonEventArgs e) |
923 |
{ |
924 |
IsMouseDown = false; |
925 |
} |
926 |
|
927 |
/// <summary> |
928 |
/// place symbol which user select |
929 |
/// </summary> |
930 |
/// <author>humkyung</author> |
931 |
/// <date>2018.06.14</date> |
932 |
/// <param name="sender"></param> |
933 |
/// <param name="e"></param> |
934 |
private void Place_Symbol(object sender, RoutedEventArgs e) |
935 |
{ |
936 |
if (lstSymbolPrivate.SelectedItem == null) |
937 |
{ |
938 |
DialogMessage_Alert("Please Select Symbol", "Alert"); |
939 |
return; |
940 |
} |
941 |
|
942 |
string id = (lstSymbolPrivate.SelectedItem as Symbol_Custom).ID; |
943 |
this.PlaceSymbol(id, ViewerDataModel.Instance.SystemMain.dzMainMenu.CanvasDrawingMouseDownPoint); |
944 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.mouseHandlingMode = IKCOM.MouseHandlingMode.None; |
945 |
} |
946 |
|
947 |
private void Place_Symbol_Public(object sender, RoutedEventArgs e) |
948 |
{ |
949 |
if (lstSymbolPublic.SelectedItem == null) |
950 |
{ |
951 |
DialogMessage_Alert("Please Select Symbol", "Alert"); |
952 |
return; |
953 |
} |
954 |
|
955 |
string id = (lstSymbolPublic.SelectedItem as Symbol_Custom).ID; |
956 |
this.PlaceSymbol(id, ViewerDataModel.Instance.SystemMain.dzMainMenu.CanvasDrawingMouseDownPoint); |
957 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.mouseHandlingMode = IKCOM.MouseHandlingMode.None; |
958 |
} |
959 |
|
960 |
private void Image_Place_Register(object sender, RoutedEventArgs e) |
961 |
{ |
962 |
SyncInit(); |
963 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.controlType = MarkupToPDF.Controls.Common.ControlType.ImgControl; |
964 |
//캡쳐 하기 전에 코멘트 저장 |
965 |
if (Common.ViewerDataModel.Instance.MarkupControls_USER.Count > 0 || (Application.Current.MainWindow as MainWindow).dzMainMenu.SelectLayer.Children.Count > 0) |
966 |
{ |
967 |
var menu = (Application.Current.MainWindow as MainWindow).dzMainMenu; |
968 |
SelectionSet.Instance.UnSelect(menu); |
969 |
if (menu.PreviewUserMarkupInfoItem != null && menu.PreviewUserMarkupInfoItem.IsPreviewUser == true) |
970 |
{ |
971 |
(Application.Current.MainWindow as MainWindow).dzTopMenu.SaveEventCallback(null, null); |
972 |
} |
973 |
else if (menu.gridViewMarkup.SelectedItems.Count == 0 || (menu.gridViewMarkup.SelectedItems.FirstOrDefault() as IKCOM.MarkupInfoItem).UserID != App.ViewInfo.UserID) |
974 |
{ |
975 |
|
976 |
} |
977 |
else |
978 |
{ |
979 |
(Application.Current.MainWindow as MainWindow).dzTopMenu.SaveEventCallback(null, null); |
980 |
} |
981 |
} |
982 |
Application.Current.MainWindow.Focus(); |
983 |
Common.ViewerDataModel.Instance.Capture_Opacity = 0.49; |
984 |
(Application.Current.MainWindow as MainWindow).dzMainMenu.mouseHandlingMode = IKCOM.MouseHandlingMode.Capture; |
985 |
} |
986 |
|
987 |
|
988 |
private void SyncInit() |
989 |
{ |
990 |
try |
991 |
{ |
992 |
if (!ViewerDataModel.Instance.SystemMain.dzMainMenu.testPanel2.IsHidden) |
993 |
{ |
994 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.testPanel2.IsHidden = true; |
995 |
ViewerDataModel.Instance.PageBalanceMode = false; |
996 |
ViewerDataModel.Instance.PageBalanceNumber = 0; |
997 |
ViewerDataModel.Instance.SyncPageNumber = 0; |
998 |
ViewerDataModel.Instance.MarkupControls_Sync.Clear(); |
999 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.gridViewRevMarkup.Visibility = Visibility.Collapsed; |
1000 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.UserList.IsChecked = false; |
1001 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.BalanceMode.IsChecked = false; |
1002 |
} |
1003 |
} |
1004 |
catch (Exception ex) |
1005 |
{ |
1006 |
//Logger.sendResLog("SyncInit", ex.Message, 0); |
1007 |
} |
1008 |
} |
1009 |
|
1010 |
private void TextBlock_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) |
1011 |
{ |
1012 |
var block = sender as TextBox; |
1013 |
block.Focusable = true; |
1014 |
|
1015 |
} |
1016 |
|
1017 |
private void TextBlock_MouseEnter(object sender, MouseEventArgs e) |
1018 |
{ |
1019 |
var block = sender as TextBox; |
1020 |
if (block != null) |
1021 |
{ |
1022 |
//block.Text = "Enter"; |
1023 |
|
1024 |
} |
1025 |
} |
1026 |
|
1027 |
private void OnKeyDownHandler(object sender, KeyEventArgs e) |
1028 |
{ |
1029 |
if (e.Key == Key.Return) |
1030 |
{ |
1031 |
Type type = e.OriginalSource.GetType(); |
1032 |
string id = string.Empty; |
1033 |
//Logger.sendResLog("Move_Symbol", type.Name, 0); |
1034 |
if (type.Name == "Image") |
1035 |
{ |
1036 |
id = ((e.OriginalSource as Image).DataContext as Symbol_Custom).ID; |
1037 |
} |
1038 |
else if (type.Name == "Border") |
1039 |
{ |
1040 |
id = ((e.OriginalSource as Border).DataContext as Symbol_Custom).ID; |
1041 |
} |
1042 |
else if (type.Name == "TextBox") |
1043 |
{ |
1044 |
id = ((e.OriginalSource as TextBox).DataContext as Symbol_Custom).ID; |
1045 |
} |
1046 |
|
1047 |
//((System.Windows.Controls.TextBox)sender).Text; |
1048 |
|
1049 |
if (RadTab.SelectedIndex == 0) |
1050 |
{ |
1051 |
//string _id = (lstSymbolPrivate.SelectedItem as Symbol_Custom).ID; |
1052 |
string _name = ((System.Windows.Controls.TextBox)sender).Text; |
1053 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.RenameSymbolCompleted += BaseClient_RenameSymbolCompleted; |
1054 |
//Logger.sendReqLog("RenameSymbolAsync: ", id + "," + _name, 1); |
1055 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.RenameSymbolAsync(id, _name, RadTab.SelectedIndex); |
1056 |
} |
1057 |
else |
1058 |
{ |
1059 |
//string _id = (lstSymbolPublic.SelectedItem as Symbol_Custom).ID; |
1060 |
string _name = ((System.Windows.Controls.TextBox)sender).Text; |
1061 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.RenameSymbolCompleted += BaseClient_RenameSymbolCompleted; |
1062 |
//Logger.sendReqLog("RenameSymbolAsync: ", id + "," + _name, 1); |
1063 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.RenameSymbolAsync(id, _name, RadTab.SelectedIndex); |
1064 |
} |
1065 |
|
1066 |
} |
1067 |
} |
1068 |
|
1069 |
} |
1070 |
} |