#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.Maestro; namespace OSGeo.MapGuide.Maestro.ResourceEditors.FeatureSourceEditors.ODBC { /// /// Summary description for Managed. /// public class Managed : System.Windows.Forms.UserControl { private ResourceEditors.FeatureSourceEditors.ManagedFileControl managedFileControl; private ResourceEditors.EditorInterface m_editor = null; private OSGeo.MapGuide.MaestroAPI.FeatureSource m_item = null; private System.ComponentModel.IContainer components; public event FeatureSourceEditorODBC.ConnectionStringUpdatedDelegate ConnectionStringUpdated; public Managed() { // This call is required by the Windows.Forms Form Designer. InitializeComponent(); managedFileControl.NewDefaultSelected += new ManagedFileControl.NewDefaultSelectedDelegate(NewDefaultSelected); System.Collections.Specialized.NameValueCollection nv = new System.Collections.Specialized.NameValueCollection(); nv.Add(".mdb", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.AccessDatabaseFiles); nv.Add(".asc", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.ASCIIFiles); nv.Add(".csv", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.CSVFiles); nv.Add(".tab", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.TABFiles); nv.Add(".txt", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.TextFiles); nv.Add(".sqlite", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.SQLiteFiles); nv.Add(".db", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.SQLiteDbFiles); nv.Add(".fdb", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.FirebirdFiles); nv.Add(".xls", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.ExcelFiles); nv.Add(".dbf", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.dBaseFiles); nv.Add("", OSGeo.MapGuide.Maestro.ResourceEditors.Strings.Common.AllFiles); managedFileControl.FileTypes = nv; } /// /// 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(Managed)); this.managedFileControl = new OSGeo.MapGuide.Maestro.ResourceEditors.FeatureSourceEditors.ManagedFileControl(); this.SuspendLayout(); // // managedFileControl // resources.ApplyResources(this.managedFileControl, "managedFileControl"); this.managedFileControl.FileTypes = null; this.managedFileControl.Name = "managedFileControl"; // // Managed // resources.ApplyResources(this, "$this"); this.Controls.Add(this.managedFileControl); this.Name = "Managed"; this.ResumeLayout(false); } #endregion public void SetItem(ResourceEditors.EditorInterface editor, OSGeo.MapGuide.MaestroAPI.FeatureSource item) { m_item = item; m_editor = editor; managedFileControl.SetItem(editor, item.ResourceId, new ManagedFileControl.IsDefaultItemDelegate(IsDefaultItem)); UpdateDisplay(); } private bool IsDefaultItem(string filename) { return (m_item.Parameter != null && m_item.Parameter["ConnectionString"] != null && m_item.Parameter["ConnectionString"].ToLower().IndexOf(filename.ToLower()) >= 0); } private void NewDefaultSelected(string filename) { m_item.Parameter["ConnectionString"] = ConnectionStringManager.BuildConnectionString(m_item, "%MG_DATA_FILE_PATH%" + filename); m_item.Parameter["DataSourceName"] = ""; if (ConnectionStringUpdated != null) ConnectionStringUpdated(m_item.Parameter["ConnectionString"]); } public void UpdateDisplay() { managedFileControl.UpdateDisplay(); } } }