#region Disclaimer / License // Copyright (C) 2009, Kenneth Skovhede // http://www.hexad.dk, opensource@hexad.dk // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA // #endregion using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Data; using System.Windows.Forms; using OSGeo.MapGuide.MaestroAPI.ApplicationDefinition; namespace OSGeo.MapGuide.Maestro.FusionEditor { public delegate void ValueChangedDelegate(object sender, object item); /// /// Summary description for ContainerEditor. /// public class ContainerEditor : System.Windows.Forms.UserControl { private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox NameBox; private System.Windows.Forms.ComboBox PositionCombo; private System.Windows.Forms.ComboBox TypeCombo; private bool m_isUpdating = false; private ContainerType m_ct; private DataSet PositionTypesDataset; private DataTable PositionTable; private DataColumn dataColumn1; private DataColumn dataColumn2; public event ValueChangedDelegate ValueChanged; /// /// Required designer variable. /// private System.ComponentModel.Container components = null; public ContainerEditor() { // This call is required by the Windows.Forms Form Designer. InitializeComponent(); //Fill dataset using (System.IO.StringReader sr = new System.IO.StringReader(Properties.Resources.PositionTypesDataset)) PositionTypesDataset.ReadXml(sr); } public void SetItem(ContainerType ct) { try { m_isUpdating = true; m_ct = ct; NameBox.Text = ct.Name; PositionCombo.SelectedValue = ct.Position; TypeCombo.SelectedIndex = TypeCombo.FindString(ct.Type); } finally { m_isUpdating = false; } } public void SetupCombos(OSGeo.MapGuide.MaestroAPI.ApplicationDefinitionContainerInfoSet co) { m_ct = null; TypeCombo.DataSource = null; TypeCombo.DisplayMember = "Type"; TypeCombo.ValueMember = "Type"; TypeCombo.DataSource = new ArrayList(co.ContainerInfo); } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContainerEditor)); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.NameBox = new System.Windows.Forms.TextBox(); this.PositionCombo = new System.Windows.Forms.ComboBox(); this.PositionTable = new System.Data.DataTable(); this.dataColumn1 = new System.Data.DataColumn(); this.dataColumn2 = new System.Data.DataColumn(); this.TypeCombo = new System.Windows.Forms.ComboBox(); this.PositionTypesDataset = new System.Data.DataSet(); ((System.ComponentModel.ISupportInitialize)(this.PositionTable)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PositionTypesDataset)).BeginInit(); this.SuspendLayout(); // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; // // label2 // resources.ApplyResources(this.label2, "label2"); this.label2.Name = "label2"; // // label3 // resources.ApplyResources(this.label3, "label3"); this.label3.Name = "label3"; // // NameBox // resources.ApplyResources(this.NameBox, "NameBox"); this.NameBox.Name = "NameBox"; this.NameBox.TextChanged += new System.EventHandler(this.NameBox_TextChanged); // // PositionCombo // this.PositionCombo.DataSource = this.PositionTable; this.PositionCombo.DisplayMember = "Displayname"; this.PositionCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; resources.ApplyResources(this.PositionCombo, "PositionCombo"); this.PositionCombo.Name = "PositionCombo"; this.PositionCombo.ValueMember = "Value"; this.PositionCombo.SelectedIndexChanged += new System.EventHandler(this.PositionCombo_SelectedIndexChanged); // // PositionTable // this.PositionTable.Columns.AddRange(new System.Data.DataColumn[] { this.dataColumn1, this.dataColumn2}); this.PositionTable.TableName = "Position"; // // dataColumn1 // this.dataColumn1.Caption = "Value"; this.dataColumn1.ColumnName = "Value"; // // dataColumn2 // this.dataColumn2.Caption = "DisplayName"; this.dataColumn2.ColumnName = "Displayname"; // // TypeCombo // this.TypeCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; resources.ApplyResources(this.TypeCombo, "TypeCombo"); this.TypeCombo.Name = "TypeCombo"; this.TypeCombo.SelectedIndexChanged += new System.EventHandler(this.TypeCombo_SelectedIndexChanged); // // PositionTypesDataset // this.PositionTypesDataset.DataSetName = "NewDataSet"; this.PositionTypesDataset.Locale = new System.Globalization.CultureInfo("da-DK"); this.PositionTypesDataset.Tables.AddRange(new System.Data.DataTable[] { this.PositionTable}); // // ContainerEditor // this.Controls.Add(this.TypeCombo); this.Controls.Add(this.PositionCombo); this.Controls.Add(this.NameBox); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "ContainerEditor"; resources.ApplyResources(this, "$this"); ((System.ComponentModel.ISupportInitialize)(this.PositionTable)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PositionTypesDataset)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private void NameBox_TextChanged(object sender, System.EventArgs e) { if (m_isUpdating || m_ct == null) return; m_ct.Name = NameBox.Text; if (ValueChanged != null) ValueChanged(this, m_ct); } private void PositionCombo_SelectedIndexChanged(object sender, System.EventArgs e) { if (m_isUpdating || m_ct == null) return; m_ct.Position = (string)PositionCombo.SelectedValue; if (ValueChanged != null) ValueChanged(this, m_ct); } private void TypeCombo_SelectedIndexChanged(object sender, System.EventArgs e) { if (m_isUpdating || m_ct == null) return; m_ct.Type = TypeCombo.Text; if (ValueChanged != null) ValueChanged(this, m_ct); } } }