markus / KCOM / MainWindow.xaml.cs @ bae83c92
이력 | 보기 | 이력해설 | 다운로드 (16.5 KB)
1 |
using KCOM.Common; |
---|---|
2 |
using KCOM.Controls; |
3 |
using KCOM.Views; |
4 |
using KCOMDataModel; |
5 |
using KCOMDataModel.DataModel; |
6 |
using MarkupToPDF.Common; |
7 |
using MarkupToPDF.Controls.Parsing; |
8 |
using MarkupToPDF.Serialize.Core; |
9 |
using MarkupToPDF.Serialize.S_Control; |
10 |
using System; |
11 |
using System.Collections.Generic; |
12 |
using System.ComponentModel; |
13 |
using System.Diagnostics; |
14 |
using System.IO; |
15 |
using System.Linq; |
16 |
using System.Net; |
17 |
using System.Reflection; |
18 |
using System.Runtime.InteropServices; |
19 |
using System.Text; |
20 |
using System.Threading; |
21 |
using System.Threading.Tasks; |
22 |
using System.Windows; |
23 |
using System.Windows.Controls; |
24 |
using System.Windows.Data; |
25 |
using System.Windows.Documents; |
26 |
using System.Windows.Input; |
27 |
using System.Windows.Media; |
28 |
using System.Windows.Media.Imaging; |
29 |
using System.Windows.Navigation; |
30 |
using System.Windows.Shapes; |
31 |
using System.Xml; |
32 |
using Telerik.Windows.Controls; |
33 |
using WinInterop = System.Windows.Interop; |
34 |
|
35 |
namespace KCOM |
36 |
{ |
37 |
/// <summary> |
38 |
/// MainWindow.xaml에 대한 상호 작용 논리 |
39 |
/// </summary> |
40 |
public partial class MainWindow : KCOM.Controls.CustomizedWindow.CustomWindow |
41 |
{ |
42 |
bool isSaveCheck = false; |
43 |
|
44 |
ProgressControl progressControl = null; |
45 |
string destfilepath = string.Empty; |
46 |
|
47 |
public MainWindow() |
48 |
{ |
49 |
|
50 |
App.splashString(ISplashMessage.MAINWINDOW); |
51 |
|
52 |
this.Loaded += MainWindow_Loaded; |
53 |
this.Unloaded += MainWindow_Unloaded; |
54 |
//this.PreviewKeyDown += new KeyEventHandler(KeyEventDownAction); |
55 |
this.Activated += MainWindow_Activated; |
56 |
} |
57 |
|
58 |
|
59 |
|
60 |
private void MainWindow_Activated(object sender, EventArgs e) |
61 |
{ |
62 |
this.Topmost = true; |
63 |
this.Topmost = false; |
64 |
} |
65 |
|
66 |
private void MainWindow_Unloaded(object sender, RoutedEventArgs e) |
67 |
{ |
68 |
//ViewerDataModel.Instance.ImageViewPath.UriSource = null; |
69 |
//ViewerDataModel.Instance.ImageViewPath_C.UriSource = null; |
70 |
} |
71 |
|
72 |
public void DialogMessage_Alert(string content, string header) |
73 |
{ |
74 |
App.splashScreen.Close(); |
75 |
|
76 |
Telerik.Windows.Controls.DialogParameters parameters = new Telerik.Windows.Controls.DialogParameters() |
77 |
{ |
78 |
Owner = Application.Current.MainWindow, |
79 |
Content = new TextBlock() |
80 |
{ |
81 |
MinWidth = 400, |
82 |
FontSize = 12, |
83 |
Text = content, |
84 |
TextWrapping = System.Windows.TextWrapping.Wrap |
85 |
}, |
86 |
Header = header, |
87 |
Theme = new Telerik.Windows.Controls.VisualStudio2013Theme(), |
88 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
89 |
}; |
90 |
Telerik.Windows.Controls.RadWindow.Alert(parameters); |
91 |
} |
92 |
|
93 |
private void MainWindow_Loaded(object sender, RoutedEventArgs e) |
94 |
{ |
95 |
InitializeComponent(); |
96 |
|
97 |
//cursor change |
98 |
this.Cursor = new Cursor(App.DefaultArrowCursorStream); |
99 |
|
100 |
var point = GetScreenCenter(); |
101 |
|
102 |
//this.Left = point.X; |
103 |
//this.Top = point.Y; |
104 |
|
105 |
ViewerDataModel.Instance.SystemMain = this; |
106 |
|
107 |
if (!App.ParameterMode) |
108 |
{ |
109 |
//App.ViewInfo = new IKCOM.ViewInfo |
110 |
//{ |
111 |
// DocumentItemID = "11111112", |
112 |
// //DocumentItemID = "10001", |
113 |
// bPartner = false, |
114 |
// CreateFinalPDFPermission = true, |
115 |
// NewCommentPermission = true, |
116 |
// ProjectNO = "000000", |
117 |
// UserID = "H2011357", |
118 |
// //UserID = "H2009115", |
119 |
// //Mode = 0 , 1 , 2 |
120 |
//}; |
121 |
//DialogMessage_Alert("데모버전은 단독 실행모드를 지원하지 않습니다", "안내"); |
122 |
|
123 |
//#if DEBUG |
124 |
// App.ViewInfo = new IKCOM.ViewInfo |
125 |
// { |
126 |
// DocumentItemID = "11111112", |
127 |
// //DocumentItemID = "10001", |
128 |
// bPartner = false, |
129 |
// CreateFinalPDFPermission = true, |
130 |
// NewCommentPermission = true, |
131 |
// ProjectNO = "000000", |
132 |
// UserID = "H2011357", |
133 |
// //UserID = "H2009115", |
134 |
// //Mode = 0 , 1 , 2 |
135 |
// }; |
136 |
// App.ParameterMode = true; |
137 |
// this.dzMainMenu.ServiceOn(); |
138 |
// this.dzMainMenu.SetView(App.ViewInfo); |
139 |
//#else |
140 |
|
141 |
DialogMessage_Alert("데모버전은 단독 실행모드를 지원하지 않습니다", "안내"); |
142 |
this.dzMainMenu.pageNavigator.Visibility = Visibility.Collapsed; |
143 |
this.dzMainMenu.historyPane.Visibility = Visibility.Collapsed; |
144 |
this.dzMainMenu.infoListPane.Visibility = Visibility.Collapsed; |
145 |
this.dzMainMenu.searchPane.Visibility = Visibility.Collapsed; |
146 |
this.dzMainMenu.talkPane.Visibility = Visibility.Collapsed; |
147 |
//#endif |
148 |
} |
149 |
else |
150 |
{ |
151 |
this.dzMainMenu.ServiceOn(); |
152 |
|
153 |
if (!App.ViewInfo.CreateFinalPDFPermission && !App.ViewInfo.NewCommentPermission) |
154 |
{ |
155 |
this.dzTopMenu.radRibbonView.HelpButtonVisibility = Visibility.Collapsed; |
156 |
var list = this.dzTopMenu.ChildrenOfType<RadRibbonTab>().ToList(); |
157 |
list.ForEach(item => item.Visibility = Visibility.Collapsed); |
158 |
this.dzTopMenu.ribbontab_ReadOnly.Visibility = Visibility.Visible; |
159 |
this.dzTopMenu.radRibbonView.SelectedItem = this.dzTopMenu.ribbontab_ReadOnly; |
160 |
//this.dzMainMenu.SymbolPane.Visibility = Visibility.Collapsed; |
161 |
//this.dzMainMenu.FavoritePane.Visibility = Visibility.Collapsed; |
162 |
//this.dzMainMenu.drawingRotateCanvas.IsHitTestVisible = false; |
163 |
} |
164 |
|
165 |
try |
166 |
{ |
167 |
///this.dzMainMenu.HubSet(); |
168 |
this.dzMainMenu.SetView(App.ViewInfo); |
169 |
} |
170 |
catch (Exception ex) |
171 |
{ |
172 |
MessageBox.Show(string.Format("웹 서비스 접속시 에러가 발생했습니다.\n{0}", ex.StackTrace)); |
173 |
|
174 |
System.Environment.Exit(0); |
175 |
} |
176 |
} |
177 |
|
178 |
//App.ViewInfo = new IKCOM.ViewInfo |
179 |
//{ |
180 |
// DocumentItemID = "11111112", |
181 |
// //DocumentItemID = "10001", |
182 |
// bPartner = false, |
183 |
// CreateFinalPDFPermission = true, |
184 |
// NewCommentPermission = true, |
185 |
// ProjectNO = "000000", |
186 |
// UserID = "H2011357", |
187 |
// //UserID = "H2009115", |
188 |
// //Mode = 0 , 1 , 2 |
189 |
//};0 |
190 |
|
191 |
//this.dzMainMenu.ServiceOn(); |
192 |
//this.dzMainMenu.SetView(App.ViewInfo); |
193 |
} |
194 |
|
195 |
private Point GetScreenCenter() |
196 |
{ |
197 |
Point result = new Point(); |
198 |
|
199 |
//first get all the screens |
200 |
System.Drawing.Rectangle ret; |
201 |
int ScreenWidth = 0; |
202 |
|
203 |
var mousePosition = System.Windows.Forms.Cursor.Position; |
204 |
|
205 |
for (int i = 1; i <= System.Windows.Forms.Screen.AllScreens.Count(); i++) |
206 |
{ |
207 |
ret = System.Windows.Forms.Screen.AllScreens[i - 1].Bounds; |
208 |
|
209 |
if (ret.Contains(mousePosition)) |
210 |
{ |
211 |
result.X = ScreenWidth + (ret.Width / 2 - this.Width / 2); |
212 |
result.Y = (ret.Height / 2 - this.Height / 2); |
213 |
|
214 |
break; |
215 |
} |
216 |
else |
217 |
{ |
218 |
ScreenWidth += ret.Width; |
219 |
} |
220 |
|
221 |
} |
222 |
|
223 |
|
224 |
return result; |
225 |
} |
226 |
|
227 |
protected override void OnStateChanged(EventArgs e) |
228 |
{ |
229 |
base.OnStateChanged(e); |
230 |
} |
231 |
|
232 |
protected override void OnClosing(CancelEventArgs e) |
233 |
{ |
234 |
base.OnClosing(e); |
235 |
|
236 |
if(!ViewerDataModel.Instance.SaveCheck()) |
237 |
{ |
238 |
var IsConfirm = SaveConfirm(); |
239 |
|
240 |
if (IsConfirm == null) |
241 |
{ |
242 |
e.Cancel = true; |
243 |
} |
244 |
else if(IsConfirm == true) |
245 |
{ |
246 |
dzTopMenu.SaveEventCallback(null, null); |
247 |
} |
248 |
} |
249 |
|
250 |
if (App.ViewInfo.CreateFinalPDFPermission) |
251 |
{ |
252 |
if (!ViewerDataModel.Instance.FinalPDFCheck()) |
253 |
{ |
254 |
var result = FinalConfirm(); |
255 |
|
256 |
if (result == false) |
257 |
{ |
258 |
e.Cancel = true; |
259 |
} |
260 |
else |
261 |
{ |
262 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.SaveLog(App.ViewInfo.ProjectNO, App.ViewInfo.DocumentItemID, "최종 Merged PDF 안됨."); |
263 |
} |
264 |
} |
265 |
} |
266 |
|
267 |
//Update Check 를 통해 update url 을 Get 하고 결과값이 있을 경우에는 SmartUpdater 실행. |
268 |
//KeyValuePair<bool, string> updatecheck = UpdateCheck(); |
269 |
//if (updatecheck.Key && !string.IsNullOrEmpty(updatecheck.Value)) |
270 |
//{ |
271 |
// CallUpdateProcess(updatecheck.Value); |
272 |
//} |
273 |
} |
274 |
|
275 |
|
276 |
private bool? SaveConfirm() |
277 |
{ |
278 |
bool? result = null; |
279 |
|
280 |
EventHandler<WindowClosedEventArgs> Closedhandler = null; |
281 |
|
282 |
Closedhandler = (snd, evt) => |
283 |
{ |
284 |
result = evt.DialogResult; |
285 |
}; |
286 |
|
287 |
DialogParameters parameters = new DialogParameters() |
288 |
{ |
289 |
Content = new TextBlock() |
290 |
{ |
291 |
MinWidth = 300, |
292 |
FontSize = 11, |
293 |
Text = "Found unsaved comments. Save now?", |
294 |
TextWrapping = System.Windows.TextWrapping.Wrap |
295 |
}, |
296 |
|
297 |
Header = "Confirm", |
298 |
Theme = new VisualStudio2013Theme(), |
299 |
ContentStyle = Application.Current.Resources["RadConfirmYNCStyle"] as Style, |
300 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
301 |
|
302 |
Owner = Application.Current.MainWindow, |
303 |
Opened = (s, openedEvent) => |
304 |
{ |
305 |
RadWindow confirm = s as RadWindow; |
306 |
//Button Cancel = confirm.ChildrenOfType<Button>()[5]; |
307 |
//FocusManager.SetIsFocusScope(confirm, true); |
308 |
//FocusManager.SetFocusedElement(confirm, Cancel); |
309 |
}, |
310 |
|
311 |
Closed = Closedhandler |
312 |
}; |
313 |
|
314 |
RadWindow.Confirm(parameters); |
315 |
|
316 |
return result; |
317 |
} |
318 |
|
319 |
private bool? FinalConfirm() |
320 |
{ |
321 |
bool? result = false; |
322 |
|
323 |
EventHandler<WindowClosedEventArgs> Closedhandler = null; |
324 |
|
325 |
Closedhandler = (snd, evt) => |
326 |
{ |
327 |
result = evt.DialogResult; |
328 |
}; |
329 |
|
330 |
DialogParameters parameters = new DialogParameters() |
331 |
{ |
332 |
Content = new TextBlock() |
333 |
{ |
334 |
MinWidth = 300, |
335 |
FontSize = 11, |
336 |
Text = "Merged PDF가 수행되지 않았습니다. 창을 닫으시겠습니까?", |
337 |
TextWrapping = System.Windows.TextWrapping.Wrap |
338 |
}, |
339 |
|
340 |
Header = "Confirm", |
341 |
Theme = new VisualStudio2013Theme(), |
342 |
ContentStyle = Application.Current.Resources["RadConfirmYNStyle"] as Style, |
343 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
344 |
|
345 |
Owner = Application.Current.MainWindow, |
346 |
Opened = (s, openedEvent) => |
347 |
{ |
348 |
RadWindow confirm = s as RadWindow; |
349 |
}, |
350 |
|
351 |
Closed = Closedhandler |
352 |
}; |
353 |
|
354 |
RadWindow.Confirm(parameters); |
355 |
|
356 |
return result; |
357 |
} |
358 |
|
359 |
private void client_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e) |
360 |
{ |
361 |
Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal, new Action(delegate |
362 |
{ |
363 |
double bytesIn = double.Parse(e.BytesReceived.ToString()); |
364 |
double totalBytes = double.Parse(e.TotalBytesToReceive.ToString()); |
365 |
double percentage = bytesIn / totalBytes * 100; |
366 |
progressControl.splashText.Text = "Download : " + Math.Truncate(percentage).ToString() + " %"; |
367 |
progressControl.progressBar.Value = int.Parse(Math.Truncate(percentage).ToString()); |
368 |
})); |
369 |
} |
370 |
|
371 |
/// <summary> |
372 |
/// KCOM_API 를 통해 업데이트 URL 을 가져옴. |
373 |
/// false : 업데이트 불필요. |
374 |
/// true : 업데이트 필요. url 을 같이 Return. |
375 |
/// </summary> |
376 |
/// <returns></returns> |
377 |
private KeyValuePair<bool, string> UpdateCheck() |
378 |
{ |
379 |
bool isUpdateCheck = false; |
380 |
string updateurl = string.Empty; |
381 |
try |
382 |
{ |
383 |
bool is64bit = Environment.Is64BitProcess; |
384 |
string clientversion = Assembly.GetExecutingAssembly().GetName().Version.ToString(); |
385 |
updateurl = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetVersionData(is64bit, clientversion); |
386 |
|
387 |
if (Check_Uri.isUri(updateurl)) |
388 |
{ |
389 |
DialogParameters parameters = new DialogParameters() |
390 |
{ |
391 |
Owner = Application.Current.MainWindow, |
392 |
Content = new TextBlock() |
393 |
{ |
394 |
MinWidth = 400, |
395 |
FontSize = 11, |
396 |
Text = "Update is available. \n Update now?", |
397 |
TextWrapping = System.Windows.TextWrapping.Wrap |
398 |
}, |
399 |
Header = "Confirm", |
400 |
Theme = new VisualStudio2013Theme(), |
401 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
402 |
Closed = delegate (object windowSender, WindowClosedEventArgs e) |
403 |
{ |
404 |
if (e.DialogResult == true) |
405 |
{ |
406 |
isUpdateCheck = true; |
407 |
} |
408 |
else |
409 |
{ |
410 |
isUpdateCheck = false; |
411 |
} |
412 |
} |
413 |
}; |
414 |
RadWindow.Confirm(parameters); |
415 |
|
416 |
} |
417 |
else |
418 |
{ |
419 |
isUpdateCheck = false; |
420 |
} |
421 |
} |
422 |
catch (Exception ex) |
423 |
{ |
424 |
throw ex; |
425 |
} |
426 |
return new KeyValuePair<bool, string>(isUpdateCheck, updateurl); |
427 |
} |
428 |
|
429 |
/// <summary> |
430 |
/// SmartUpdate 를 호출. |
431 |
/// </summary> |
432 |
/// <param name="updateurl">Download 할 설치파일 경로</param> |
433 |
private void CallUpdateProcess(string updateurl) |
434 |
{ |
435 |
ProcessStartInfo proInfo = new ProcessStartInfo(); |
436 |
string smartupdaterpath = string.Empty; |
437 |
smartupdaterpath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "SmartUpdate.exe"); |
438 |
Process.Start(smartupdaterpath, updateurl); |
439 |
} |
440 |
private async void Client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) |
441 |
{ |
442 |
try |
443 |
{ |
444 |
await Dispatcher.InvokeAsync(() => progressControl.splashText.Text = "Download Completed"); |
445 |
|
446 |
if (progressControl != null) |
447 |
{ |
448 |
progressControl.Close(); |
449 |
progressControl = null; |
450 |
} |
451 |
if (File.Exists(destfilepath)) |
452 |
{ |
453 |
ProcessStartInfo update_msi = new ProcessStartInfo(); |
454 |
update_msi.FileName = destfilepath; |
455 |
Process.Start(update_msi); |
456 |
} |
457 |
this.Close(); |
458 |
} |
459 |
catch (Exception) |
460 |
{ |
461 |
throw; |
462 |
} |
463 |
|
464 |
} |
465 |
} |
466 |
} |