OSDN Git Service

add win/C# diff files
[handbrake-jp/handbrake-jp.git] / win / C# / Presets / preset.cs.diff
diff --git a/win/C#/Presets/preset.cs.diff b/win/C#/Presets/preset.cs.diff
new file mode 100644 (file)
index 0000000..c0c516b
--- /dev/null
@@ -0,0 +1,70 @@
+diff --git a/win/C#/Presets/preset.cs b/win/C#/Presets/preset.cs
+index 5500a97..b6151a3 100644
+--- a/win/C#/Presets/preset.cs
++++ b/win/C#/Presets/preset.cs
+@@ -1,46 +1,43 @@
+ /*  Preset.cs $\r
+-      \r
+-         This file is part of the HandBrake source code.\r
+-         Homepage: <http://handbrake.fr>.\r
+-         It may be used under the terms of the GNU General Public License. */\r
+-\r
+-/*\r
+- * This file come from HandBrake source code by http://handbrake.fr/ , \r
+- * and modified by hylom <hylomm@gmail.com> for HandBrake Japanese version.\r
+- * It may be used under the terms of the GNU General Public License.\r
+- * last modified date: $Format:%cd$\r
+- */\r
+-\r
+-\r
+-using System;\r
++    This file is part of the HandBrake source code.\r
++    Homepage: <http://handbrake.fr>.\r
++    It may be used under the terms of the GNU General Public License. */\r
\r
+ namespace Handbrake.Presets\r
+ {\r
+-    public class Preset\r
++    /// <summary>\r
++    /// A Preset\r
++    /// </summary>\r
++    public class Preset \r
+     {\r
+         /// <summary>\r
+-        /// Get or Set the category which the preset resides under\r
++        /// Gets or sets the category which the preset resides under\r
+         /// </summary>\r
+         public string Category { get; set; }\r
\r
+         /// <summary>\r
+-        /// Get or Set the preset name\r
++        /// Gets or sets the preset name\r
+         /// </summary>\r
+         public string Name { get; set; }\r
\r
+         /// <summary>\r
+-        /// Get or set the preset query\r
++        /// Gets or sets the preset query\r
+         /// </summary>\r
+         public string Query { get; set; }\r
\r
+         /// <summary>\r
+-        /// Get or set the usage of Picture Settings in presets.\r
++        /// Gets or sets a value indicating whether to use picture Settings in presets.\r
+         /// </summary>\r
+-        public Boolean PictureSettings { get; set; }\r
++        public bool CropSettings { get; set; }\r
\r
+         /// <summary>\r
+-        /// The version number which associates this preset with a HB build\r
++        /// Gets or sets The version number which associates this preset with a HB build\r
+         /// </summary>\r
+         public string Version { get; set; }\r
++\r
++        /// <summary>\r
++        /// Gets or sets the Description for the preset\r
++        /// </summary>\r
++        public string Description { get; set; }\r
+     }\r
+ }
+\ No newline at end of file