#region Disclaimer / License // Copyright (C) 2010, Jackie Ng // http://trac.osgeo.org/mapguide/wiki/maestro, jumpinjackie@gmail.com // // 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.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; using Maestro.Shared.UI; using Maestro.Editors.Common; using OSGeo.MapGuide.ObjectModels.FeatureSource; using OSGeo.MapGuide.ObjectModels.Capabilities; using OSGeo.MapGuide.MaestroAPI.Services; using Maestro.Editors; using Maestro.Base.UI.Preferences; using ICSharpCode.Core; using System.IO; using System.Diagnostics; using OSGeo.MapGuide.MaestroAPI; using Maestro.Editors.FeatureSource; namespace Maestro.Base.Editor { public partial class FsEditorOptionPanel : EditorBindableCollapsiblePanel { public FsEditorOptionPanel() { InitializeComponent(); } private IFeatureSource _fs; private FdoProviderCapabilities _caps; private IFeatureService _fsvc; private IResourceService _rsvc; private IEditorService _edsvc; public override void Bind(IEditorService service) { //Only available on MGOS 2.2 and above this.LocalPreviewEnabled = service.SiteVersion >= new Version(2, 2); _fs = (IFeatureSource)service.GetEditedResource(); _caps = service.FeatureService.GetProviderCapabilities(_fs.Provider); _fsvc = service.FeatureService; _rsvc = service.ResourceService; _edsvc = service; _edsvc.RegisterCustomNotifier(this); this.ConfigEnabled = _caps.Connection.SupportsConfiguration; } public bool LocalPreviewEnabled { get { return btnLocalPreview.Enabled; } set { btnLocalPreview.Enabled = value; } } public bool ConfigEnabled { get { return btnEditConfiguration.Enabled; } set { btnEditConfiguration.Enabled = value; } } private void btnLocalPreview_Click(object sender, EventArgs e) { //TODO: We really want to do this as an external process var dlg = new MaestroFsPreview.MainForm(_fsvc, _rsvc); dlg.FeatureSourceID = _fs.ResourceID; dlg.ShowDialog(); /* string exe = PropertyService.Get(ConfigProperties.LocalFsPreviewPath, ""); if (!File.Exists(exe)) { using (var dlg = DialogFactory.OpenFile()) { dlg.Title = string.Format(Properties.Resources.LocateExecutable, "MaestroFsPreview.exe"); dlg.Filter = Properties.Resources.FilterExecutables; if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK) { exe = dlg.FileName; PropertyService.Set(ConfigProperties.LocalFsPreviewPath, exe); } } } var procInfo = new ProcessStartInfo(exe); procInfo.WorkingDirectory = Path.GetDirectoryName(exe); var conn = _fs.CurrentConnection; var clonep = conn.CloneParameters; List args = new List(); foreach (string key in clonep.Keys) { args.Add("-" + key + ":" + clonep[key]); } procInfo.Arguments = string.Join(" ", args.ToArray()); var proc = Process.Start(procInfo); */ } private void btnEditConfiguration_Click(object sender, EventArgs e) { var content = _fs.GetConfigurationContent(); var dlg = new XmlEditorDialog(_edsvc); dlg.XmlContent = content; if (dlg.ShowDialog() == DialogResult.OK) { content = dlg.XmlContent; _fs.SetConfigurationContent(content); OnResourceChanged(); } } private void btnSpatialContexts_Click(object sender, EventArgs e) { new SpatialContextsDialog(_fs).ShowDialog(); } } }