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(\r
41                     failedInstall + missingFiles + "\n\n" + nightlyCLIMissing,\r
42                     "Error",\r
43                     MessageBoxButtons.OK,\r
44                     MessageBoxIcon.Error);\r
45                 return;\r
46             }\r
47 \r
48             // Check were not running on a screen that's going to cause some funnies to happen.\r
49             Screen scr = Screen.PrimaryScreen;\r
50             if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 620))\r
51                 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
52             else\r
53             {\r
54                 string logDir = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"HandBrake\logs");\r
55                 if (!Directory.Exists(logDir))\r
56                     Directory.CreateDirectory(logDir);\r
57 \r
58                 if (!File.Exists(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"HandBrake\presets.xml")))\r
59                 {\r
60                     PresetsHandler x = new PresetsHandler();\r
61                     x.UpdateBuiltInPresets();\r
62                 }\r
63 \r
64                 Application.EnableVisualStyles();\r
65                 Application.SetCompatibleTextRenderingDefault(false);\r
66                 Application.Run(new frmMain());\r
67             }\r
68         }\r
69 \r
70         /// <summary>\r
71         /// Throw up an error message for any unhandled exceptions.\r
72         /// </summary>\r
73         /// <param name="sender">The sender</param>\r
74         /// <param name="e">Unhandled Exception EventArgs </param>\r
75         private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)\r
76         {\r
77             MessageBox.Show(\r
78                 "An unexpected error has occured.\n\nSender:" + sender + "\n\nException:" + e.ExceptionObject, \r
79                 "Unhandled Exception",\r
80                 MessageBoxButtons.OK,\r
81                 MessageBoxIcon.Error);\r
82         }\r
83     }\r
84 }