OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / Program.cs
1 /*  Program.cs\r
2     This file is part of the HandBrake source code.\r
3     Homepage: <http://handbrake.fr>.\r
4     It may be used under the terms of the GNU General Public License. */\r
5 \r
6 namespace Handbrake\r
7 {\r
8     using System;\r
9     using System.IO;\r
10     using System.Windows.Forms;\r
11     using Presets;\r
12 \r
13     /// <summary>\r
14     /// HandBrake Starts Here\r
15     /// </summary>\r
16     public static class Program\r
17     {\r
18         /// <summary>\r
19         /// The main entry point for the application.\r
20         /// </summary>\r
21         [STAThread]\r
22         public static void Main()\r
23         {\r
24             AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);\r
25 \r
26             const string failedInstall = "HandBrake is not installed properly. Please reinstall HandBrake. \n\n";\r
27             const string nightlyCLIMissing =\r
28                 "If you have downloaded the \"HandBrakeGUI\" nightly, " +\r
29                 "please make sure you have also downloaded the \"HandBrakeCLI\" nightly and extracted it's contents to the same folder. ";\r
30             string missingFiles = string.Empty;\r
31 \r
32             // Verify HandBrakeCLI.exe and ilibgcc_s_sjlj-1.dll exists\r
33             if (!File.Exists(Path.Combine(Application.StartupPath, "HandBrakeCLI.exe")))\r
34             {\r
35                 missingFiles += "\"HandBrakeCLI.exe\" was not found.";\r
36             }\r
37 \r
38             if (missingFiles != string.Empty)\r
39             {\r
40                 MessageBox.Show(failedInstall + missingFiles + "\n\n"+ nightlyCLIMissing, "Error", MessageBoxButtons.OK,\r
41                                 MessageBoxIcon.Error);\r
42                 return;\r
43             }\r
44 \r
45             // Check were not running on a screen that's going to cause some funnies to happen.\r
46             Screen scr = Screen.PrimaryScreen;\r
47             if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 620))\r
48                 MessageBox.Show("Your system does not meet the minimum requirements for HandBrake. \n" + "Your screen is running at: " + scr.Bounds.Width + "x" + scr.Bounds.Height + " \nScreen resolution is too Low. Must be 1024x620 or greater", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
49             else\r
50             {\r
51                 string logDir = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"HandBrake\logs");\r
52                 if (!Directory.Exists(logDir))\r
53                     Directory.CreateDirectory(logDir);\r
54 \r
55                 if (!File.Exists(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"HandBrake\presets.xml")))\r
56                 {\r
57                     PresetsHandler x = new PresetsHandler();\r
58                     x.UpdateBuiltInPresets();\r
59                 }\r
60 \r
61                 Application.EnableVisualStyles();\r
62                 Application.SetCompatibleTextRenderingDefault(false);\r
63                 Application.Run(new frmMain());\r
64             }\r
65         }\r
66 \r
67         /// <summary>\r
68         /// Throw up an error message for any unhandled exceptions.\r
69         /// </summary>\r
70         /// <param name="sender">The sender</param>\r
71         /// <param name="e">Unhandled Exception EventArgs </param>\r
72         private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)\r
73         {\r
74             MessageBox.Show(\r
75                 "An unexpected error has occured.\n\nSender:" + sender + "\n\nException:" + e.ExceptionObject, \r
76                 "Unhandled Exception",\r
77                 MessageBoxButtons.OK,\r
78                 MessageBoxIcon.Error);\r
79         }\r
80     }\r
81 }