[xiph-commits] r7316 - trunk/oggdsf/src/tools/iOCE
illiminable at dactyl.lonelymoon.com
illiminable
Sat Jul 24 08:30:55 PDT 2004
Author: illiminable
Date: Sat Jul 24 08:30:55 2004
New Revision: 7316
Added:
trunk/oggdsf/src/tools/iOCE/frmAddComment.cs
trunk/oggdsf/src/tools/iOCE/frmAddComment.resx
Modified:
trunk/oggdsf/src/tools/iOCE/frmMain.cs
trunk/oggdsf/src/tools/iOCE/frmMain.resx
trunk/oggdsf/src/tools/iOCE/iOCE.csproj
Log:
* Added the interface for adding new comments.
Added: trunk/oggdsf/src/tools/iOCE/frmAddComment.cs
===================================================================
--- trunk/oggdsf/src/tools/iOCE/frmAddComment.cs 2004-07-24 12:52:15 UTC (rev 7315)
+++ trunk/oggdsf/src/tools/iOCE/frmAddComment.cs 2004-07-24 15:30:53 UTC (rev 7316)
@@ -0,0 +1,178 @@
+using System;
+using System.Drawing;
+using System.Collections;
+using System.ComponentModel;
+using System.Windows.Forms;
+
+namespace iOCE
+{
+ /// <summary>
+ /// Summary description for frmAddComment.
+ /// </summary>
+ public class frmAddComment : System.Windows.Forms.Form
+ {
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.ComboBox cboKey;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.TextBox txtValue;
+ private System.Windows.Forms.Button cmdOK;
+ private System.Windows.Forms.Button cmdCancel;
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.Container components = null;
+
+ public String Key;
+ public String Value;
+ public bool wasOK;
+
+ public frmAddComment()
+ {
+ //
+ // Required for Windows Form Designer support
+ //
+ InitializeComponent();
+
+ //
+ // TODO: Add any constructor code after InitializeComponent call
+ //
+ }
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ protected override void Dispose( bool disposing )
+ {
+ if( disposing )
+ {
+ if(components != null)
+ {
+ components.Dispose();
+ }
+ }
+ base.Dispose( disposing );
+ }
+
+ #region Windows Form Designer generated code
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ this.label1 = new System.Windows.Forms.Label();
+ this.cboKey = new System.Windows.Forms.ComboBox();
+ this.label2 = new System.Windows.Forms.Label();
+ this.txtValue = new System.Windows.Forms.TextBox();
+ this.cmdOK = new System.Windows.Forms.Button();
+ this.cmdCancel = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // label1
+ //
+ this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
+ this.label1.Location = new System.Drawing.Point(16, 16);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(48, 24);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "Key";
+ //
+ // cboKey
+ //
+ this.cboKey.Items.AddRange(new object[] {
+ "TITLE",
+ "ARTIST",
+ "ALBUM",
+ "GENRE",
+ "TRACKNUMBER",
+ "DESCRIPTION",
+ "COPYRIGHT",
+ "DATE",
+ "PERFORMER",
+ "VERSION",
+ "ORGANIZATION",
+ "LOCATION",
+ "CONTACT",
+ "ISRC"});
+ this.cboKey.Location = new System.Drawing.Point(80, 16);
+ this.cboKey.Name = "cboKey";
+ this.cboKey.Size = new System.Drawing.Size(272, 21);
+ this.cboKey.TabIndex = 1;
+ //
+ // label2
+ //
+ this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
+ this.label2.Location = new System.Drawing.Point(16, 48);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(48, 24);
+ this.label2.TabIndex = 2;
+ this.label2.Text = "Value";
+ //
+ // txtValue
+ //
+ this.txtValue.Location = new System.Drawing.Point(80, 48);
+ this.txtValue.Name = "txtValue";
+ this.txtValue.Size = new System.Drawing.Size(272, 20);
+ this.txtValue.TabIndex = 3;
+ this.txtValue.Text = "";
+ //
+ // cmdOK
+ //
+ this.cmdOK.Location = new System.Drawing.Point(200, 80);
+ this.cmdOK.Name = "cmdOK";
+ this.cmdOK.Size = new System.Drawing.Size(72, 24);
+ this.cmdOK.TabIndex = 4;
+ this.cmdOK.Text = "&OK";
+ this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
+ //
+ // cmdCancel
+ //
+ this.cmdCancel.Location = new System.Drawing.Point(280, 80);
+ this.cmdCancel.Name = "cmdCancel";
+ this.cmdCancel.Size = new System.Drawing.Size(72, 24);
+ this.cmdCancel.TabIndex = 5;
+ this.cmdCancel.Text = "&Cancel";
+ this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
+ //
+ // frmAddComment
+ //
+ this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
+ this.ClientSize = new System.Drawing.Size(368, 118);
+ this.Controls.Add(this.cmdCancel);
+ this.Controls.Add(this.cmdOK);
+ this.Controls.Add(this.txtValue);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.cboKey);
+ this.Controls.Add(this.label1);
+ this.Name = "frmAddComment";
+ this.Text = "Add Comment...";
+ this.Load += new System.EventHandler(this.frmAddComment_Load);
+ this.ResumeLayout(false);
+
+ }
+ #endregion
+
+ private void frmAddComment_Load(object sender, System.EventArgs e)
+ {
+ wasOK = false;
+ Key = "";
+ Value = "";
+ }
+
+ private void cmdCancel_Click(object sender, System.EventArgs e)
+ {
+ wasOK = false;
+ Key = "";
+ Value = "";
+ this.Close();
+ }
+
+ private void cmdOK_Click(object sender, System.EventArgs e)
+ {
+ wasOK = true;
+ Key = cboKey.Text;
+ Value = txtValue.Text;
+ this.Close();
+ }
+ }
+}
Added: trunk/oggdsf/src/tools/iOCE/frmAddComment.resx
===================================================================
--- trunk/oggdsf/src/tools/iOCE/frmAddComment.resx 2004-07-24 12:52:15 UTC (rev 7315)
+++ trunk/oggdsf/src/tools/iOCE/frmAddComment.resx 2004-07-24 15:30:53 UTC (rev 7316)
@@ -0,0 +1,184 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+ <!--
+ Microsoft ResX Schema
+
+ Version 1.3
+
+ The primary goals of this format is to allow a simple XML format
+ that is mostly human readable. The generation and parsing of the
+ various data types are done through the TypeConverter classes
+ associated with the data types.
+
+ Example:
+
+ ... ado.net/XML headers & schema ...
+ <resheader name="resmimetype">text/microsoft-resx</resheader>
+ <resheader name="version">1.3</resheader>
+ <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+ <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+ <data name="Name1">this is my long string</data>
+ <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+ <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+ [base64 mime encoded serialized .NET Framework object]
+ </data>
+ <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+ [base64 mime encoded string representing a byte array form of the .NET Framework object]
+ </data>
+
+ There are any number of "resheader" rows that contain simple
+ name/value pairs.
+
+ Each data row contains a name, and value. The row also contains a
+ type or mimetype. Type corresponds to a .NET class that support
+ text/value conversion through the TypeConverter architecture.
+ Classes that don't support this are serialized and stored with the
+ mimetype set.
+
+ The mimetype is used forserialized objects, and tells the
+ ResXResourceReader how to depersist the object. This is currently not
+ extensible. For a given mimetype the value must be set accordingly:
+
+ Note - application/x-microsoft.net.object.binary.base64 is the format
+ that the ResXResourceWriter will generate, however the reader can
+ read any of the formats listed below.
+
+ mimetype: application/x-microsoft.net.object.binary.base64
+ value : The object must be serialized with
+ : System.Serialization.Formatters.Binary.BinaryFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.soap.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.bytearray.base64
+ value : The object must be serialized into a byte array
+ : using a System.ComponentModel.TypeConverter
+ : and then encoded with base64 encoding.
+ -->
+ <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+ <xsd:element name="root" msdata:IsDataSet="true">
+ <xsd:complexType>
+ <xsd:choice maxOccurs="unbounded">
+ <xsd:element name="data">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
+ <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+ <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="resheader">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" />
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ <resheader name="resmimetype">
+ <value>text/microsoft-resx</value>
+ </resheader>
+ <resheader name="version">
+ <value>1.3</value>
+ </resheader>
+ <resheader name="reader">
+ <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <resheader name="writer">
+ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <data name="label1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="label1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="label1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="cboKey.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="cboKey.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="cboKey.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="label2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="label2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="label2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="txtValue.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="txtValue.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="txtValue.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="cmdOK.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="cmdOK.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="cmdOK.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="cmdCancel.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="cmdCancel.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="cmdCancel.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>(Default)</value>
+ </data>
+ <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>8, 8</value>
+ </data>
+ <data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>True</value>
+ </data>
+ <data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>80</value>
+ </data>
+ <data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>True</value>
+ </data>
+ <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="$this.Name">
+ <value>frmAddComment</value>
+ </data>
+</root>
\ No newline at end of file
Modified: trunk/oggdsf/src/tools/iOCE/frmMain.cs
===================================================================
--- trunk/oggdsf/src/tools/iOCE/frmMain.cs 2004-07-24 12:52:15 UTC (rev 7315)
+++ trunk/oggdsf/src/tools/iOCE/frmMain.cs 2004-07-24 15:30:53 UTC (rev 7316)
@@ -31,8 +31,8 @@
private System.Windows.Forms.Button cmdAdd;
private System.Windows.Forms.Button cmdRemove;
private System.Windows.Forms.Button cmdEdit;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
+ private System.Windows.Forms.Button cmdApply;
+ private System.Windows.Forms.Button cmdRevert;
private illiminable.Ogg.libVorbisCommentDotNET.DNFileComments mFileComments;
@@ -106,8 +106,8 @@
this.cmdAdd = new System.Windows.Forms.Button();
this.cmdRemove = new System.Windows.Forms.Button();
this.cmdEdit = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
+ this.cmdApply = new System.Windows.Forms.Button();
+ this.cmdRevert = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
@@ -172,6 +172,7 @@
this.lsvUserComments.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.colKey,
this.colValue});
+ this.lsvUserComments.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.lsvUserComments.FullRowSelect = true;
this.lsvUserComments.GridLines = true;
this.lsvUserComments.Location = new System.Drawing.Point(16, 48);
@@ -193,6 +194,7 @@
//
// txtVendorString
//
+ this.txtVendorString.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.txtVendorString.Location = new System.Drawing.Point(104, 20);
this.txtVendorString.Name = "txtVendorString";
this.txtVendorString.Size = new System.Drawing.Size(512, 20);
@@ -207,6 +209,7 @@
this.cmdAdd.Size = new System.Drawing.Size(80, 24);
this.cmdAdd.TabIndex = 3;
this.cmdAdd.Text = "&Add...";
+ this.cmdAdd.Click += new System.EventHandler(this.cmdAdd_Click);
//
// cmdRemove
//
@@ -216,7 +219,6 @@
this.cmdRemove.Size = new System.Drawing.Size(80, 24);
this.cmdRemove.TabIndex = 4;
this.cmdRemove.Text = "&Remove";
- this.cmdRemove.Click += new System.EventHandler(this.button1_Click);
//
// cmdEdit
//
@@ -227,28 +229,28 @@
this.cmdEdit.TabIndex = 5;
this.cmdEdit.Text = "&Edit...";
//
- // button1
+ // cmdApply
//
- this.button1.Location = new System.Drawing.Point(456, 280);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(80, 24);
- this.button1.TabIndex = 2;
- this.button1.Text = "A&pply";
+ this.cmdApply.Location = new System.Drawing.Point(456, 280);
+ this.cmdApply.Name = "cmdApply";
+ this.cmdApply.Size = new System.Drawing.Size(80, 24);
+ this.cmdApply.TabIndex = 2;
+ this.cmdApply.Text = "A&pply";
//
- // button2
+ // cmdRevert
//
- this.button2.Location = new System.Drawing.Point(552, 280);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(80, 24);
- this.button2.TabIndex = 3;
- this.button2.Text = "Re&vert";
+ this.cmdRevert.Location = new System.Drawing.Point(552, 280);
+ this.cmdRevert.Name = "cmdRevert";
+ this.cmdRevert.Size = new System.Drawing.Size(80, 24);
+ this.cmdRevert.TabIndex = 3;
+ this.cmdRevert.Text = "Re&vert";
//
// frmMain
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(664, 313);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
+ this.Controls.Add(this.cmdRevert);
+ this.Controls.Add(this.cmdApply);
this.Controls.Add(this.groupBox1);
this.Menu = this.mnuMain;
this.Name = "frmMain";
@@ -283,9 +285,24 @@
fillFields();
}
- private void button1_Click(object sender, System.EventArgs e)
+
+
+ private void cmdAdd_Click(object sender, System.EventArgs e)
{
-
+ ListView.SelectedListViewItemCollection locSelected = lsvUserComments.SelectedItems;
+ ListViewItem locItem = null;
+
+ frmAddComment locAddForm = new frmAddComment();
+ locAddForm.ShowDialog();
+ if (locAddForm.wasOK == true)
+ {
+ String[] locSubItems = new String[2];
+ locSubItems[0] = locAddForm.Key;
+ locSubItems[1] = locAddForm.Value;
+ locItem = new ListViewItem(locSubItems);
+ lsvUserComments.Items.Add(locItem);
+ }
+
}
}
}
Modified: trunk/oggdsf/src/tools/iOCE/frmMain.resx
===================================================================
--- trunk/oggdsf/src/tools/iOCE/frmMain.resx 2004-07-24 12:52:15 UTC (rev 7315)
+++ trunk/oggdsf/src/tools/iOCE/frmMain.resx 2004-07-24 15:30:53 UTC (rev 7316)
@@ -223,22 +223,22 @@
<data name="cmdEdit.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
- <data name="button1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <data name="cmdApply.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
- <data name="button1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <data name="cmdApply.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
- <data name="button1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <data name="cmdApply.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
- <data name="button2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <data name="cmdRevert.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
- <data name="button2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <data name="cmdRevert.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
- <data name="button2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <data name="cmdRevert.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
<data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
Modified: trunk/oggdsf/src/tools/iOCE/iOCE.csproj
===================================================================
--- trunk/oggdsf/src/tools/iOCE/iOCE.csproj 2004-07-24 12:52:15 UTC (rev 7315)
+++ trunk/oggdsf/src/tools/iOCE/iOCE.csproj 2004-07-24 15:30:53 UTC (rev 7316)
@@ -108,6 +108,16 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "frmAddComment.cs"
+ SubType = "Form"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "frmAddComment.resx"
+ DependentUpon = "frmAddComment.cs"
+ BuildAction = "EmbeddedResource"
+ />
+ <File
RelPath = "frmMain.cs"
SubType = "Form"
BuildAction = "Compile"
More information about the commits
mailing list