markus / KCOM / MainWindow.xaml.cs @ 2007ecaa
이력 | 보기 | 이력해설 | 다운로드 (14.9 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 |
App.splashString(ISplashMessage.MAINWINDOW); |
50 |
this.Loaded += MainWindow_Loaded; |
51 |
this.Unloaded += MainWindow_Unloaded; |
52 |
this.Closing += MainWindow_Closing; |
53 |
//this.PreviewKeyDown += new KeyEventHandler(KeyEventDownAction); |
54 |
this.Activated += MainWindow_Activated; |
55 |
} |
56 |
|
57 |
private void MainWindow_Closing(object sender, CancelEventArgs e) |
58 |
{ |
59 |
DownloadProcess.ProcessKill(); |
60 |
} |
61 |
|
62 |
private void MainWindow_Activated(object sender, EventArgs e) |
63 |
{ |
64 |
this.Topmost = true; |
65 |
this.Topmost = false; |
66 |
} |
67 |
|
68 |
private void MainWindow_Unloaded(object sender, RoutedEventArgs e) |
69 |
{ |
70 |
//ViewerDataModel.Instance.ImageViewPath.UriSource = null; |
71 |
//ViewerDataModel.Instance.ImageViewPath_C.UriSource = null; |
72 |
} |
73 |
|
74 |
public void DialogMessage_Alert(string content, string header) |
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 |
SaveCheck(); |
237 |
|
238 |
//Update Check 를 통해 update url 을 Get 하고 결과값이 있을 경우에는 SmartUpdater 실행. |
239 |
KeyValuePair<bool, string> updatecheck = UpdateCheck(); |
240 |
if (updatecheck.Key && !string.IsNullOrEmpty(updatecheck.Value)) |
241 |
{ |
242 |
CallUpdateProcess(updatecheck.Value); |
243 |
} |
244 |
} |
245 |
|
246 |
private void SaveCheck() |
247 |
{ |
248 |
if (ViewerDataModel.Instance.UndoDataList.Count > 0) |
249 |
{ |
250 |
DateTime undoTime = ViewerDataModel.Instance.UndoDataList.OrderByDescending(order => order.EventTime).FirstOrDefault().EventTime; |
251 |
DateTime updatetime = DateTime.Now.AddDays(-1); |
252 |
if (ViewerDataModel.Instance._markupInfoList.Count > 0) |
253 |
{ |
254 |
updatetime = ViewerDataModel.Instance._markupInfoList.OrderByDescending(order => order.UpdateTime).FirstOrDefault().UpdateTime; |
255 |
} |
256 |
|
257 |
if (undoTime > updatetime) |
258 |
{ |
259 |
DialogParameters parameters = new DialogParameters() |
260 |
{ |
261 |
Owner = Application.Current.MainWindow, |
262 |
Content = new TextBlock() |
263 |
{ |
264 |
MinWidth = 400, |
265 |
FontSize = 11, |
266 |
Text = "Found unsaved comments. Save now?", |
267 |
TextWrapping = System.Windows.TextWrapping.Wrap |
268 |
}, |
269 |
Header = "Confirm", |
270 |
Theme = new VisualStudio2013Theme(), |
271 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
272 |
Closed = OnClosingSave, |
273 |
}; |
274 |
RadWindow.Confirm(parameters); |
275 |
} |
276 |
else |
277 |
{ |
278 |
isSaveCheck = true; |
279 |
} |
280 |
} |
281 |
else |
282 |
{ |
283 |
isSaveCheck = true; |
284 |
} |
285 |
} |
286 |
private void OnClosingSave(object sender, WindowClosedEventArgs e) |
287 |
{ |
288 |
if (e.DialogResult == true) |
289 |
{ |
290 |
dzTopMenu.SaveEventCallback(null, null); |
291 |
} |
292 |
isSaveCheck = true; |
293 |
} |
294 |
|
295 |
private void client_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e) |
296 |
{ |
297 |
Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal, new Action(delegate |
298 |
{ |
299 |
double bytesIn = double.Parse(e.BytesReceived.ToString()); |
300 |
double totalBytes = double.Parse(e.TotalBytesToReceive.ToString()); |
301 |
double percentage = bytesIn / totalBytes * 100; |
302 |
progressControl.splashText.Text = "Download : " + Math.Truncate(percentage).ToString() + " %"; |
303 |
progressControl.progressBar.Value = int.Parse(Math.Truncate(percentage).ToString()); |
304 |
})); |
305 |
} |
306 |
|
307 |
/// <summary> |
308 |
/// KCOM_API 를 통해 업데이트 URL 을 가져옴. |
309 |
/// false : 업데이트 불필요. |
310 |
/// true : 업데이트 필요. url 을 같이 Return. |
311 |
/// </summary> |
312 |
/// <returns></returns> |
313 |
private KeyValuePair<bool, string> UpdateCheck() |
314 |
{ |
315 |
bool isUpdateCheck = false; |
316 |
string updateurl = string.Empty; |
317 |
try |
318 |
{ |
319 |
bool is64bit = Environment.Is64BitProcess; |
320 |
string clientversion = Assembly.GetExecutingAssembly().GetName().Version.ToString(); |
321 |
updateurl = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetVersionData(is64bit, clientversion); |
322 |
|
323 |
if (Check_Uri.isUri(updateurl)) |
324 |
{ |
325 |
DialogParameters parameters = new DialogParameters() |
326 |
{ |
327 |
Owner = Application.Current.MainWindow, |
328 |
Content = new TextBlock() |
329 |
{ |
330 |
MinWidth = 400, |
331 |
FontSize = 11, |
332 |
Text = "Update is available. \n Update now?", |
333 |
TextWrapping = System.Windows.TextWrapping.Wrap |
334 |
}, |
335 |
Header = "Confirm", |
336 |
Theme = new VisualStudio2013Theme(), |
337 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
338 |
Closed = delegate (object windowSender, WindowClosedEventArgs e) |
339 |
{ |
340 |
if (e.DialogResult == true) |
341 |
{ |
342 |
isUpdateCheck = true; |
343 |
} |
344 |
else |
345 |
{ |
346 |
isUpdateCheck = false; |
347 |
} |
348 |
} |
349 |
}; |
350 |
RadWindow.Confirm(parameters); |
351 |
|
352 |
} |
353 |
else |
354 |
{ |
355 |
isUpdateCheck = false; |
356 |
} |
357 |
} |
358 |
catch (Exception ex) |
359 |
{ |
360 |
throw ex; |
361 |
} |
362 |
return new KeyValuePair<bool, string>(isUpdateCheck, updateurl); |
363 |
} |
364 |
|
365 |
/// <summary> |
366 |
/// SmartUpdate 를 호출. |
367 |
/// </summary> |
368 |
/// <param name="updateurl">Download 할 설치파일 경로</param> |
369 |
private void CallUpdateProcess(string updateurl) |
370 |
{ |
371 |
ProcessStartInfo proInfo = new ProcessStartInfo(); |
372 |
string smartupdaterpath = string.Empty; |
373 |
smartupdaterpath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "SmartUpdate.exe"); |
374 |
Process.Start(smartupdaterpath, updateurl); |
375 |
} |
376 |
private async void Client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) |
377 |
{ |
378 |
try |
379 |
{ |
380 |
await Dispatcher.InvokeAsync(() => progressControl.splashText.Text = "Download Completed"); |
381 |
|
382 |
if (progressControl != null) |
383 |
{ |
384 |
progressControl.Close(); |
385 |
progressControl = null; |
386 |
} |
387 |
if (File.Exists(destfilepath)) |
388 |
{ |
389 |
ProcessStartInfo update_msi = new ProcessStartInfo(); |
390 |
update_msi.FileName = destfilepath; |
391 |
Process.Start(update_msi); |
392 |
} |
393 |
this.Close(); |
394 |
} |
395 |
catch (Exception) |
396 |
{ |
397 |
throw; |
398 |
} |
399 |
|
400 |
} |
401 |
} |
402 |
} |